diff --git a/devtools/git-gas-diff/bin/main.ml b/devtools/git-gas-diff/bin/main.ml index ae207c79a48cc21ce4da82f15a119e75395a2c02..dc725032248a9f23e85c14352413cbb3e3b89835 100644 --- a/devtools/git-gas-diff/bin/main.ml +++ b/devtools/git-gas-diff/bin/main.ml @@ -199,7 +199,7 @@ module Category = struct ("Storage size: ", decreasing_payload); ("Gas limit: ", decreasing_payload); ("Storage limit: ", decreasing_payload); - ("remaining gas: ", increasing_payload); + ("just consumed gas: ", decreasing_payload); ("Fee to the baker: ꜩ", decreasing_payload); ("payload fees(the block proposer) ....... +ꜩ", decreasing_payload); ("storage fees ........................... +ꜩ", decreasing_payload); diff --git a/src/proto_alpha/lib_client/michelson_v1_printer.ml b/src/proto_alpha/lib_client/michelson_v1_printer.ml index f2dc6bc5e87094d04a1027e906264e5994d3763e..d4c0eeeeb611470ab8866f6764924c1e6486d842 100644 --- a/src/proto_alpha/lib_client/michelson_v1_printer.ml +++ b/src/proto_alpha/lib_client/michelson_v1_printer.ml @@ -52,14 +52,14 @@ let print_stack ppf = function print_expr_unwrapped) more -let print_execution_trace ppf trace = +let print_execution_trace ppf (trace : Script_typed_ir.execution_trace) = Format.pp_print_list (fun ppf (loc, gas, stack) -> Format.fprintf ppf - "- @[location: %d (remaining gas: %a)@,[ @[%a ]@]@]" + "- @[location: %d (just consumed gas: %a)@,[ @[%a ]@]@]" loc - Gas.pp + Gas.Arith.pp gas (Format.pp_print_list (fun ppf e -> Format.fprintf ppf "@[%a@]" print_expr e)) diff --git a/src/proto_alpha/lib_client/michelson_v1_printer.mli b/src/proto_alpha/lib_client/michelson_v1_printer.mli index 8b7ec8dfaa30371f6f8cbdda2a0e369522fdd5fd..78e2009292214a30a9d1783d3ac9fdd817d1eae6 100644 --- a/src/proto_alpha/lib_client/michelson_v1_printer.mli +++ b/src/proto_alpha/lib_client/michelson_v1_printer.mli @@ -32,7 +32,7 @@ val print_expr : Format.formatter -> Script_repr.expr -> unit val print_expr_unwrapped : Format.formatter -> Script_repr.expr -> unit val print_execution_trace : - Format.formatter -> (Script.location * Gas.t * Script.expr list) list -> unit + Format.formatter -> Script_typed_ir.execution_trace -> unit val print_big_map_diff : Format.formatter -> Lazy_storage.diffs -> unit diff --git a/src/proto_alpha/lib_plugin/RPC.ml b/src/proto_alpha/lib_plugin/RPC.ml index f61e70eb899f3175dcc7d05cf22a004e857c80ff..d4175efb1af9b5084c7bae0a5f4f88e671617ed2 100644 --- a/src/proto_alpha/lib_plugin/RPC.ml +++ b/src/proto_alpha/lib_plugin/RPC.ml @@ -192,11 +192,11 @@ module Scripts = struct let trace_code_input_encoding = run_code_input_encoding - let trace_encoding = + let trace_encoding : Script_typed_ir.execution_trace encoding = def "scripted.trace" @@ list @@ obj3 (req "location" Script.location_encoding) - (req "gas" Gas.encoding) + (req "gas" Gas.Arith.z_fp_encoding) (req "stack" (list Script.expr_encoding)) let trace_code_output_encoding = @@ -498,7 +498,7 @@ module Scripts = struct in unparse_stack (stack_ty, stack) - let trace_logger () : Script_typed_ir.logger = + let trace_logger ctxt : Script_typed_ir.logger = let log : log_element list ref = ref [] in let log_interp _ ctxt loc sty stack = log := Log (ctxt, loc, stack, sty) :: !log @@ -509,19 +509,21 @@ module Scripts = struct in let log_control _ = () in let get_log () = - List.map_es - (fun (Log (ctxt, loc, stack, stack_ty)) -> + List.fold_left_es + (fun (old_ctxt, l) (Log (ctxt, loc, stack, stack_ty)) -> + let consumed_gas = Gas.consumed ~since:old_ctxt ~until:ctxt in trace Plugin_errors.Cannot_serialize_log (unparse_stack ctxt (stack, stack_ty)) - >>=? fun stack -> return (loc, Gas.level ctxt, stack)) - !log - >>=? fun res -> return (Some (List.rev res)) + >>=? fun stack -> return (ctxt, (loc, consumed_gas, stack) :: l)) + (ctxt, []) + (List.rev !log) + >>=? fun (_ctxt, res) -> return (Some (List.rev res)) in {log_exit; log_entry; log_interp; get_log; log_control} let execute ctxt step_constants ~script ~entrypoint ~parameter = - let logger = trace_logger () in + let logger = trace_logger ctxt in Script_interpreter.execute ~logger ~cached_script:None diff --git a/src/proto_alpha/lib_protocol/script_interpreter.ml b/src/proto_alpha/lib_protocol/script_interpreter.ml index b4082a272d633037d89190f558ccad9e66e8edcb..a0ed820f8f8e774393d9ba7813c363a7fe6040be 100644 --- a/src/proto_alpha/lib_protocol/script_interpreter.ml +++ b/src/proto_alpha/lib_protocol/script_interpreter.ml @@ -118,11 +118,11 @@ type error += Michelson_too_many_recursive_calls let () = let open Data_encoding in - let trace_encoding = + let trace_encoding : Script_typed_ir.execution_trace encoding = list @@ obj3 (req "location" Script.location_encoding) - (req "gas" Gas.encoding) + (req "gas" Gas.Arith.z_fp_encoding) (req "stack" (list Script.expr_encoding)) in (* Reject *) diff --git a/src/proto_alpha/lib_protocol/script_typed_ir.ml b/src/proto_alpha/lib_protocol/script_typed_ir.ml index f5d22f44948bd5d968396e293882af9ef23568ee..aaded94994b13fd5689cd622de511428eb822b94 100644 --- a/src/proto_alpha/lib_protocol/script_typed_ir.ml +++ b/src/proto_alpha/lib_protocol/script_typed_ir.ml @@ -1217,7 +1217,7 @@ and ('a, 's, 'b, 'f, 'c, 'u) logging_function = 'c * 'u -> unit -and execution_trace = (Script.location * Gas.t * Script.expr list) list +and execution_trace = (Script.location * Gas.Arith.fp * Script.expr list) list and logger = { log_interp : 'a 's 'b 'f 'c 'u. ('a, 's, 'b, 'f, 'c, 'u) logging_function; diff --git a/src/proto_alpha/lib_protocol/script_typed_ir.mli b/src/proto_alpha/lib_protocol/script_typed_ir.mli index facd7ceb5e8e3f052aee98bb1e38931e28643bf9..5cd6815538db4be844de4854f98aef43ff03c9fb 100644 --- a/src/proto_alpha/lib_protocol/script_typed_ir.mli +++ b/src/proto_alpha/lib_protocol/script_typed_ir.mli @@ -1303,7 +1303,7 @@ and ('a, 's, 'b, 'f, 'c, 'u) logging_function = 'c * 'u -> unit -and execution_trace = (Script.location * Gas.t * Script.expr list) list +and execution_trace = (Script.location * Gas.Arith.fp * Script.expr list) list and logger = { log_interp : 'a 's 'b 'f 'c 'u. ('a, 's, 'b, 'f, 'c, 'u) logging_function; diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 4) {})-\"hello\"-(Pa.f6092ac5d6.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 4) {})-\"hello\"-(Pa.f6092ac5d6.out" index 8f833bffea76c8000df9f35b3c0e20d84740132b..70412b50f04ec4c18d97ebbe5991bc93c60dac5b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 4) {})-\"hello\"-(Pa.f6092ac5d6.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 4) {})-\"hello\"-(Pa.f6092ac5d6.out" @@ -8,28 +8,28 @@ big_map diff New map(4) of type (big_map string nat) Set map(4)["hello"] to 4 trace - - location: 13 (remaining gas: 1039991.421 units remaining) + - location: 13 (just consumed gas: 8.579) [ (Pair "hello" (Some 4) {}) ] - - location: 13 (remaining gas: 1039991.411 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair (Some 4) {}) ] - - location: 14 (remaining gas: 1039991.411 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair (Some 4) {}) ] - - location: 16 (remaining gas: 1039991.401 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 4) {} ] - - location: 14 (remaining gas: 1039991.376 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" (Some 4) {} ] - - location: 17 (remaining gas: 1039990.589 units remaining) + - location: 17 (just consumed gas: 0.787) [ None { Elt "hello" 4 } ] - - location: 18 (remaining gas: 1039990.579 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair None { Elt "hello" 4 }) ] - - location: 19 (remaining gas: 1039990.569 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair None { Elt "hello" 4 }) ] - - location: 21 (remaining gas: 1039990.559 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} None { Elt "hello" 4 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0427752f13.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0427752f13.out" index cbea1e7f24ce9a15c0fd0d805bd745d3ebfbc0d2..92edde5f43e94a7e50a1e1434edaaefd1c138eff 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0427752f13.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0427752f13.out" @@ -8,28 +8,28 @@ big_map diff New map(4) of type (big_map string nat) Set map(4)["hello"] to 5 trace - - location: 13 (remaining gas: 1039990.391 units remaining) + - location: 13 (just consumed gas: 9.609) [ (Pair "hello" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039990.381 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039990.381 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039990.371 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039990.346 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039989.554 units remaining) + - location: 17 (just consumed gas: 0.792) [ (Some 4) { Elt "hello" 5 } ] - - location: 18 (remaining gas: 1039989.544 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 19 (remaining gas: 1039989.534 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 21 (remaining gas: 1039989.524 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} (Some 4) { Elt "hello" 5 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0793dc66d5.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0793dc66d5.out" index 8682a14413f90c9ecb913d79dd084f2e00f6799c..19e2a7920dba04029f4f0ea76f40e58ad34b64d2 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0793dc66d5.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0793dc66d5.out" @@ -9,28 +9,28 @@ big_map diff Set map(4)["hello"] to 4 Set map(4)["hi"] to 5 trace - - location: 13 (remaining gas: 1039990.421 units remaining) + - location: 13 (just consumed gas: 9.579) [ (Pair "hi" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039990.411 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hi" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039990.411 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039990.401 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039990.376 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hi" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039989.617 units remaining) + - location: 17 (just consumed gas: 0.759) [ None { Elt "hello" 4 ; Elt "hi" 5 } ] - - location: 18 (remaining gas: 1039989.607 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 19 (remaining gas: 1039989.597 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 21 (remaining gas: 1039989.587 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} None { Elt "hello" 4 ; Elt "hi" 5 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .df114499b8.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .df114499b8.out" index c406a8b6a64827591eff61d932125fb993ab5fe2..0fa6ae4518c362fcb895d9a63b426c454ec0c3c6 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .df114499b8.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .df114499b8.out" @@ -9,28 +9,28 @@ big_map diff Set map(4)["2"] to 2 Unset map(4)["1"] trace - - location: 13 (remaining gas: 1039989.633 units remaining) + - location: 13 (just consumed gas: 10.367) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039989.623 units remaining) + - location: 13 (just consumed gas: 0.010) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039989.623 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039989.613 units remaining) + - location: 16 (just consumed gas: 0.010) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039989.588 units remaining) + - location: 14 (just consumed gas: 0.025) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039988.837 units remaining) + - location: 17 (just consumed gas: 0.751) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039988.827 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039988.817 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039988.807 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} (Some 1) { Elt "2" 2 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .f9bea98de9.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .f9bea98de9.out" index e7a1701eb40b1efb9f21d25a61ac2ea4fa1d95cb..1738f6e42a2e3f4f27c9b4041b5caca0e4bf900e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .f9bea98de9.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .f9bea98de9.out" @@ -9,28 +9,28 @@ big_map diff Set map(4)["2"] to 2 Unset map(4)["1"] trace - - location: 13 (remaining gas: 1039989.633 units remaining) + - location: 13 (just consumed gas: 10.367) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039989.623 units remaining) + - location: 13 (just consumed gas: 0.010) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039989.623 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039989.613 units remaining) + - location: 16 (just consumed gas: 0.010) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039989.588 units remaining) + - location: 14 (just consumed gas: 0.025) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039988.837 units remaining) + - location: 17 (just consumed gas: 0.751) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039988.827 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039988.817 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039988.807 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} (Some 1) { Elt "2" 2 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"hello\" 4 })-.1db12cd837.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"hello\" 4 })-.1db12cd837.out" index 09b4fca70874764e14cdd81a80db109505624ee1..00839cdb6aaceb5617dd3e4ef61b3bf66e4b03cf 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"hello\" 4 })-.1db12cd837.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"hello\" 4 })-.1db12cd837.out" @@ -8,28 +8,28 @@ big_map diff New map(4) of type (big_map string nat) Unset map(4)["hello"] trace - - location: 13 (remaining gas: 1039990.491 units remaining) + - location: 13 (just consumed gas: 9.509) [ (Pair "hello" None { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039990.481 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair None { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039990.481 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039990.471 units remaining) + - location: 16 (just consumed gas: 0.010) [ None { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039990.446 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" None { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039989.654 units remaining) + - location: 17 (just consumed gas: 0.792) [ (Some 4) {} ] - - location: 18 (remaining gas: 1039989.644 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 4) {}) ] - - location: 19 (remaining gas: 1039989.634 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 4) {}) ] - - location: 21 (remaining gas: 1039989.624 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} (Some 4) {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None {})-\"hello\"-(Pair N.6fc7d0acf2.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None {})-\"hello\"-(Pair N.6fc7d0acf2.out" index 6c748db809bfc13fa2e9bef5669933df0f1b6378..22d9505efaa041a2ad8b1eaa5753ec96e40baf29 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None {})-\"hello\"-(Pair N.6fc7d0acf2.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None {})-\"hello\"-(Pair N.6fc7d0acf2.out" @@ -8,28 +8,28 @@ big_map diff New map(4) of type (big_map string nat) Unset map(4)["hello"] trace - - location: 13 (remaining gas: 1039991.521 units remaining) + - location: 13 (just consumed gas: 8.479) [ (Pair "hello" None {}) ] - - location: 13 (remaining gas: 1039991.511 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair None {}) ] - - location: 14 (remaining gas: 1039991.511 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None {}) ] - - location: 16 (remaining gas: 1039991.501 units remaining) + - location: 16 (just consumed gas: 0.010) [ None {} ] - - location: 14 (remaining gas: 1039991.476 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" None {} ] - - location: 17 (remaining gas: 1039990.689 units remaining) + - location: 17 (just consumed gas: 0.787) [ None {} ] - - location: 18 (remaining gas: 1039990.679 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair None {}) ] - - location: 19 (remaining gas: 1039990.669 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair None {}) ] - - location: 21 (remaining gas: 1039990.659 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} None {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"tw.524c5459f8.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"tw.524c5459f8.out" index 44656f6ffdb5e276fb95d01b1025a5eb68a075b2..8fbc487cd3e9d37af2e262551a47da8986ea766d 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"tw.524c5459f8.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"tw.524c5459f8.out" @@ -9,38 +9,38 @@ big_map diff Set map(4)["2"] to "two" Set map(4)["1"] to "one" trace - - location: 12 (remaining gas: 1039986.474 units remaining) + - location: 12 (just consumed gas: 13.526) [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 12 (remaining gas: 1039986.464 units remaining) + - 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 (remaining gas: 1039986.454 units remaining) + - location: 13 (just consumed gas: 0.010) [ "1" (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 14 (remaining gas: 1039986.454 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 17 (remaining gas: 1039986.444 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 18 (remaining gas: 1039986.434 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } ] - - location: 19 (remaining gas: 1039986.424 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } { Elt "1" "one" ; Elt "2" "two" } ] - - location: 14 (remaining gas: 1039986.399 units remaining) + - location: 14 (just consumed gas: 0.025) [ "1" { Elt "1" "one" ; Elt "2" "two" } { Elt "1" "one" ; Elt "2" "two" } ] - - location: 20 (remaining gas: 1039985.687 units remaining) + - location: 20 (just consumed gas: 0.712) [ (Some "one") { Elt "1" "one" ; Elt "2" "two" } ] - - location: 21 (remaining gas: 1039985.677 units remaining) + - location: 21 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } (Some "one") ] - - location: 22 (remaining gas: 1039985.667 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] - - location: 23 (remaining gas: 1039985.657 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] - - location: 25 (remaining gas: 1039985.647 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"\".33eba403e7.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"\".33eba403e7.out" index fc8c6ef6ccb4b5564eccf84537d08d7cba9a979c..15dcaf9c20d5f11d4c2fb381c1f0bfd50f4298f6 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"\".33eba403e7.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"\".33eba403e7.out" @@ -8,38 +8,38 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["hello"] to "hi" trace - - location: 12 (remaining gas: 1039987.436 units remaining) + - location: 12 (just consumed gas: 12.564) [ (Pair "" { Elt "hello" "hi" } None) ] - - location: 12 (remaining gas: 1039987.426 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair "" { Elt "hello" "hi" } None) (Pair "" { Elt "hello" "hi" } None) ] - - location: 13 (remaining gas: 1039987.416 units remaining) + - location: 13 (just consumed gas: 0.010) [ "" (Pair "" { Elt "hello" "hi" } None) ] - - location: 14 (remaining gas: 1039987.416 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "" { Elt "hello" "hi" } None) ] - - location: 17 (remaining gas: 1039987.406 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair { Elt "hello" "hi" } None) ] - - location: 18 (remaining gas: 1039987.396 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039987.386 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039987.361 units remaining) + - location: 14 (just consumed gas: 0.025) [ "" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039986.661 units remaining) + - location: 20 (just consumed gas: 0.700) [ None { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039986.651 units remaining) + - location: 21 (just consumed gas: 0.010) [ { Elt "hello" "hi" } None ] - - location: 22 (remaining gas: 1039986.641 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair { Elt "hello" "hi" } None) ] - - location: 23 (remaining gas: 1039986.631 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Pair { Elt "hello" "hi" } None) ] - - location: 25 (remaining gas: 1039986.621 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair {} { Elt "hello" "hi" } None) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"h.a5cd1005c9.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"h.a5cd1005c9.out" index 57efd12e7cd3ed39f494e47f9f9415c36d93e34d..0e764b9d31b3bea87cc6656ffab08bbe9f97eb73 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"h.a5cd1005c9.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"h.a5cd1005c9.out" @@ -8,38 +8,38 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["hello"] to "hi" trace - - location: 12 (remaining gas: 1039987.386 units remaining) + - location: 12 (just consumed gas: 12.614) [ (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 12 (remaining gas: 1039987.376 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair "hello" { Elt "hello" "hi" } None) (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 13 (remaining gas: 1039987.366 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 14 (remaining gas: 1039987.366 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 17 (remaining gas: 1039987.356 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair { Elt "hello" "hi" } None) ] - - location: 18 (remaining gas: 1039987.346 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039987.336 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039987.311 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039986.555 units remaining) + - location: 20 (just consumed gas: 0.756) [ (Some "hi") { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039986.545 units remaining) + - location: 21 (just consumed gas: 0.010) [ { Elt "hello" "hi" } (Some "hi") ] - - location: 22 (remaining gas: 1039986.535 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair { Elt "hello" "hi" } (Some "hi")) ] - - location: 23 (remaining gas: 1039986.525 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Pair { Elt "hello" "hi" } (Some "hi")) ] - - location: 25 (remaining gas: 1039986.515 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair {} { Elt "hello" "hi" } (Some "hi")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .6f3d35b151.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .6f3d35b151.out" index a92cb7c6bc8786164ad0a5bf6ca8631bc1e47fe4..cd6796bb26d479b5c11689f1214c46183d0189d0 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .6f3d35b151.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .6f3d35b151.out" @@ -9,28 +9,28 @@ big_map diff Set map(4)["2"] to "two" Set map(4)["1"] to "one" trace - - location: 15 (remaining gas: 1039987.935 units remaining) + - location: 15 (just consumed gas: 12.065) [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039987.925 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039987.925 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.915 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.890 units remaining) + - location: 16 (just consumed gas: 0.025) [ {} { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.890 units remaining) + - location: 19 (just consumed gas: 0) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039987.880 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039987.870 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039987.860 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .76aeaa0706.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .76aeaa0706.out" index e7a929e6bd8e29fe287dced5c7455fd5d94fe90e..2475305dd742a8e04ea6ed11a626e02bf1b9d78f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .76aeaa0706.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .76aeaa0706.out" @@ -9,40 +9,40 @@ big_map diff Set map(4)["2"] to "two" Set map(4)["1"] to "two" trace - - location: 15 (remaining gas: 1039987.485 units remaining) + - location: 15 (just consumed gas: 12.515) [ (Pair { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039987.475 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "1" (Some "two") } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039987.475 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.465 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.440 units remaining) + - location: 16 (just consumed gas: 0.025) [ { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.440 units remaining) + - location: 19 (just consumed gas: 0) [ (Pair "1" (Some "two")) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039987.430 units remaining) + - location: 21 (just consumed gas: 0.010) [ "1" (Some "two") { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039986.703 units remaining) + - location: 22 (just consumed gas: 0.727) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039986.688 units remaining) + - location: 19 (just consumed gas: 0.015) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039986.678 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039986.668 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039986.658 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair {} { Elt "1" "two" ; Elt "2" "two" } Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7e7197f248.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7e7197f248.out" index f040567ba851ea424108fd09eeb4da89625a166e..91824048cbc9f1edba0bc3751bc094e7f410ffba 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7e7197f248.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7e7197f248.out" @@ -9,40 +9,40 @@ big_map diff Set map(4)["2"] to "two" Set map(4)["1"] to "two" trace - - location: 15 (remaining gas: 1039987.485 units remaining) + - location: 15 (just consumed gas: 12.515) [ (Pair { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039987.475 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "1" (Some "two") } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039987.475 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.465 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.440 units remaining) + - location: 16 (just consumed gas: 0.025) [ { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.440 units remaining) + - location: 19 (just consumed gas: 0) [ (Pair "1" (Some "two")) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039987.430 units remaining) + - location: 21 (just consumed gas: 0.010) [ "1" (Some "two") { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039986.703 units remaining) + - location: 22 (just consumed gas: 0.727) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039986.688 units remaining) + - location: 19 (just consumed gas: 0.015) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039986.678 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039986.668 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039986.658 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair {} { Elt "1" "two" ; Elt "2" "two" } Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7ef2c415a7.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7ef2c415a7.out" index c45d4ffcda4d2c0e6f1d3feda1b7ab890916caae..60b2bdb23aef5eec7657101ba52d222a042300c9 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7ef2c415a7.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7ef2c415a7.out" @@ -10,40 +10,40 @@ big_map diff Set map(4)["3"] to "three" Set map(4)["1"] to "one" trace - - location: 15 (remaining gas: 1039987.465 units remaining) + - location: 15 (just consumed gas: 12.535) [ (Pair { Elt "3" (Some "three") } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039987.455 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "3" (Some "three") } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039987.455 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.445 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.420 units remaining) + - location: 16 (just consumed gas: 0.025) [ { Elt "3" (Some "three") } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.420 units remaining) + - location: 19 (just consumed gas: 0) [ (Pair "3" (Some "three")) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039987.410 units remaining) + - location: 21 (just consumed gas: 0.010) [ "3" (Some "three") { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039986.683 units remaining) + - location: 22 (just consumed gas: 0.727) [ { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit ] - - location: 19 (remaining gas: 1039986.668 units remaining) + - location: 19 (just consumed gas: 0.015) [ { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit ] - - location: 23 (remaining gas: 1039986.658 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit) ] - - location: 24 (remaining gas: 1039986.648 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit) ] - - location: 26 (remaining gas: 1039986.638 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair {} { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .b688cc94a7.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .b688cc94a7.out" index dca0ace11d78b89a1037d1be0e9a53ebfff2cc75..520d2e1dc07b262ae31e8ed2e8176e95b1652707 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .b688cc94a7.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .b688cc94a7.out" @@ -10,40 +10,40 @@ big_map diff Unset map(4)["3"] Set map(4)["1"] to "one" trace - - location: 15 (remaining gas: 1039987.629 units remaining) + - location: 15 (just consumed gas: 12.371) [ (Pair { Elt "3" None } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039987.619 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "3" None } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039987.619 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.609 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.584 units remaining) + - location: 16 (just consumed gas: 0.025) [ { Elt "3" None } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.584 units remaining) + - location: 19 (just consumed gas: 0) [ (Pair "3" None) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039987.574 units remaining) + - location: 21 (just consumed gas: 0.010) [ "3" None { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039986.847 units remaining) + - location: 22 (just consumed gas: 0.727) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039986.832 units remaining) + - location: 19 (just consumed gas: 0.015) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039986.822 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039986.812 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039986.802 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .c68db221ed.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .c68db221ed.out" index ef0f839c63d94becbdc7a1a49c00978b30ab2147..0cdb0f0dc62728efef04a1d58f10ee70142de3b4 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .c68db221ed.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .c68db221ed.out" @@ -9,40 +9,40 @@ big_map diff Unset map(4)["2"] Set map(4)["1"] to "one" trace - - location: 15 (remaining gas: 1039987.629 units remaining) + - location: 15 (just consumed gas: 12.371) [ (Pair { Elt "2" None } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039987.619 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "2" None } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039987.619 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.609 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.584 units remaining) + - location: 16 (just consumed gas: 0.025) [ { Elt "2" None } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.584 units remaining) + - location: 19 (just consumed gas: 0) [ (Pair "2" None) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039987.574 units remaining) + - location: 21 (just consumed gas: 0.010) [ "2" None { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039986.847 units remaining) + - location: 22 (just consumed gas: 0.727) [ { Elt "1" "one" } Unit ] - - location: 19 (remaining gas: 1039986.832 units remaining) + - location: 19 (just consumed gas: 0.015) [ { Elt "1" "one" } Unit ] - - location: 23 (remaining gas: 1039986.822 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair { Elt "1" "one" } Unit) ] - - location: 24 (remaining gas: 1039986.812 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "one" } Unit) ] - - location: 26 (remaining gas: 1039986.802 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair {} { Elt "1" "one" } Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[mul_overflow.tz-Unit-Left Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[mul_overflow.tz-Unit-Left Unit].out index d8a81e29bbd0106bebe743953182c2463807afda..cd4ed5cb851502e5e11127ddbe2ec3b05377bcb0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[mul_overflow.tz-Unit-Left Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[mul_overflow.tz-Unit-Left Unit].out @@ -23,16 +23,16 @@ Runtime error in contract [CONTRACT_HASH]: At line 8 characters 11 to 14, unexpected arithmetic overflow trace - - location: 9 (remaining gas: 1039988.754 units remaining) + - location: 9 (just consumed gas: 11.246) [ (Pair (Left Unit) Unit) ] - - location: 9 (remaining gas: 1039988.744 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Left Unit) ] - - location: 10 (remaining gas: 1039988.744 units remaining) + - location: 10 (just consumed gas: 0) [ Unit ] - - location: 12 (remaining gas: 1039988.734 units remaining) + - location: 12 (just consumed gas: 0.010) [ 922337203685477580700 Unit ] - - location: 15 (remaining gas: 1039988.724 units remaining) + - location: 15 (just consumed gas: 0.010) [ 10 922337203685477580700 Unit ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[mul_overflow.tz-Unit-Right Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[mul_overflow.tz-Unit-Right Unit].out index 0235bfdde906c019d0852a2136388e015fe2903d..e7e976f15d5a090b0dd69c3f3538725106739276 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[mul_overflow.tz-Unit-Right Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[mul_overflow.tz-Unit-Right Unit].out @@ -23,16 +23,16 @@ Runtime error in contract [CONTRACT_HASH]: At line 14 characters 11 to 14, unexpected arithmetic overflow trace - - location: 9 (remaining gas: 1039988.754 units remaining) + - location: 9 (just consumed gas: 11.246) [ (Pair (Right Unit) Unit) ] - - location: 9 (remaining gas: 1039988.744 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Right Unit) ] - - location: 10 (remaining gas: 1039988.744 units remaining) + - location: 10 (just consumed gas: 0) [ Unit ] - - location: 21 (remaining gas: 1039988.734 units remaining) + - location: 21 (just consumed gas: 0.010) [ 10 Unit ] - - location: 24 (remaining gas: 1039988.724 units remaining) + - location: 24 (just consumed gas: 0.010) [ 922337203685477580700 10 Unit ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Left (Pair 1 257))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Left (Pair 1 257))].out index 711cbc578330f9e31c40c34aa7ff2bfb8905085e..2bc1026f9d071faa48328a9fdc83d8c8ab11cddd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Left (Pair 1 257))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Left (Pair 1 257))].out @@ -23,13 +23,13 @@ Runtime error in contract [CONTRACT_HASH]: At line 10 characters 25 to 28, unexpected arithmetic overflow trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 1 257)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 1 257)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 1 257) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010) [ 1 257 ] Fatal error: diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Left (Pair 123 257))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Left (Pair 123 257))].out index d818d78bde3a707de1f128d70fdae831338735af..8e58ffd1deeb84a1fb9caa7ef91936fd2b8e429c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Left (Pair 123 257))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Left (Pair 123 257))].out @@ -23,13 +23,13 @@ Runtime error in contract [CONTRACT_HASH]: At line 10 characters 25 to 28, unexpected arithmetic overflow trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 123 257)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 123 257)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 123 257) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010) [ 123 257 ] Fatal error: diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Right (Pair 1 257))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Right (Pair 1 257))].out index 01871dc127fcfc43476d284f0e4ca3770da2f164..9b1f1920f0d24fddb51c0c81bb0a33c8521ccdd7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Right (Pair 1 257))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Right (Pair 1 257))].out @@ -23,13 +23,13 @@ Runtime error in contract [CONTRACT_HASH]: At line 13 characters 25 to 28, unexpected arithmetic overflow trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 1 257)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 1 257)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 1 257) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 257 ] Fatal error: diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Right (Pair 123 257))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Right (Pair 123 257))].out index 4bdbdf85afc687cdd9e58692f868b00a6a8be082..339a289cdd2d45d004774e360367b0c63da57135 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Right (Pair 123 257))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_arithmetic_overflow[shifts.tz-None-(Right (Pair 123 257))].out @@ -23,13 +23,13 @@ Runtime error in contract [CONTRACT_HASH]: At line 13 characters 25 to 28, unexpected arithmetic overflow trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 123 257)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 123 257)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 123 257) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010) [ 123 257 ] Fatal error: diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0.5].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0.5].out index eec483839a4b896870566248fb635b075f8434c9..9e204047667ca84af7d48a147e880a7cfd511a75 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0.5].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0.5].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 500000 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 500000 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 500000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0].out index 8c7c4dbe4ee17767162d6b9abcdfaba0ba13c3c8..1e68628dc57b999d2de6b12602c91ec3bc490df4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1000].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1000].out index f7edacace175c4b73eea998c718286ed1d767d3c..193b27b27559603c603a010201b50ba08e45ff5d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1000].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1000].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1000000000 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 1000000000 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 1000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1].out index 3b4aaad003c2563f1cd3118a2186a00dcfb52267..f389a8fc9aec25e98579cdbc16f59b723a879073 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1000000 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 1000000 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 1000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1e-06].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1e-06].out index cf11c25ce395873e47a494be7464e4d4c00fc4c6..a13b477ff323dede1749363baf2eefc00e99ff05 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1e-06].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1e-06].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 1 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[5].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[5].out index ed4d948ccaeceb9f10f6accebad7648f1e942a27..fb59168caceaa10c15501e5ebf18d6ee31c4bd07 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[5].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[5].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 5000000 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 5000000 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 5000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[8000000000000.0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[8000000000000.0].out index 1ce6d7a299a116fb1ed2d959a630be88c37b932d..de76e3c3a653a0f61813a5efdaf5bf0e442c7213 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[8000000000000.0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[8000000000000.0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 8000000000000000000 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 8000000000000000000 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 8000000000000000000) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }) )-(Right (Righ.7492e8cdea.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }) )-(Right (Righ.7492e8cdea.out" index a3d05fb971f41b38ea4def473393021669fb3d2f..1cf2965e20254503620632c1635f9cc6c97128ce 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }) )-(Right (Righ.7492e8cdea.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }) )-(Right (Righ.7492e8cdea.out" @@ -11,80 +11,80 @@ big_map diff Set map(4)["3"] to "three" Set map(4)["1"] to "one" trace - - location: 43 (remaining gas: 1039936.964 units remaining) + - 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 (remaining gas: 1039936.954 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Right (Right (Right (Left { Pair "3" "three" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039936.954 units remaining) + - location: 44 (just consumed gas: 0) [ (Right (Right (Left { Pair "3" "three" }))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039936.954 units remaining) + - location: 60 (just consumed gas: 0) [ (Right (Left { Pair "3" "three" })) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039936.954 units remaining) + - location: 65 (just consumed gas: 0) [ (Left { Pair "3" "three" }) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039936.954 units remaining) + - location: 108 (just consumed gas: 0) [ { Pair "3" "three" } (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 110 (remaining gas: 1039936.954 units remaining) + - location: 110 (just consumed gas: 0) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 113 (remaining gas: 1039936.954 units remaining) + - location: 113 (just consumed gas: 0) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 113 (remaining gas: 1039936.939 units remaining) + - location: 113 (just consumed gas: 0.015) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 119 (remaining gas: 1039936.929 units remaining) + - location: 119 (just consumed gas: 0.010) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 110 (remaining gas: 1039936.904 units remaining) + - location: 110 (just consumed gas: 0.025) [ { Pair "3" "three" } { Elt "1" "one" } { Elt "2" "two" } ] - - location: 120 (remaining gas: 1039936.904 units remaining) + - location: 120 (just consumed gas: 0) [ (Pair "3" "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 122 (remaining gas: 1039936.894 units remaining) + - location: 122 (just consumed gas: 0.010) [ "3" "three" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 123 (remaining gas: 1039936.894 units remaining) + - location: 123 (just consumed gas: 0) [ "three" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 125 (remaining gas: 1039936.884 units remaining) + - location: 125 (just consumed gas: 0.010) [ (Some "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 123 (remaining gas: 1039936.859 units remaining) + - location: 123 (just consumed gas: 0.025) [ "3" (Some "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 126 (remaining gas: 1039936.135 units remaining) + - location: 126 (just consumed gas: 0.724) [ { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" } ] - - location: 120 (remaining gas: 1039936.120 units remaining) + - location: 120 (just consumed gas: 0.015) [ { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" } ] - - location: 127 (remaining gas: 1039936.110 units remaining) + - location: 127 (just consumed gas: 0.010) [ (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" }) ] - - location: 128 (remaining gas: 1039936.100 units remaining) + - location: 128 (just consumed gas: 0.010) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039936.085 units remaining) + - location: 108 (just consumed gas: 0.015) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039936.070 units remaining) + - location: 65 (just consumed gas: 0.015) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039936.055 units remaining) + - location: 60 (just consumed gas: 0.015) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039936.040 units remaining) + - location: 44 (just consumed gas: 0.015) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 151 (remaining gas: 1039936.030 units remaining) + - location: 151 (just consumed gas: 0.010) [ {} (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 153 (remaining gas: 1039936.020 units remaining) + - location: 153 (just consumed gas: 0.010) [ (Pair {} (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" }))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Left Unit)-(.21b30dd90f.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Left Unit)-(.21b30dd90f.out" index 9ef942574adf3c9fcacb5b0fa00c754e0375d9c9..247b65cc3ad4f380ad9bdededdcc1695bcc2f1d8 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Left Unit)-(.21b30dd90f.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Left Unit)-(.21b30dd90f.out" @@ -10,35 +10,35 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["2"] to "two" trace - - location: 43 (remaining gas: 1039937.872 units remaining) + - location: 43 (just consumed gas: 62.128) [ (Pair (Left Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039937.862 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Left Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039937.862 units remaining) + - location: 44 (just consumed gas: 0) [ Unit (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 46 (remaining gas: 1039937.852 units remaining) + - location: 46 (just consumed gas: 0.010) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 48 (remaining gas: 1039937.852 units remaining) + - location: 48 (just consumed gas: 0) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 48 (remaining gas: 1039937.837 units remaining) + - location: 48 (just consumed gas: 0.015) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 54 (remaining gas: 1039937.827 units remaining) + - location: 54 (just consumed gas: 0.010) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 55 (remaining gas: 1039937.817 units remaining) + - location: 55 (just consumed gas: 0.010) [ { Elt "2" "two" } { Elt "1" "one" } ] - - location: 56 (remaining gas: 1039937.807 units remaining) + - location: 56 (just consumed gas: 0.010) [ (Pair { Elt "2" "two" } { Elt "1" "one" }) ] - - location: 57 (remaining gas: 1039937.797 units remaining) + - location: 57 (just consumed gas: 0.010) [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 44 (remaining gas: 1039937.782 units remaining) + - location: 44 (just consumed gas: 0.015) [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 151 (remaining gas: 1039937.772 units remaining) + - location: 151 (just consumed gas: 0.010) [ {} (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 153 (remaining gas: 1039937.762 units remaining) + - location: 153 (just consumed gas: 0.010) [ (Pair {} (Left (Pair { Elt "2" "two" } { Elt "1" "one" }))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .2873ef610c.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .2873ef610c.out" index 703f59f0925150b33a7a4fba9d6299f4dcadf6b9..048ca1f9c9163b8a20fe66831c0e172661f2342a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .2873ef610c.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .2873ef610c.out" @@ -10,30 +10,30 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["3"] to "three" trace - - location: 43 (remaining gas: 1039934.584 units remaining) + - 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 (remaining gas: 1039934.574 units remaining) + - 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 (remaining gas: 1039934.574 units remaining) + - 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 (remaining gas: 1039934.574 units remaining) + - location: 60 (just consumed gas: 0) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 62 (remaining gas: 1039934.564 units remaining) + - 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 (remaining gas: 1039934.554 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 60 (remaining gas: 1039934.539 units remaining) + - location: 60 (just consumed gas: 0.015) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 44 (remaining gas: 1039934.524 units remaining) + - location: 44 (just consumed gas: 0.015) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 151 (remaining gas: 1039934.514 units remaining) + - location: 151 (just consumed gas: 0.010) [ {} (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 153 (remaining gas: 1039934.504 units remaining) + - location: 153 (just consumed gas: 0.010) [ (Pair {} (Left (Pair { Elt "3" "three" } { Elt "4" "four" }))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .8a6f480005.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .8a6f480005.out" index 9e8724b6b9692b374a2bdcc1e996c59108b29593..d3fc8a4d39cb1cd98f6318fb164daba2c73503ee 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .8a6f480005.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .8a6f480005.out" @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 43 (remaining gas: 1039937.232 units remaining) + - location: 43 (just consumed gas: 62.768) [ (Pair (Right (Left (Right Unit))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039937.222 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Right (Left (Right Unit))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039937.222 units remaining) + - location: 44 (just consumed gas: 0) [ (Left (Right Unit)) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039937.222 units remaining) + - location: 60 (just consumed gas: 0) [ (Right Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 62 (remaining gas: 1039937.212 units remaining) + - location: 62 (just consumed gas: 0.010) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) (Right Unit) ] - - location: 63 (remaining gas: 1039937.202 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Right Unit) ] - - location: 60 (remaining gas: 1039937.187 units remaining) + - location: 60 (just consumed gas: 0.015) [ (Right Unit) ] - - location: 44 (remaining gas: 1039937.172 units remaining) + - location: 44 (just consumed gas: 0.015) [ (Right Unit) ] - - location: 151 (remaining gas: 1039937.162 units remaining) + - location: 151 (just consumed gas: 0.010) [ {} (Right Unit) ] - - location: 153 (remaining gas: 1039937.152 units remaining) + - location: 153 (just consumed gas: 0.010) [ (Pair {} (Right Unit)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Right.d336ca1903.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Right.d336ca1903.out" index cb9e0c8a96f033b75d7b326ac37aeddca9c1cc69..d51b9cbfb6fbb4a7c712ed0972f2d086ebd274d4 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Right.d336ca1903.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Right.d336ca1903.out" @@ -10,74 +10,74 @@ big_map diff New map(4) of type (big_map string string) Unset map(4)["1"] trace - - location: 43 (remaining gas: 1039937.228 units remaining) + - location: 43 (just consumed gas: 62.772) [ (Pair (Right (Right (Right (Right { "1" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039937.218 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Right (Right (Right (Right { "1" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039937.218 units remaining) + - location: 44 (just consumed gas: 0) [ (Right (Right (Right { "1" }))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039937.218 units remaining) + - location: 60 (just consumed gas: 0) [ (Right (Right { "1" })) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039937.218 units remaining) + - location: 65 (just consumed gas: 0) [ (Right { "1" }) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039937.218 units remaining) + - location: 108 (just consumed gas: 0) [ { "1" } (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 131 (remaining gas: 1039937.218 units remaining) + - location: 131 (just consumed gas: 0) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 134 (remaining gas: 1039937.218 units remaining) + - location: 134 (just consumed gas: 0) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 134 (remaining gas: 1039937.203 units remaining) + - location: 134 (just consumed gas: 0.015) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 140 (remaining gas: 1039937.193 units remaining) + - location: 140 (just consumed gas: 0.010) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 131 (remaining gas: 1039937.168 units remaining) + - location: 131 (just consumed gas: 0.025) [ { "1" } { Elt "1" "one" } { Elt "2" "two" } ] - - location: 141 (remaining gas: 1039937.168 units remaining) + - location: 141 (just consumed gas: 0) [ "1" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 143 (remaining gas: 1039937.168 units remaining) + - location: 143 (just consumed gas: 0) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 145 (remaining gas: 1039937.158 units remaining) + - location: 145 (just consumed gas: 0.010) [ None { Elt "1" "one" } { Elt "2" "two" } ] - - location: 143 (remaining gas: 1039937.133 units remaining) + - location: 143 (just consumed gas: 0.025) [ "1" None { Elt "1" "one" } { Elt "2" "two" } ] - - location: 147 (remaining gas: 1039936.409 units remaining) + - location: 147 (just consumed gas: 0.724) [ {} { Elt "2" "two" } ] - - location: 141 (remaining gas: 1039936.394 units remaining) + - location: 141 (just consumed gas: 0.015) [ {} { Elt "2" "two" } ] - - location: 148 (remaining gas: 1039936.384 units remaining) + - location: 148 (just consumed gas: 0.010) [ (Pair {} { Elt "2" "two" }) ] - - location: 149 (remaining gas: 1039936.374 units remaining) + - location: 149 (just consumed gas: 0.010) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039936.359 units remaining) + - location: 108 (just consumed gas: 0.015) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039936.344 units remaining) + - location: 65 (just consumed gas: 0.015) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039936.329 units remaining) + - location: 60 (just consumed gas: 0.015) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039936.314 units remaining) + - location: 44 (just consumed gas: 0.015) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 151 (remaining gas: 1039936.304 units remaining) + - location: 151 (just consumed gas: 0.010) [ {} (Left (Pair {} { Elt "2" "two" })) ] - - location: 153 (remaining gas: 1039936.294 units remaining) + - location: 153 (just consumed gas: 0.010) [ (Pair {} (Left (Pair {} { Elt "2" "two" }))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Right Unit)-(Right (Right (Left (Pair { Pair \"foo\" \"bar\" } { P.7f2ee47600.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Right Unit)-(Right (Right (Left (Pair { Pair \"foo\" \"bar\" } { P.7f2ee47600.out" index 6cd9042e381c62c56d4866ac747c9923e45e16bb..b3127eee2eceaa01e8e2746c61deeb0640b5d387 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Right Unit)-(Right (Right (Left (Pair { Pair \"foo\" \"bar\" } { P.7f2ee47600.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Right Unit)-(Right (Right (Left (Pair { Pair \"foo\" \"bar\" } { P.7f2ee47600.out" @@ -10,126 +10,126 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["foo"] to "bar" trace - - location: 43 (remaining gas: 1039939.094 units remaining) + - location: 43 (just consumed gas: 60.906) [ (Pair (Right (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })))) (Right Unit)) ] - - location: 43 (remaining gas: 1039939.084 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Right (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })))) (Right Unit) ] - - location: 44 (remaining gas: 1039939.084 units remaining) + - location: 44 (just consumed gas: 0) [ (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }))) (Right Unit) ] - - location: 60 (remaining gas: 1039939.084 units remaining) + - location: 60 (just consumed gas: 0) [ (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })) (Right Unit) ] - - location: 65 (remaining gas: 1039939.084 units remaining) + - location: 65 (just consumed gas: 0) [ (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) (Right Unit) ] - - location: 67 (remaining gas: 1039939.084 units remaining) + - location: 67 (just consumed gas: 0) [ (Right Unit) ] - - location: 70 (remaining gas: 1039939.084 units remaining) + - location: 70 (just consumed gas: 0) [ Unit ] - - location: 70 (remaining gas: 1039939.069 units remaining) + - location: 70 (just consumed gas: 0.015) [ Unit ] - - location: 76 (remaining gas: 1039939.059 units remaining) + - location: 76 (just consumed gas: 0.010) [ ] - - location: 67 (remaining gas: 1039939.034 units remaining) + - location: 67 (just consumed gas: 0.025) [ (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) ] - - location: 77 (remaining gas: 1039939.024 units remaining) + - location: 77 (just consumed gas: 0.010) [ { Pair "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 78 (remaining gas: 1039939.024 units remaining) + - location: 78 (just consumed gas: 0) [ { Pair "gaz" "baz" } ] - - location: 80 (remaining gas: 1039938.724 units remaining) + - location: 80 (just consumed gas: 0.300) [ {} { Pair "gaz" "baz" } ] - - location: 78 (remaining gas: 1039938.699 units remaining) + - location: 78 (just consumed gas: 0.025) [ { Pair "foo" "bar" } {} { Pair "gaz" "baz" } ] - - location: 83 (remaining gas: 1039938.699 units remaining) + - location: 83 (just consumed gas: 0) [ (Pair "foo" "bar") {} { Pair "gaz" "baz" } ] - - location: 85 (remaining gas: 1039938.689 units remaining) + - location: 85 (just consumed gas: 0.010) [ "foo" "bar" {} { Pair "gaz" "baz" } ] - - location: 86 (remaining gas: 1039938.689 units remaining) + - location: 86 (just consumed gas: 0) [ "bar" {} { Pair "gaz" "baz" } ] - - location: 88 (remaining gas: 1039938.679 units remaining) + - location: 88 (just consumed gas: 0.010) [ (Some "bar") {} { Pair "gaz" "baz" } ] - - location: 86 (remaining gas: 1039938.654 units remaining) + - location: 86 (just consumed gas: 0.025) [ "foo" (Some "bar") {} { Pair "gaz" "baz" } ] - - location: 89 (remaining gas: 1039937.910 units remaining) + - location: 89 (just consumed gas: 0.744) [ { Elt "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 83 (remaining gas: 1039937.895 units remaining) + - location: 83 (just consumed gas: 0.015) [ { Elt "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 90 (remaining gas: 1039937.885 units remaining) + - location: 90 (just consumed gas: 0.010) [ { Pair "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 91 (remaining gas: 1039937.885 units remaining) + - location: 91 (just consumed gas: 0) [ { Elt "foo" "bar" } ] - - location: 93 (remaining gas: 1039937.585 units remaining) + - location: 93 (just consumed gas: 0.300) [ {} { Elt "foo" "bar" } ] - - location: 91 (remaining gas: 1039937.560 units remaining) + - location: 91 (just consumed gas: 0.025) [ { Pair "gaz" "baz" } {} { Elt "foo" "bar" } ] - - location: 96 (remaining gas: 1039937.560 units remaining) + - location: 96 (just consumed gas: 0) [ (Pair "gaz" "baz") {} { Elt "foo" "bar" } ] - - location: 98 (remaining gas: 1039937.550 units remaining) + - location: 98 (just consumed gas: 0.010) [ "gaz" "baz" {} { Elt "foo" "bar" } ] - - location: 99 (remaining gas: 1039937.550 units remaining) + - location: 99 (just consumed gas: 0) [ "baz" {} { Elt "foo" "bar" } ] - - location: 101 (remaining gas: 1039937.540 units remaining) + - location: 101 (just consumed gas: 0.010) [ (Some "baz") {} { Elt "foo" "bar" } ] - - location: 99 (remaining gas: 1039937.515 units remaining) + - location: 99 (just consumed gas: 0.025) [ "gaz" (Some "baz") {} { Elt "foo" "bar" } ] - - location: 102 (remaining gas: 1039936.771 units remaining) + - location: 102 (just consumed gas: 0.744) [ { Elt "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 96 (remaining gas: 1039936.756 units remaining) + - location: 96 (just consumed gas: 0.015) [ { Elt "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 103 (remaining gas: 1039936.746 units remaining) + - location: 103 (just consumed gas: 0.010) [ { Elt "foo" "bar" } { Elt "gaz" "baz" } ] - - location: 104 (remaining gas: 1039936.736 units remaining) + - location: 104 (just consumed gas: 0.010) [ (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" }) ] - - location: 105 (remaining gas: 1039936.726 units remaining) + - location: 105 (just consumed gas: 0.010) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 65 (remaining gas: 1039936.711 units remaining) + - location: 65 (just consumed gas: 0.015) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 60 (remaining gas: 1039936.696 units remaining) + - location: 60 (just consumed gas: 0.015) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 44 (remaining gas: 1039936.681 units remaining) + - location: 44 (just consumed gas: 0.015) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 151 (remaining gas: 1039936.671 units remaining) + - location: 151 (just consumed gas: 0.010) [ {} (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 153 (remaining gas: 1039936.661 units remaining) + - location: 153 (just consumed gas: 0.010) [ (Pair {} (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" }))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_check_signature.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_check_signature.out index 3c897022da994e26b518272fe0984ff18a5ca5c4..464947516c7151e7015960b40f009b19b57d19cf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_check_signature.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_check_signature.out @@ -8,18 +8,18 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039653.720 units remaining) + - location: 9 (just consumed gas: 346.280) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 9 (remaining gas: 1039653.710 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 10 (remaining gas: 1039653.700 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") @@ -29,20 +29,20 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 11 (remaining gas: 1039653.700 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 13 (remaining gas: 1039653.690 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 14 (remaining gas: 1039653.680 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" @@ -50,36 +50,36 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 15 (remaining gas: 1039653.670 units remaining) + - location: 15 (just consumed gas: 0.010) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 16 (remaining gas: 1039653.670 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 18 (remaining gas: 1039653.660 units remaining) + - location: 18 (just consumed gas: 0.010) [ "hello" (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 19 (remaining gas: 1039653.394 units remaining) + - location: 19 (just consumed gas: 0.266) [ 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 16 (remaining gas: 1039653.369 units remaining) + - location: 16 (just consumed gas: 0.025) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 11 (remaining gas: 1039653.344 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") @@ -88,34 +88,34 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 20 (remaining gas: 1039653.334 units remaining) + - location: 20 (just consumed gas: 0.010) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 21 (remaining gas: 1039587.522 units remaining) + - location: 21 (just consumed gas: 65.812) [ True (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 22 (remaining gas: 1039587.522 units remaining) + - location: 22 (just consumed gas: 0) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 22 (remaining gas: 1039587.507 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 28 (remaining gas: 1039587.497 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 29 (remaining gas: 1039587.487 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 31 (remaining gas: 1039587.477 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair {} "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] @@ -136,18 +136,18 @@ At line 8 characters 14 to 18, script reached FAILWITH instruction with Unit trace - - location: 9 (remaining gas: 1039653.730 units remaining) + - location: 9 (just consumed gas: 346.270) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 9 (remaining gas: 1039653.720 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 10 (remaining gas: 1039653.710 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") @@ -157,20 +157,20 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 11 (remaining gas: 1039653.710 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 13 (remaining gas: 1039653.700 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 14 (remaining gas: 1039653.690 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" @@ -178,36 +178,36 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 15 (remaining gas: 1039653.680 units remaining) + - location: 15 (just consumed gas: 0.010) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 16 (remaining gas: 1039653.680 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 18 (remaining gas: 1039653.670 units remaining) + - location: 18 (just consumed gas: 0.010) [ "abcd" (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 19 (remaining gas: 1039653.414 units remaining) + - location: 19 (just consumed gas: 0.256) [ 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 16 (remaining gas: 1039653.389 units remaining) + - location: 16 (just consumed gas: 0.025) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 11 (remaining gas: 1039653.364 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") @@ -216,23 +216,23 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 20 (remaining gas: 1039653.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 21 (remaining gas: 1039587.543 units remaining) + - location: 21 (just consumed gas: 65.811) [ False (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 22 (remaining gas: 1039587.543 units remaining) + - location: 22 (just consumed gas: 0) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 26 (remaining gas: 1039587.533 units remaining) + - location: 26 (just consumed gas: 0.010) [ Unit (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out index 839297d87b669c62a4a6fd30f5fd74eb1ebc59e9..95238718affd9c9adf9d99549496884306b28736 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039989.789 units remaining) + - location: 7 (just consumed gas: 10.211) [ (Pair 0 Unit) ] - - location: 7 (remaining gas: 1039989.779 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0 ] - - location: 8 (remaining gas: 1039989.769 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0 0 ] - - location: 9 (remaining gas: 1039989.744 units remaining) + - location: 9 (just consumed gas: 0.025) [ 0 0 ] - - location: 10 (remaining gas: 1039989.724 units remaining) + - location: 10 (just consumed gas: 0.020) [ 0 0 ] - - location: 11 (remaining gas: 1039989.689 units remaining) + - location: 11 (just consumed gas: 0.035) [ 0 ] - - location: 13 (remaining gas: 1039989.679 units remaining) + - location: 13 (just consumed gas: 0.010) [ True ] - - location: 14 (remaining gas: 1039989.679 units remaining) + - location: 14 (just consumed gas: 0) [ ] - - location: 14 (remaining gas: 1039989.664 units remaining) + - location: 14 (just consumed gas: 0.015) [ ] - - location: 20 (remaining gas: 1039989.654 units remaining) + - location: 20 (just consumed gas: 0.010) [ Unit ] - - location: 21 (remaining gas: 1039989.644 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} Unit ] - - location: 23 (remaining gas: 1039989.634 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out index 7dea5e6520e588219ff13723bc58800792160d53..62ee61f538fdb735b2cc0f4a5caba23058b7c5d4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039989.789 units remaining) + - location: 7 (just consumed gas: 10.211) [ (Pair 12039123919239192312931 Unit) ] - - location: 7 (remaining gas: 1039989.779 units remaining) + - location: 7 (just consumed gas: 0.010) [ 12039123919239192312931 ] - - location: 8 (remaining gas: 1039989.769 units remaining) + - location: 8 (just consumed gas: 0.010) [ 12039123919239192312931 12039123919239192312931 ] - - location: 9 (remaining gas: 1039989.739 units remaining) + - location: 9 (just consumed gas: 0.030) [ -12039123919239192312931 12039123919239192312931 ] - - location: 10 (remaining gas: 1039989.714 units remaining) + - location: 10 (just consumed gas: 0.025) [ 12039123919239192312931 12039123919239192312931 ] - - location: 11 (remaining gas: 1039989.679 units remaining) + - location: 11 (just consumed gas: 0.035) [ 0 ] - - location: 13 (remaining gas: 1039989.669 units remaining) + - location: 13 (just consumed gas: 0.010) [ True ] - - location: 14 (remaining gas: 1039989.669 units remaining) + - location: 14 (just consumed gas: 0) [ ] - - location: 14 (remaining gas: 1039989.654 units remaining) + - location: 14 (just consumed gas: 0.015) [ ] - - location: 20 (remaining gas: 1039989.644 units remaining) + - location: 20 (just consumed gas: 0.010) [ Unit ] - - location: 21 (remaining gas: 1039989.634 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} Unit ] - - location: 23 (remaining gas: 1039989.624 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out index 2920a18d298ea74a7e2ed79346593ebcfb30e694..ac2db4d4e4df5a5dd58432d91b85db0f3b2cb04a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039989.789 units remaining) + - location: 7 (just consumed gas: 10.211) [ (Pair 948 Unit) ] - - location: 7 (remaining gas: 1039989.779 units remaining) + - location: 7 (just consumed gas: 0.010) [ 948 ] - - location: 8 (remaining gas: 1039989.769 units remaining) + - location: 8 (just consumed gas: 0.010) [ 948 948 ] - - location: 9 (remaining gas: 1039989.743 units remaining) + - location: 9 (just consumed gas: 0.026) [ -948 948 ] - - location: 10 (remaining gas: 1039989.722 units remaining) + - location: 10 (just consumed gas: 0.021) [ 948 948 ] - - location: 11 (remaining gas: 1039989.687 units remaining) + - location: 11 (just consumed gas: 0.035) [ 0 ] - - location: 13 (remaining gas: 1039989.677 units remaining) + - location: 13 (just consumed gas: 0.010) [ True ] - - location: 14 (remaining gas: 1039989.677 units remaining) + - location: 14 (just consumed gas: 0) [ ] - - location: 14 (remaining gas: 1039989.662 units remaining) + - location: 14 (just consumed gas: 0.015) [ ] - - location: 20 (remaining gas: 1039989.652 units remaining) + - location: 20 (just consumed gas: 0.010) [ Unit ] - - location: 21 (remaining gas: 1039989.642 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} Unit ] - - location: 23 (remaining gas: 1039989.632 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out index d62ce4406523b380273f731886a9b46323207333..a21a88f70d68d5b95590eb4b6206ed725130e1a7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out @@ -7,205 +7,205 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039931.551 units remaining) + - location: 7 (just consumed gas: 68.449) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039931.541 units remaining) + - location: 7 (just consumed gas: 0.010) [ Unit ] - - location: 8 (remaining gas: 1039931.531 units remaining) + - location: 8 (just consumed gas: 0.010) [ 2 Unit ] - - location: 11 (remaining gas: 1039931.521 units remaining) + - location: 11 (just consumed gas: 0.010) [ 2 2 Unit ] - - location: 14 (remaining gas: 1039931.486 units remaining) + - location: 14 (just consumed gas: 0.035) [ 4 Unit ] - - location: 15 (remaining gas: 1039931.476 units remaining) + - location: 15 (just consumed gas: 0.010) [ 4 4 Unit ] - - location: 20 (remaining gas: 1039931.441 units remaining) + - location: 20 (just consumed gas: 0.035) [ 0 Unit ] - - location: 21 (remaining gas: 1039931.431 units remaining) + - location: 21 (just consumed gas: 0.010) [ True Unit ] - - location: 22 (remaining gas: 1039931.431 units remaining) + - location: 22 (just consumed gas: 0) [ Unit ] - - location: 22 (remaining gas: 1039931.416 units remaining) + - location: 22 (just consumed gas: 0.015) [ Unit ] - - location: 28 (remaining gas: 1039931.406 units remaining) + - location: 28 (just consumed gas: 0.010) [ 2 Unit ] - - location: 31 (remaining gas: 1039931.396 units remaining) + - location: 31 (just consumed gas: 0.010) [ 2 2 Unit ] - - location: 34 (remaining gas: 1039931.361 units remaining) + - location: 34 (just consumed gas: 0.035) [ 4 Unit ] - - location: 35 (remaining gas: 1039931.351 units remaining) + - location: 35 (just consumed gas: 0.010) [ 4 4 Unit ] - - location: 40 (remaining gas: 1039931.316 units remaining) + - location: 40 (just consumed gas: 0.035) [ 0 Unit ] - - location: 41 (remaining gas: 1039931.306 units remaining) + - location: 41 (just consumed gas: 0.010) [ True Unit ] - - location: 42 (remaining gas: 1039931.306 units remaining) + - location: 42 (just consumed gas: 0) [ Unit ] - - location: 42 (remaining gas: 1039931.291 units remaining) + - location: 42 (just consumed gas: 0.015) [ Unit ] - - location: 48 (remaining gas: 1039931.281 units remaining) + - location: 48 (just consumed gas: 0.010) [ 2 Unit ] - - location: 51 (remaining gas: 1039931.271 units remaining) + - location: 51 (just consumed gas: 0.010) [ 2 2 Unit ] - - location: 54 (remaining gas: 1039931.236 units remaining) + - location: 54 (just consumed gas: 0.035) [ 4 Unit ] - - location: 55 (remaining gas: 1039931.226 units remaining) + - location: 55 (just consumed gas: 0.010) [ 4 4 Unit ] - - location: 60 (remaining gas: 1039931.191 units remaining) + - location: 60 (just consumed gas: 0.035) [ 0 Unit ] - - location: 61 (remaining gas: 1039931.181 units remaining) + - location: 61 (just consumed gas: 0.010) [ True Unit ] - - location: 62 (remaining gas: 1039931.181 units remaining) + - location: 62 (just consumed gas: 0) [ Unit ] - - location: 62 (remaining gas: 1039931.166 units remaining) + - location: 62 (just consumed gas: 0.015) [ Unit ] - - location: 68 (remaining gas: 1039931.156 units remaining) + - location: 68 (just consumed gas: 0.010) [ 2 Unit ] - - location: 71 (remaining gas: 1039931.146 units remaining) + - location: 71 (just consumed gas: 0.010) [ 2 2 Unit ] - - location: 74 (remaining gas: 1039931.111 units remaining) + - location: 74 (just consumed gas: 0.035) [ 4 Unit ] - - location: 75 (remaining gas: 1039931.101 units remaining) + - location: 75 (just consumed gas: 0.010) [ 4 4 Unit ] - - location: 80 (remaining gas: 1039931.066 units remaining) + - location: 80 (just consumed gas: 0.035) [ 0 Unit ] - - location: 81 (remaining gas: 1039931.056 units remaining) + - location: 81 (just consumed gas: 0.010) [ True Unit ] - - location: 82 (remaining gas: 1039931.056 units remaining) + - location: 82 (just consumed gas: 0) [ Unit ] - - location: 82 (remaining gas: 1039931.041 units remaining) + - location: 82 (just consumed gas: 0.015) [ Unit ] - - location: 88 (remaining gas: 1039931.031 units remaining) + - location: 88 (just consumed gas: 0.010) [ 2 Unit ] - - location: 91 (remaining gas: 1039931.021 units remaining) + - location: 91 (just consumed gas: 0.010) [ 2 2 Unit ] - - location: 94 (remaining gas: 1039930.986 units remaining) + - location: 94 (just consumed gas: 0.035) [ 4 Unit ] - - location: 95 (remaining gas: 1039930.976 units remaining) + - location: 95 (just consumed gas: 0.010) [ 4 4 Unit ] - - location: 100 (remaining gas: 1039930.941 units remaining) + - location: 100 (just consumed gas: 0.035) [ 0 Unit ] - - location: 101 (remaining gas: 1039930.931 units remaining) + - location: 101 (just consumed gas: 0.010) [ True Unit ] - - location: 102 (remaining gas: 1039930.931 units remaining) + - location: 102 (just consumed gas: 0) [ Unit ] - - location: 102 (remaining gas: 1039930.916 units remaining) + - location: 102 (just consumed gas: 0.015) [ Unit ] - - location: 108 (remaining gas: 1039930.906 units remaining) + - location: 108 (just consumed gas: 0.010) [ 60 Unit ] - - location: 111 (remaining gas: 1039930.896 units remaining) + - location: 111 (just consumed gas: 0.010) [ "2019-09-09T12:08:37Z" 60 Unit ] - - location: 114 (remaining gas: 1039930.859 units remaining) + - location: 114 (just consumed gas: 0.037) [ "2019-09-09T12:09:37Z" Unit ] - - location: 115 (remaining gas: 1039930.849 units remaining) + - location: 115 (just consumed gas: 0.010) [ "2019-09-09T12:09:37Z" "2019-09-09T12:09:37Z" Unit ] - - location: 120 (remaining gas: 1039930.814 units remaining) + - location: 120 (just consumed gas: 0.035) [ 0 Unit ] - - location: 121 (remaining gas: 1039930.804 units remaining) + - location: 121 (just consumed gas: 0.010) [ True Unit ] - - location: 122 (remaining gas: 1039930.804 units remaining) + - location: 122 (just consumed gas: 0) [ Unit ] - - location: 122 (remaining gas: 1039930.789 units remaining) + - location: 122 (just consumed gas: 0.015) [ Unit ] - - location: 128 (remaining gas: 1039930.779 units remaining) + - location: 128 (just consumed gas: 0.010) [ "2019-09-09T12:08:37Z" Unit ] - - location: 131 (remaining gas: 1039930.769 units remaining) + - location: 131 (just consumed gas: 0.010) [ 60 "2019-09-09T12:08:37Z" Unit ] - - location: 134 (remaining gas: 1039930.732 units remaining) + - location: 134 (just consumed gas: 0.037) [ "2019-09-09T12:09:37Z" Unit ] - - location: 135 (remaining gas: 1039930.722 units remaining) + - location: 135 (just consumed gas: 0.010) [ "2019-09-09T12:09:37Z" "2019-09-09T12:09:37Z" Unit ] - - location: 140 (remaining gas: 1039930.687 units remaining) + - location: 140 (just consumed gas: 0.035) [ 0 Unit ] - - location: 141 (remaining gas: 1039930.677 units remaining) + - location: 141 (just consumed gas: 0.010) [ True Unit ] - - location: 142 (remaining gas: 1039930.677 units remaining) + - location: 142 (just consumed gas: 0) [ Unit ] - - location: 142 (remaining gas: 1039930.662 units remaining) + - location: 142 (just consumed gas: 0.015) [ Unit ] - - location: 148 (remaining gas: 1039930.652 units remaining) + - location: 148 (just consumed gas: 0.010) [ 1000 Unit ] - - location: 151 (remaining gas: 1039930.642 units remaining) + - location: 151 (just consumed gas: 0.010) [ 1000 1000 Unit ] - - location: 154 (remaining gas: 1039930.622 units remaining) + - location: 154 (just consumed gas: 0.020) [ 2000 Unit ] - - location: 155 (remaining gas: 1039930.612 units remaining) + - location: 155 (just consumed gas: 0.010) [ 2000 2000 Unit ] - - location: 160 (remaining gas: 1039930.577 units remaining) + - location: 160 (just consumed gas: 0.035) [ 0 Unit ] - - location: 161 (remaining gas: 1039930.567 units remaining) + - location: 161 (just consumed gas: 0.010) [ True Unit ] - - location: 162 (remaining gas: 1039930.567 units remaining) + - location: 162 (just consumed gas: 0) [ Unit ] - - location: 162 (remaining gas: 1039930.552 units remaining) + - location: 162 (just consumed gas: 0.015) [ Unit ] - - location: 168 (remaining gas: 1039930.542 units remaining) + - location: 168 (just consumed gas: 0.010) [ {} Unit ] - - location: 170 (remaining gas: 1039930.532 units remaining) + - location: 170 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out index dc1e4aa83d9ebe73d992fd2beb11da54a977315e..8954a5b7287d064ea68caaf1bf7899d4e46a43ea 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.619 units remaining) + - location: 10 (just consumed gas: 6.381) [ (Pair (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (remaining gas: 1039993.609 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (remaining gas: 1039993.599 units remaining) + - location: 11 (just consumed gas: 0.010) [ 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.569 units remaining) + - location: 12 (just consumed gas: 0.030) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (remaining gas: 1039993.559 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (remaining gas: 1039993.549 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (remaining gas: 1039993.539 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some 0x0000000000000000000000000000000000000000000000000000000000000000)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out index 6e17002f1222cc97fce98e307feddd1635548224..4675a4e119f83e454505447bd4f2b06499f61a1b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.619 units remaining) + - location: 10 (just consumed gas: 6.381) [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (remaining gas: 1039993.609 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (remaining gas: 1039993.599 units remaining) + - location: 11 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.569 units remaining) + - location: 12 (just consumed gas: 0.030) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (remaining gas: 1039993.559 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (remaining gas: 1039993.549 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (remaining gas: 1039993.539 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some 0x0100000000000000000000000000000000000000000000000000000000000000)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out index 5d355eba379123ec92db448219064a848401de71..0afb2615edfaf8ea6792184537a185438c7d83a4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.619 units remaining) + - location: 10 (just consumed gas: 6.381) [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (remaining gas: 1039993.609 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (remaining gas: 1039993.599 units remaining) + - location: 11 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.569 units remaining) + - location: 12 (just consumed gas: 0.030) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (remaining gas: 1039993.559 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (remaining gas: 1039993.549 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (remaining gas: 1039993.539 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some 0x0100000000000000000000000000000000000000000000000000000000000000)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out index b061665049ebd2ab910ddb6b32406c3e85ea6725..9bd6a5ada09a9e5e0a9016d80b1d5db9d485a0ae 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.619 units remaining) + - location: 10 (just consumed gas: 6.381) [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (remaining gas: 1039993.609 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (remaining gas: 1039993.599 units remaining) + - location: 11 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.569 units remaining) + - location: 12 (just consumed gas: 0.030) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (remaining gas: 1039993.559 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (remaining gas: 1039993.549 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (remaining gas: 1039993.539 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some 0x0200000000000000000000000000000000000000000000000000000000000000)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" index 38eb64657827c26de6818b2aae66e366243cb1e4..21c1fc5b214ab0317d8cde9765f9bf91eca991b1 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.768 units remaining) + - location: 10 (just consumed gas: 8.232) [ (Pair (Pair -100 "1970-01-01T00:01:40Z") None) ] - - location: 10 (remaining gas: 1039991.758 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 11 (remaining gas: 1039991.748 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair -100 "1970-01-01T00:01:40Z") (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 12 (remaining gas: 1039991.738 units remaining) + - location: 12 (just consumed gas: 0.010) [ -100 (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 13 (remaining gas: 1039991.738 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 15 (remaining gas: 1039991.728 units remaining) + - location: 15 (just consumed gas: 0.010) [ "1970-01-01T00:01:40Z" ] - - location: 13 (remaining gas: 1039991.703 units remaining) + - location: 13 (just consumed gas: 0.025) [ -100 "1970-01-01T00:01:40Z" ] - - location: 16 (remaining gas: 1039991.668 units remaining) + - location: 16 (just consumed gas: 0.035) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039991.658 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039991.648 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039991.638 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some "1970-01-01T00:00:00Z")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" index 2794d5d50abf549f738e112a79710e8be47c44a2..742a94ce6552ec8875f8559ac2fde3d5a73f3b99 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.660 units remaining) + - location: 10 (just consumed gas: 8.340) [ (Pair (Pair 0 "1970-01-01T00:00:00Z") None) ] - - location: 10 (remaining gas: 1039991.650 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 11 (remaining gas: 1039991.640 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 0 "1970-01-01T00:00:00Z") (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 12 (remaining gas: 1039991.630 units remaining) + - location: 12 (just consumed gas: 0.010) [ 0 (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 13 (remaining gas: 1039991.630 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 15 (remaining gas: 1039991.620 units remaining) + - location: 15 (just consumed gas: 0.010) [ "1970-01-01T00:00:00Z" ] - - location: 13 (remaining gas: 1039991.595 units remaining) + - location: 13 (just consumed gas: 0.025) [ 0 "1970-01-01T00:00:00Z" ] - - location: 16 (remaining gas: 1039991.560 units remaining) + - location: 16 (just consumed gas: 0.035) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039991.550 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039991.540 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039991.530 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some "1970-01-01T00:00:00Z")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" index d063d924b767ddf26496a5784886ed62fdb07fed..1af6f59929d895135c49bb8609bb4619046a0ff3 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.768 units remaining) + - location: 10 (just consumed gas: 8.232) [ (Pair (Pair 100 "1970-01-01T00:01:40Z") None) ] - - location: 10 (remaining gas: 1039991.758 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 11 (remaining gas: 1039991.748 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 100 "1970-01-01T00:01:40Z") (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 12 (remaining gas: 1039991.738 units remaining) + - location: 12 (just consumed gas: 0.010) [ 100 (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 13 (remaining gas: 1039991.738 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 15 (remaining gas: 1039991.728 units remaining) + - location: 15 (just consumed gas: 0.010) [ "1970-01-01T00:01:40Z" ] - - location: 13 (remaining gas: 1039991.703 units remaining) + - location: 13 (just consumed gas: 0.025) [ 100 "1970-01-01T00:01:40Z" ] - - location: 16 (remaining gas: 1039991.668 units remaining) + - location: 16 (just consumed gas: 0.035) [ "1970-01-01T00:03:20Z" ] - - location: 17 (remaining gas: 1039991.658 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Some "1970-01-01T00:03:20Z") ] - - location: 18 (remaining gas: 1039991.648 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Some "1970-01-01T00:03:20Z") ] - - location: 20 (remaining gas: 1039991.638 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some "1970-01-01T00:03:20Z")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" index c80107a27db8ecc978b4048172c6f5d1ac179deb..41d3b0068a97bfc41dc423a66e7036d9c308cc2a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.660 units remaining) + - location: 10 (just consumed gas: 8.340) [ (Pair (Pair "1970-01-01T00:00:00Z" 0) None) ] - - location: 10 (remaining gas: 1039991.650 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 11 (remaining gas: 1039991.640 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:00:00Z" 0) (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 12 (remaining gas: 1039991.630 units remaining) + - location: 12 (just consumed gas: 0.010) [ "1970-01-01T00:00:00Z" (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 13 (remaining gas: 1039991.630 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 15 (remaining gas: 1039991.620 units remaining) + - location: 15 (just consumed gas: 0.010) [ 0 ] - - location: 13 (remaining gas: 1039991.595 units remaining) + - location: 13 (just consumed gas: 0.025) [ "1970-01-01T00:00:00Z" 0 ] - - location: 16 (remaining gas: 1039991.560 units remaining) + - location: 16 (just consumed gas: 0.035) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039991.550 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039991.540 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039991.530 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some "1970-01-01T00:00:00Z")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" index fd3e31fb92e8c0608f0af6f99771dbf63f71df7b..8b98f73afed811046bdf6be60a37f55244539c8a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.768 units remaining) + - location: 10 (just consumed gas: 8.232) [ (Pair (Pair "1970-01-01T00:01:40Z" -100) None) ] - - location: 10 (remaining gas: 1039991.758 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 11 (remaining gas: 1039991.748 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" -100) (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 12 (remaining gas: 1039991.738 units remaining) + - location: 12 (just consumed gas: 0.010) [ "1970-01-01T00:01:40Z" (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 13 (remaining gas: 1039991.738 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 15 (remaining gas: 1039991.728 units remaining) + - location: 15 (just consumed gas: 0.010) [ -100 ] - - location: 13 (remaining gas: 1039991.703 units remaining) + - location: 13 (just consumed gas: 0.025) [ "1970-01-01T00:01:40Z" -100 ] - - location: 16 (remaining gas: 1039991.668 units remaining) + - location: 16 (just consumed gas: 0.035) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039991.658 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039991.648 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039991.638 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some "1970-01-01T00:00:00Z")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" index 0c06bd7ac16a286c363f1b329714fca5d1f04f2a..1ee2dabba484ecf1b2620485c21294f00ee92691 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.768 units remaining) + - location: 10 (just consumed gas: 8.232) [ (Pair (Pair "1970-01-01T00:01:40Z" 100) None) ] - - location: 10 (remaining gas: 1039991.758 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 11 (remaining gas: 1039991.748 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" 100) (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 12 (remaining gas: 1039991.738 units remaining) + - location: 12 (just consumed gas: 0.010) [ "1970-01-01T00:01:40Z" (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 13 (remaining gas: 1039991.738 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 15 (remaining gas: 1039991.728 units remaining) + - location: 15 (just consumed gas: 0.010) [ 100 ] - - location: 13 (remaining gas: 1039991.703 units remaining) + - location: 13 (just consumed gas: 0.025) [ "1970-01-01T00:01:40Z" 100 ] - - location: 16 (remaining gas: 1039991.668 units remaining) + - location: 16 (just consumed gas: 0.035) [ "1970-01-01T00:03:20Z" ] - - location: 17 (remaining gas: 1039991.658 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Some "1970-01-01T00:03:20Z") ] - - location: 18 (remaining gas: 1039991.648 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Some "1970-01-01T00:03:20Z") ] - - location: 20 (remaining gas: 1039991.638 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some "1970-01-01T00:03:20Z")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" index 0cabc4b6b7734e6b139e557a7e861687ea047122..d78696c7a08022bf888149cb4e8c21c962070acb 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039991.239 units remaining) + - location: 9 (just consumed gas: 8.761) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" None) ] - - location: 9 (remaining gas: 1039991.229 units remaining) + - location: 9 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 10 (remaining gas: 1039991.219 units remaining) + - location: 10 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 11 (remaining gas: 1039991.209 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 12 (remaining gas: 1039991.199 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out index 30eb2ad22f420da1c61c3378130fe6f5239b6077..f405a01164b4a778f525ae913814631a7cd2bee8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out @@ -7,25 +7,25 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.428 units remaining) + - location: 10 (just consumed gas: 7.572) [ (Pair (Pair False False) None) ] - - location: 10 (remaining gas: 1039992.418 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair False False) ] - - location: 11 (remaining gas: 1039992.408 units remaining) + - location: 11 (just consumed gas: 0.010) [ False False ] - - location: 12 (remaining gas: 1039992.398 units remaining) + - location: 12 (just consumed gas: 0.010) [ False ] - - location: 13 (remaining gas: 1039992.388 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some False) ] - - location: 14 (remaining gas: 1039992.378 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 16 (remaining gas: 1039992.368 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 17 (remaining gas: 1039992.358 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 18 (remaining gas: 1039992.348 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out index 7e393c2143481b650bae586096f9333766cc8f5c..46db7c3ad300b6504b8286f9d3b15dcfc7f24428 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out @@ -7,25 +7,25 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.428 units remaining) + - location: 10 (just consumed gas: 7.572) [ (Pair (Pair False True) None) ] - - location: 10 (remaining gas: 1039992.418 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair False True) ] - - location: 11 (remaining gas: 1039992.408 units remaining) + - location: 11 (just consumed gas: 0.010) [ False True ] - - location: 12 (remaining gas: 1039992.398 units remaining) + - location: 12 (just consumed gas: 0.010) [ False ] - - location: 13 (remaining gas: 1039992.388 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some False) ] - - location: 14 (remaining gas: 1039992.378 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 16 (remaining gas: 1039992.368 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 17 (remaining gas: 1039992.358 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 18 (remaining gas: 1039992.348 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out index 2e0ad2866a8e84aee33b66e0be956209d4a77be8..d70c055468e89874b3104b9891a49ce1afb6a703 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out @@ -7,25 +7,25 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.428 units remaining) + - location: 10 (just consumed gas: 7.572) [ (Pair (Pair True False) None) ] - - location: 10 (remaining gas: 1039992.418 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair True False) ] - - location: 11 (remaining gas: 1039992.408 units remaining) + - location: 11 (just consumed gas: 0.010) [ True False ] - - location: 12 (remaining gas: 1039992.398 units remaining) + - location: 12 (just consumed gas: 0.010) [ False ] - - location: 13 (remaining gas: 1039992.388 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some False) ] - - location: 14 (remaining gas: 1039992.378 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 16 (remaining gas: 1039992.368 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 17 (remaining gas: 1039992.358 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 18 (remaining gas: 1039992.348 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out index a9eea2d178427698541f9f7dbe406c16bff3d725..7a48277dce3b181a4ed742ea89780506c361ac37 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out @@ -7,25 +7,25 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.428 units remaining) + - location: 10 (just consumed gas: 7.572) [ (Pair (Pair True True) None) ] - - location: 10 (remaining gas: 1039992.418 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair True True) ] - - location: 11 (remaining gas: 1039992.408 units remaining) + - location: 11 (just consumed gas: 0.010) [ True True ] - - location: 12 (remaining gas: 1039992.398 units remaining) + - location: 12 (just consumed gas: 0.010) [ True ] - - location: 13 (remaining gas: 1039992.388 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some True) ] - - location: 14 (remaining gas: 1039992.378 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 16 (remaining gas: 1039992.368 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some True)) ] - - location: 17 (remaining gas: 1039992.358 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 18 (remaining gas: 1039992.348 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out index 02775f4c7d0b1d9795eefefd7250999b43a1f1c8..032abe0ace5f8db447f2a720001d6e3d1f4f5378 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out @@ -7,87 +7,87 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039963.751 units remaining) + - location: 7 (just consumed gas: 36.249) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039963.741 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039963.731 units remaining) + - location: 8 (just consumed gas: 0.010) [ 5 ] - - location: 11 (remaining gas: 1039963.721 units remaining) + - location: 11 (just consumed gas: 0.010) [ 6 5 ] - - location: 14 (remaining gas: 1039963.686 units remaining) + - location: 14 (just consumed gas: 0.035) [ 4 ] - - location: 15 (remaining gas: 1039963.676 units remaining) + - location: 15 (just consumed gas: 0.010) [ 4 4 ] - - location: 20 (remaining gas: 1039963.641 units remaining) + - location: 20 (just consumed gas: 0.035) [ 0 ] - - location: 21 (remaining gas: 1039963.631 units remaining) + - location: 21 (just consumed gas: 0.010) [ True ] - - location: 22 (remaining gas: 1039963.631 units remaining) + - location: 22 (just consumed gas: 0) [ ] - - location: 22 (remaining gas: 1039963.616 units remaining) + - location: 22 (just consumed gas: 0.015) [ ] - - location: 28 (remaining gas: 1039963.606 units remaining) + - location: 28 (just consumed gas: 0.010) [ 6 ] - - location: 31 (remaining gas: 1039963.596 units remaining) + - location: 31 (just consumed gas: 0.010) [ 5 6 ] - - location: 34 (remaining gas: 1039963.561 units remaining) + - location: 34 (just consumed gas: 0.035) [ 4 ] - - location: 35 (remaining gas: 1039963.551 units remaining) + - location: 35 (just consumed gas: 0.010) [ 4 4 ] - - location: 40 (remaining gas: 1039963.516 units remaining) + - location: 40 (just consumed gas: 0.035) [ 0 ] - - location: 41 (remaining gas: 1039963.506 units remaining) + - location: 41 (just consumed gas: 0.010) [ True ] - - location: 42 (remaining gas: 1039963.506 units remaining) + - location: 42 (just consumed gas: 0) [ ] - - location: 42 (remaining gas: 1039963.491 units remaining) + - location: 42 (just consumed gas: 0.015) [ ] - - location: 48 (remaining gas: 1039963.481 units remaining) + - location: 48 (just consumed gas: 0.010) [ 12 ] - - location: 51 (remaining gas: 1039963.471 units remaining) + - location: 51 (just consumed gas: 0.010) [ -1 12 ] - - location: 54 (remaining gas: 1039963.436 units remaining) + - location: 54 (just consumed gas: 0.035) [ 12 ] - - location: 55 (remaining gas: 1039963.426 units remaining) + - location: 55 (just consumed gas: 0.010) [ 12 12 ] - - location: 60 (remaining gas: 1039963.391 units remaining) + - location: 60 (just consumed gas: 0.035) [ 0 ] - - location: 61 (remaining gas: 1039963.381 units remaining) + - location: 61 (just consumed gas: 0.010) [ True ] - - location: 62 (remaining gas: 1039963.381 units remaining) + - location: 62 (just consumed gas: 0) [ ] - - location: 62 (remaining gas: 1039963.366 units remaining) + - location: 62 (just consumed gas: 0.015) [ ] - - location: 68 (remaining gas: 1039963.356 units remaining) + - location: 68 (just consumed gas: 0.010) [ 12 ] - - location: 71 (remaining gas: 1039963.346 units remaining) + - location: 71 (just consumed gas: 0.010) [ -5 12 ] - - location: 74 (remaining gas: 1039963.311 units remaining) + - location: 74 (just consumed gas: 0.035) [ 8 ] - - location: 75 (remaining gas: 1039963.301 units remaining) + - location: 75 (just consumed gas: 0.010) [ 8 8 ] - - location: 80 (remaining gas: 1039963.266 units remaining) + - location: 80 (just consumed gas: 0.035) [ 0 ] - - location: 81 (remaining gas: 1039963.256 units remaining) + - location: 81 (just consumed gas: 0.010) [ True ] - - location: 82 (remaining gas: 1039963.256 units remaining) + - location: 82 (just consumed gas: 0) [ ] - - location: 82 (remaining gas: 1039963.241 units remaining) + - location: 82 (just consumed gas: 0.015) [ ] - - location: 88 (remaining gas: 1039963.231 units remaining) + - location: 88 (just consumed gas: 0.010) [ Unit ] - - location: 89 (remaining gas: 1039963.221 units remaining) + - location: 89 (just consumed gas: 0.010) [ {} Unit ] - - location: 91 (remaining gas: 1039963.211 units remaining) + - location: 91 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out index 62336a17b1426bfec8c7ee84a9f110992ef47ab1..bacede7152f67aba1831c2b528fea4f9f47aaa37 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.634 units remaining) + - location: 9 (just consumed gas: 5.366) [ (Pair (Pair False False) False) ] - - location: 9 (remaining gas: 1039994.624 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair False False) ] - - location: 10 (remaining gas: 1039994.614 units remaining) + - location: 10 (just consumed gas: 0.010) [ False False ] - - location: 11 (remaining gas: 1039994.604 units remaining) + - location: 11 (just consumed gas: 0.010) [ False ] - - location: 12 (remaining gas: 1039994.594 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} False ] - - location: 14 (remaining gas: 1039994.584 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} False) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out index 335689c17a19584849c2552964445c4a80a8d777..07c9978de81afca42d1f3adfed61abcac7b9889a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.634 units remaining) + - location: 9 (just consumed gas: 5.366) [ (Pair (Pair False True) False) ] - - location: 9 (remaining gas: 1039994.624 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair False True) ] - - location: 10 (remaining gas: 1039994.614 units remaining) + - location: 10 (just consumed gas: 0.010) [ False True ] - - location: 11 (remaining gas: 1039994.604 units remaining) + - location: 11 (just consumed gas: 0.010) [ False ] - - location: 12 (remaining gas: 1039994.594 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} False ] - - location: 14 (remaining gas: 1039994.584 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} False) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out index 15b16581ab1e81eb57509536f5cca3b9bee6885c..518c11a1f0589b89590450f585ecc474368a864a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.634 units remaining) + - location: 9 (just consumed gas: 5.366) [ (Pair (Pair True False) False) ] - - location: 9 (remaining gas: 1039994.624 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair True False) ] - - location: 10 (remaining gas: 1039994.614 units remaining) + - location: 10 (just consumed gas: 0.010) [ True False ] - - location: 11 (remaining gas: 1039994.604 units remaining) + - location: 11 (just consumed gas: 0.010) [ False ] - - location: 12 (remaining gas: 1039994.594 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} False ] - - location: 14 (remaining gas: 1039994.584 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} False) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out index 37d45b4b84e98d8cee87c25dd1e1fc9c0db12385..792ba132f61f1628ab830d47b4f34064d97fc043 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.634 units remaining) + - location: 9 (just consumed gas: 5.366) [ (Pair (Pair True True) False) ] - - location: 9 (remaining gas: 1039994.624 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair True True) ] - - location: 10 (remaining gas: 1039994.614 units remaining) + - location: 10 (just consumed gas: 0.010) [ True True ] - - location: 11 (remaining gas: 1039994.604 units remaining) + - location: 11 (just consumed gas: 0.010) [ True ] - - location: 12 (remaining gas: 1039994.594 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} True ] - - location: 14 (remaining gas: 1039994.584 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} True) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out index c3fff51cb6995571b9475258b2a7c03316d2542c..5ae671691235913bc66e7a09fa21f3ec471d0d1d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 111) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 4000000000000 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 4000000000000 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 4000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out index 383edc04061ab4e0425b06053e706a4239dd9315..467e607fdf57b14281f1466625e7e8fbfe54989a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out @@ -8,36 +8,36 @@ big_map diff New map(4) of type (big_map nat nat) Set map(4)[0] to 1 trace - - location: 12 (remaining gas: 1039989.157 units remaining) + - location: 12 (just consumed gas: 10.843) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (remaining gas: 1039989.147 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (remaining gas: 1039989.147 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 0 1 } None) ] - - location: 15 (remaining gas: 1039989.137 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 0 1 } ] - - location: 16 (remaining gas: 1039989.127 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (remaining gas: 1039989.102 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (remaining gas: 1039988.380 units remaining) + - location: 17 (just consumed gas: 0.722) [ False { Elt 0 1 } ] - - location: 18 (remaining gas: 1039988.370 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt 0 1 } ] - - location: 19 (remaining gas: 1039988.360 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 0 1 } (Some False) ] - - location: 20 (remaining gas: 1039988.350 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039988.340 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039988.330 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 0 1 } (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out index 8d5aae07f4dc04bd541e45bbfb8e2ef3ab5886ac..5b5c8f060e33f75cabf9ec568b413f9fcb89f19e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out @@ -8,36 +8,36 @@ big_map diff New map(4) of type (big_map nat nat) Set map(4)[0] to 1 trace - - location: 12 (remaining gas: 1039989.157 units remaining) + - location: 12 (just consumed gas: 10.843) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (remaining gas: 1039989.147 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (remaining gas: 1039989.147 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 0 1 } None) ] - - location: 15 (remaining gas: 1039989.137 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 0 1 } ] - - location: 16 (remaining gas: 1039989.127 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (remaining gas: 1039989.102 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (remaining gas: 1039988.380 units remaining) + - location: 17 (just consumed gas: 0.722) [ False { Elt 0 1 } ] - - location: 18 (remaining gas: 1039988.370 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt 0 1 } ] - - location: 19 (remaining gas: 1039988.360 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 0 1 } (Some False) ] - - location: 20 (remaining gas: 1039988.350 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039988.340 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039988.330 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 0 1 } (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out index 987ad130285e703442bf51024ce013738a2bfb41..6dc945441fc9687e3bcee55fb3afd31df7d7178e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out @@ -8,36 +8,36 @@ big_map diff New map(4) of type (big_map nat nat) Set map(4)[1] to 0 trace - - location: 12 (remaining gas: 1039989.132 units remaining) + - location: 12 (just consumed gas: 10.868) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (remaining gas: 1039989.122 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (remaining gas: 1039989.122 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 0 } None) ] - - location: 15 (remaining gas: 1039989.112 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 0 } ] - - location: 16 (remaining gas: 1039989.102 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (remaining gas: 1039989.077 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (remaining gas: 1039988.355 units remaining) + - location: 17 (just consumed gas: 0.722) [ True { Elt 1 0 } ] - - location: 18 (remaining gas: 1039988.345 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 0 } ] - - location: 19 (remaining gas: 1039988.335 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 0 } (Some True) ] - - location: 20 (remaining gas: 1039988.325 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039988.315 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039988.305 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 1 0 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out index 5bfeb260a33577010e4a7aac789384b97f06bda6..ffa283d5db7f891f00a4ca430377df1ba38e3a06 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out @@ -8,36 +8,36 @@ big_map diff New map(4) of type (big_map nat nat) Set map(4)[1] to 0 trace - - location: 12 (remaining gas: 1039989.132 units remaining) + - location: 12 (just consumed gas: 10.868) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (remaining gas: 1039989.122 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (remaining gas: 1039989.122 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 0 } None) ] - - location: 15 (remaining gas: 1039989.112 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 0 } ] - - location: 16 (remaining gas: 1039989.102 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (remaining gas: 1039989.077 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (remaining gas: 1039988.355 units remaining) + - location: 17 (just consumed gas: 0.722) [ True { Elt 1 0 } ] - - location: 18 (remaining gas: 1039988.345 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 0 } ] - - location: 19 (remaining gas: 1039988.335 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 0 } (Some True) ] - - location: 20 (remaining gas: 1039988.325 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039988.315 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039988.305 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 1 0 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out index 765b4a747183e8df3253fbe53508e92d8e5074b6..85bd38c08f775e76e26715e952d211c8bd428aca 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out @@ -9,36 +9,36 @@ big_map diff Set map(4)[1] to 4 Set map(4)[2] to 11 trace - - location: 12 (remaining gas: 1039988.162 units remaining) + - location: 12 (just consumed gas: 11.838) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.107 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.384 units remaining) + - location: 17 (just consumed gas: 0.723) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out index bf9b661f5e8cb0b180d2288396f93d71a480531d..7a4a24be9f6dd2c3f97d27d0df61cfa0da574030 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out @@ -9,36 +9,36 @@ big_map diff Set map(4)[1] to 4 Set map(4)[2] to 11 trace - - location: 12 (remaining gas: 1039988.162 units remaining) + - location: 12 (just consumed gas: 11.838) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.107 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.384 units remaining) + - location: 17 (just consumed gas: 0.723) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out index 04ebf6074d59a40f417117a9d5869686d650ca8d..f7462e05df604e8bebe90845fd46d5bdd9d9f814 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out @@ -9,36 +9,36 @@ big_map diff Set map(4)[1] to 4 Set map(4)[2] to 11 trace - - location: 12 (remaining gas: 1039988.162 units remaining) + - location: 12 (just consumed gas: 11.838) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.107 units remaining) + - location: 13 (just consumed gas: 0.025) [ 2 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.384 units remaining) + - location: 17 (just consumed gas: 0.723) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out index b704ceefd234347ce3182def7d364716abd38891..b720741dce7c77520b409d969c7e9288400614d3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out @@ -9,36 +9,36 @@ big_map diff Set map(4)[1] to 4 Set map(4)[2] to 11 trace - - location: 12 (remaining gas: 1039988.162 units remaining) + - location: 12 (just consumed gas: 11.838) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.107 units remaining) + - location: 13 (just consumed gas: 0.025) [ 2 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.384 units remaining) + - location: 17 (just consumed gas: 0.723) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out index cbb7c2e6820dd70868317fac0669f8dfcff0964c..4231f0ee0bc845230e05136a1d4de4bdcbd83fd6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out @@ -9,36 +9,36 @@ big_map diff Set map(4)[1] to 4 Set map(4)[2] to 11 trace - - location: 12 (remaining gas: 1039988.162 units remaining) + - location: 12 (just consumed gas: 11.838) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.107 units remaining) + - location: 13 (just consumed gas: 0.025) [ 3 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.384 units remaining) + - location: 17 (just consumed gas: 0.723) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out index 81c26ba7a83d954687b4f52dbcaf7ca1fb7129e1..1b5227762a8ef4210853f767b189886a80e9cce5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out @@ -9,36 +9,36 @@ big_map diff Set map(4)[1] to 4 Set map(4)[2] to 11 trace - - location: 12 (remaining gas: 1039988.162 units remaining) + - location: 12 (just consumed gas: 11.838) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.107 units remaining) + - location: 13 (just consumed gas: 0.025) [ 3 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.384 units remaining) + - location: 17 (just consumed gas: 0.723) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out index 216f84993286eab658512be7a0fd62aa1f82a9e0..cdd814b0e06ca22879bb753def8af2ebc07bac47 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out @@ -7,36 +7,36 @@ emitted operations big_map diff New map(4) of type (big_map nat nat) trace - - location: 12 (remaining gas: 1039990.064 units remaining) + - location: 12 (just consumed gas: 9.936) [ (Pair 1 {} None) ] - - location: 12 (remaining gas: 1039990.054 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair {} None) ] - - location: 13 (remaining gas: 1039990.054 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039990.044 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} ] - - location: 16 (remaining gas: 1039990.034 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (remaining gas: 1039990.009 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 {} {} ] - - location: 17 (remaining gas: 1039989.289 units remaining) + - location: 17 (just consumed gas: 0.720) [ False {} ] - - location: 18 (remaining gas: 1039989.279 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) {} ] - - location: 19 (remaining gas: 1039989.269 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 20 (remaining gas: 1039989.259 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039989.249 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039989.239 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out index f905c8930aa8b73714115d053a2f65b3b761013f..a344f92e4e59d3a3b8669947dc46d4218ee095b1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out @@ -7,36 +7,36 @@ emitted operations big_map diff New map(4) of type (big_map nat nat) trace - - location: 12 (remaining gas: 1039990.064 units remaining) + - location: 12 (just consumed gas: 9.936) [ (Pair 1 {} None) ] - - location: 12 (remaining gas: 1039990.054 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair {} None) ] - - location: 13 (remaining gas: 1039990.054 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039990.044 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} ] - - location: 16 (remaining gas: 1039990.034 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (remaining gas: 1039990.009 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 {} {} ] - - location: 17 (remaining gas: 1039989.289 units remaining) + - location: 17 (just consumed gas: 0.720) [ False {} ] - - location: 18 (remaining gas: 1039989.279 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) {} ] - - location: 19 (remaining gas: 1039989.269 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 20 (remaining gas: 1039989.259 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039989.249 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039989.239 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} {} (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" index beabb43572052e35f7856e27069da486fd8474b8..3b07868ba2afd455bdd9e4776904c5fb574385a6 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" @@ -9,36 +9,36 @@ big_map diff Set map(4)["bar"] to 4 Set map(4)["foo"] to 11 trace - - location: 12 (remaining gas: 1039988.006 units remaining) + - location: 12 (just consumed gas: 11.994) [ (Pair "baz" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039987.996 units remaining) + - location: 12 (just consumed gas: 0.010) [ "baz" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039987.996 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039987.986 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039987.976 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039987.951 units remaining) + - location: 13 (just consumed gas: 0.025) [ "baz" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039987.216 units remaining) + - location: 17 (just consumed gas: 0.735) [ False { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039987.206 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039987.196 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some False) ] - - location: 20 (remaining gas: 1039987.186 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 21 (remaining gas: 1039987.176 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 23 (remaining gas: 1039987.166 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" index d352542b12fcc46f83a58d8b7b318dffc1fbdc17..997b2a2b55ef1f222d681834b6d75b37fe27acaa 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" @@ -9,36 +9,36 @@ big_map diff Set map(4)["bar"] to 4 Set map(4)["foo"] to 11 trace - - location: 12 (remaining gas: 1039988.006 units remaining) + - location: 12 (just consumed gas: 11.994) [ (Pair "foo" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039987.996 units remaining) + - location: 12 (just consumed gas: 0.010) [ "foo" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039987.996 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039987.986 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039987.976 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039987.951 units remaining) + - location: 13 (just consumed gas: 0.025) [ "foo" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039987.216 units remaining) + - location: 17 (just consumed gas: 0.735) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039987.206 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039987.196 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.186 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.176 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.166 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" index fd88d7e9d06df4e3a928efca544d0cd7285970f0..c20f651b0db7e905bb18eb38a7067d1341ba75b7 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" @@ -9,36 +9,36 @@ big_map diff Set map(4)["bar"] to 4 Set map(4)["foo"] to 11 trace - - location: 12 (remaining gas: 1039988.006 units remaining) + - location: 12 (just consumed gas: 11.994) [ (Pair "bar" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039987.996 units remaining) + - location: 12 (just consumed gas: 0.010) [ "bar" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039987.996 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039987.986 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039987.976 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039987.951 units remaining) + - location: 13 (just consumed gas: 0.025) [ "bar" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039987.216 units remaining) + - location: 17 (just consumed gas: 0.735) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039987.206 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039987.196 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.186 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.176 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.166 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" index 2baff56c26f142ea4a33c7dc616891ea1c72ee0a..3023287a1522d773e0c4bf58b6e972981f4d49e0 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" @@ -8,36 +8,36 @@ big_map diff New map(4) of type (big_map string nat) Set map(4)["foo"] to 0 trace - - location: 12 (remaining gas: 1039989.032 units remaining) + - location: 12 (just consumed gas: 10.968) [ (Pair "foo" { Elt "foo" 0 } None) ] - - location: 12 (remaining gas: 1039989.022 units remaining) + - location: 12 (just consumed gas: 0.010) [ "foo" (Pair { Elt "foo" 0 } None) ] - - location: 13 (remaining gas: 1039989.022 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "foo" 0 } None) ] - - location: 15 (remaining gas: 1039989.012 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "foo" 0 } ] - - location: 16 (remaining gas: 1039989.002 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 13 (remaining gas: 1039988.977 units remaining) + - location: 13 (just consumed gas: 0.025) [ "foo" { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 17 (remaining gas: 1039988.243 units remaining) + - location: 17 (just consumed gas: 0.734) [ True { Elt "foo" 0 } ] - - location: 18 (remaining gas: 1039988.233 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt "foo" 0 } ] - - location: 19 (remaining gas: 1039988.223 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "foo" 0 } (Some True) ] - - location: 20 (remaining gas: 1039988.213 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "foo" 0 } (Some True)) ] - - location: 21 (remaining gas: 1039988.203 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "foo" 0 } (Some True)) ] - - location: 23 (remaining gas: 1039988.193 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt "foo" 0 } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" index dd335781a987ad08fa7c8160246e01f54f5b95e7..f20922674a0eba0448b2c82df0dff0c2dbd8e8f8 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" @@ -8,36 +8,36 @@ big_map diff New map(4) of type (big_map string nat) Set map(4)["foo"] to 1 trace - - location: 12 (remaining gas: 1039989.032 units remaining) + - location: 12 (just consumed gas: 10.968) [ (Pair "bar" { Elt "foo" 1 } None) ] - - location: 12 (remaining gas: 1039989.022 units remaining) + - location: 12 (just consumed gas: 0.010) [ "bar" (Pair { Elt "foo" 1 } None) ] - - location: 13 (remaining gas: 1039989.022 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "foo" 1 } None) ] - - location: 15 (remaining gas: 1039989.012 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "foo" 1 } ] - - location: 16 (remaining gas: 1039989.002 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 13 (remaining gas: 1039988.977 units remaining) + - location: 13 (just consumed gas: 0.025) [ "bar" { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 17 (remaining gas: 1039988.243 units remaining) + - location: 17 (just consumed gas: 0.734) [ False { Elt "foo" 1 } ] - - location: 18 (remaining gas: 1039988.233 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt "foo" 1 } ] - - location: 19 (remaining gas: 1039988.223 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "foo" 1 } (Some False) ] - - location: 20 (remaining gas: 1039988.213 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "foo" 1 } (Some False)) ] - - location: 21 (remaining gas: 1039988.203 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "foo" 1 } (Some False)) ] - - location: 23 (remaining gas: 1039988.193 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt "foo" 1 } (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" index bb2697257348e0febe1981d05870b8dcd11790ab..4c2cef2f5ecedb41ed78e563209f322f8ddccf2b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" @@ -7,36 +7,36 @@ emitted operations big_map diff New map(4) of type (big_map string nat) trace - - location: 12 (remaining gas: 1039990.020 units remaining) + - location: 12 (just consumed gas: 9.980) [ (Pair "bar" {} None) ] - - location: 12 (remaining gas: 1039990.010 units remaining) + - location: 12 (just consumed gas: 0.010) [ "bar" (Pair {} None) ] - - location: 13 (remaining gas: 1039990.010 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039990 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} ] - - location: 16 (remaining gas: 1039989.990 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (remaining gas: 1039989.965 units remaining) + - location: 13 (just consumed gas: 0.025) [ "bar" {} {} ] - - location: 17 (remaining gas: 1039989.233 units remaining) + - location: 17 (just consumed gas: 0.732) [ False {} ] - - location: 18 (remaining gas: 1039989.223 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) {} ] - - location: 19 (remaining gas: 1039989.213 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 20 (remaining gas: 1039989.203 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039989.193 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039989.183 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out index 5e613afcbedfbc0f71ae003b5b3e0518c2922abd..86879c7d627518c634b939011653df565ea0c783 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.366 units remaining) + - location: 8 (just consumed gas: 5.634) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039994.356 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (remaining gas: 1039994.346 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.336 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 13 (remaining gas: 1039994.326 units remaining) + - location: 13 (just consumed gas: 0.010) [ {} (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 15 (remaining gas: 1039994.316 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair {} (Some 0x0000000000000000000000000000000000000000000000000000000000000000)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out index edaca46edd0b20abd5e3d171d7088191051f15be..0c65df761a63e255ffda8be6b8c661460e4d2557 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.366 units remaining) + - location: 8 (just consumed gas: 5.634) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039994.356 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (remaining gas: 1039994.346 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.336 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Some 0x1000000000000000000000000000000000000000000000000000000000000000) ] - - location: 13 (remaining gas: 1039994.326 units remaining) + - location: 13 (just consumed gas: 0.010) [ {} (Some 0x1000000000000000000000000000000000000000000000000000000000000000) ] - - location: 15 (remaining gas: 1039994.316 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair {} (Some 0x1000000000000000000000000000000000000000000000000000000000000000)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out index fa405134600126f4b0d60244fac20c44b428f478..9e3ca24d98efbab3b4a61097ed5ad0658ad574f1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.488 units remaining) + - location: 8 (just consumed gas: 0.115) [ 0 ] - - location: 9 (remaining gas: 1039995.478 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0 ] - - location: 11 (remaining gas: 1039995.468 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out index 998313d16e0c1567652dff542dc7849995d35efc..4e5e6d4b71f654dae58b1546006ede72dd1e0d7a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.488 units remaining) + - location: 8 (just consumed gas: 0.115) [ 1 ] - - location: 9 (remaining gas: 1039995.478 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 1 ] - - location: 11 (remaining gas: 1039995.468 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out index 77ead20db045b67acbc28d80ccb222d95e9db37a..9bcf9eb13bf8e6de5b7c9e3dcb2605ec6ea78a0f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 0) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 ] - - location: 8 (remaining gas: 1039995.488 units remaining) + - location: 8 (just consumed gas: 0.115) [ 17832688077013577776524784494464728518213913213412866604053735695200962927400 ] - - location: 9 (remaining gas: 1039995.478 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 17832688077013577776524784494464728518213913213412866604053735695200962927400 ] - - location: 11 (remaining gas: 1039995.468 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 17832688077013577776524784494464728518213913213412866604053735695200962927400) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out index f0b5ca3478febd06ca00022e9d230bf0a9476871..2ab05993341596ec0322c0a5817a017038e37c8f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 0) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 ] - - location: 8 (remaining gas: 1039995.488 units remaining) + - location: 8 (just consumed gas: 0.115) [ 11320265829256585830781521966149529460476767408210445238902869222031333517497 ] - - location: 9 (remaining gas: 1039995.478 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 11320265829256585830781521966149529460476767408210445238902869222031333517497 ] - - location: 11 (remaining gas: 1039995.468 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 11320265829256585830781521966149529460476767408210445238902869222031333517497) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out index e138f036dfe8db1cadc7d3c8d619df633c0417ed..9f72f388396d07da55f5235461095dd28d3659c6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039990.684 units remaining) + - location: 7 (just consumed gas: 9.316) [ (Pair 0x1000000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (remaining gas: 1039990.674 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039990.559 units remaining) + - location: 8 (just consumed gas: 0.115) [ 16 ] - - location: 9 (remaining gas: 1039990.549 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Some 16) ] - - location: 11 (remaining gas: 1039990.549 units remaining) + - location: 11 (just consumed gas: 0) [ 16 ] - - location: 11 (remaining gas: 1039990.534 units remaining) + - location: 11 (just consumed gas: 0.015) [ 16 ] - - location: 17 (remaining gas: 1039990.524 units remaining) + - location: 17 (just consumed gas: 0.010) [ 1 16 ] - - location: 20 (remaining gas: 1039990.524 units remaining) + - location: 20 (just consumed gas: 0) [ 16 ] - - location: 21 (remaining gas: 1039990.514 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} 16 ] - - location: 23 (remaining gas: 1039990.504 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} 16) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out index c1d2e0d764f4d15507984ee51114b9f550be3d93..2bd4fc38406241a7e6df087d2141dc59c244a06c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair -42 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ -42 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 9 (remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 11 (remaining gas: 1039995.317 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out index 4445c21fd960241d668de90d3269c9b1a06ab4b7..5eeb4e1ec0e285c440e7f43856334b6388862b42 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.317 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0x0200000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out index 58dce8d2b6f48d09b94249381b7b71a3b5cc92c7..0ef52aa60e32fba6ff95af0b8b8a85b805f6706b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair -1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ -1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 9 (remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 11 (remaining gas: 1039995.317 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out index 481b2e85b93c013435aaa597c17a3c8558c040de..a35a4fb56bf792601b1f5c7646b3ce3684f7acb7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.338 units remaining) + - location: 8 (just consumed gas: 0.265) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.328 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.318 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0x0000000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out index 4f80791ad1f7bb0721b71569f54e2ef0247b7cb6..67990b777180dfbbc5fbe2aca881cb3c40ee82e6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out index 961cea14183e43b9c7c47d37d0e0a0d61d3cd27b..91803770756d1ed55f29613a5682474dbe699f3c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.317 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out index 3d4b4b90d8d97b3e43f393d2ee3c854ce38937ed..1a4f9b1e117af0bb4bc25aadad225957f44315d6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out index 152d055f04f7bd1cc594749b8c5cfd2c5772f142..61203f95b8f2dad2efdbb7053b650f82c1c37e83 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out index 06cd577c391dff3980346e2bd4c9da03b0b49b9f..4621d967ca250dc39bb31f54b2c4c40ce506dc17 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out index 4af52f2f0d511f21403b13d9cc4bcdcde2937f54..bd3e1605ab1b291b27d0e175440e6d802039a03b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out index ea24be63588e95e5bf49a83fe2a0a466f086d237..1cddfcc40673a3c3e7f39951e31ec224dd2f7e35 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.317 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out index 0c3c5c8b82615466c88b45c827edcbfa88f49a52..94a8b66bf09dd44bdc1a4790f8a8bf5a835d2f07 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.338 units remaining) + - location: 8 (just consumed gas: 0.265) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.328 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.318 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0x0000000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out index 5affd13eeafc268982ed3af4aaaa5c2ce78da53e..f573677f4d8b356c0990179b20810a9b291d23a8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out index 70d1bc99ea31d9441b29e075215fe3246cdb240a..fdd5fb3c1e3540f6bb3420193800063f6741e561 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.317 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0x0200000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out index bd1565da0841bd8675c16d32fea42b5e119a3b7e..9d54a1e1090b166dbec87a8b6ef992d3be93f72b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out index 3223d6ff0fef6a080848a2bb189549c2880c3728..31ae8bd3cf0f1ae4fc49d544adb468dcafa42962 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out index ab75809a2061bb5cb579e1209769908b7494676b..08a5c05fff49b728308e216d53bed5c18c5277fc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out index e6ca3f7def91bc6c599b5084df77cb6bd4814a94..a19ba2ed05d1df460e0c0de7bd4c70a0e25c4839 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out index 5a12f30d3b7e12395b77bdc759a96fea124804d4..f69dafc0450e676e1ffda2625c728b6737c0d8b8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 2 ] - - location: 9 (remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.754 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x0200000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out index 5ed335cd29fac78faa70feb901bbc2fcc160e16d..8bd4a8a3783a9ef048712c72c194be3838b6df60 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair -1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ -1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 -1 ] - - location: 9 (remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266) [ 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 10 (remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 12 (remaining gas: 1039994.754 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out index 2f44c05213a0497c26e8f4c4d077b888fad82dcd..387b38db65910396016d97dafa4a13db16c7aeb7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0 ] - - location: 9 (remaining gas: 1039994.775 units remaining) + - location: 9 (just consumed gas: 0.265) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.765 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.755 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x0000000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out index 9fb6cf6de61f2fb66c3ba0d2f0b002e31389dc43..87d39713784283db1baee22fde85b6f7c6b71f32 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair -42 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ -42 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 -42 ] - - location: 9 (remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266) [ 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 10 (remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 12 (remaining gas: 1039994.754 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out index 1d0f7cd55428df49d9c4cd0bd85f6c75a2797f9e..b0f816e32a01611f9b2d76fd96c4960fff68bf6c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 1 ] - - location: 9 (remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.754 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out index 1f4508f927b4b0886aaf989e8697d04fff89490b..c7233d23a650dc32f3375f7033533f4a246bd6c4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 52435875175126190479447740508185965837690552500527637822603658699938581184514 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out index 613328d1b23d611789f6ea5d0a09a2b00fa5f810..c7f9ac7c8b0ae7691a7030fb246e6370b2fa7c1e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f 22620284817922784902564672469917992996328211127984472897491698543785655336309 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out index 21f8d9c53b44c466512dace27b9f227ff8f6cf29..1229afe72810727f7e4f278ff5812d0cb85f9bc9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f 33644916630334844239120348434626468649534186770809802792596996408934105684394 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out index 61630f7fd7377f22531f8d57543fffa98aa61976..2e9133e25eb1f81429c8a2e35a57380b2cfa2ad2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 17180093072794558806177035834397932205917577288483739652510482486858834123369 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out index b3465aac10203a4ebe4adf6dcce02c7290fb3c89..2e52c1e0df54afdcab22f53e8ff3ad85c6a2fa21 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 69615968247920749285624776342583898043608129789011377475114141186797415307882 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out index de4392998e935a139b38819e3d5b3f4c3b67d209..1d5ffefc397f0e51ba9e206c18f339e388c64b62 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 52435875175126190479447740508185965837690552500527637822603658699938581184514 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out index a1da9bdd3a0dcba71fe07ba87db13b7982e0e009..c0076a725b936825cd40754453bfdf14e3ce3909 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0 ] - - location: 9 (remaining gas: 1039994.775 units remaining) + - location: 9 (just consumed gas: 0.265) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.765 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.755 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x0000000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out index 4885a668dbf04e174f80caec633296f3392703b3..c0fc1b05d8243f2151157d5266d12c5550ba2276 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 1 ] - - location: 9 (remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.754 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out index 2648fea4383998ecf512d4b24a58af38e6e6b011..babd726d2786a53505498898bad51bdb75e0789a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 2 ] - - location: 9 (remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.754 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x0200000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out index 69b3914db86e4a5d8d040ae1ad8dea30a5c2a2c6..55dd8a46e57cef3612ad86cbf6627b93f017f577 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f 22620284817922784902564672469917992996328211127984472897491698543785655336309 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out index f7c1345658f0d7d3f5b2d8305bb5aa5099f19d9c..6edb34c0007ebe417ecb86a7ded63f107a165d91 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f 33644916630334844239120348434626468649534186770809802792596996408934105684394 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out index 2e98e9a4f0719ee90d8c087932d85f273ab2ffc4..86a9e398d8da53f7da91895a97e3916e1dbe01b1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 69615968247920749285624776342583898043608129789011377475114141186797415307882 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out index f58aa3ada5e4e979e94481f823aa47d4637ec299..ad7781847508a25f5fb1f99293736b8736c01399 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 17180093072794558806177035834397932205917577288483739652510482486858834123369 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out index 9facbcfb252b0f996e2fe810a8a3ff9d4513ee67..f658bd43481ff70050c88d5f425d0c2c37120536 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039995.277 units remaining) + - location: 9 (just consumed gas: 4.723) [ (Pair (Pair 34 17) 0) ] - - location: 9 (remaining gas: 1039995.267 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair 34 17) ] - - location: 10 (remaining gas: 1039995.257 units remaining) + - location: 10 (just consumed gas: 0.010) [ 34 ] - - location: 11 (remaining gas: 1039995.247 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} 34 ] - - location: 13 (remaining gas: 1039995.237 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} 34) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out index 17513835c15fcaa85e82457589d951cab2badc0d..dea4dd9def4988230591bc2d556c7309b47f8ac8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039995.277 units remaining) + - location: 9 (just consumed gas: 4.723) [ (Pair (Pair 34 17) 0) ] - - location: 9 (remaining gas: 1039995.267 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair 34 17) ] - - location: 10 (remaining gas: 1039995.257 units remaining) + - location: 10 (just consumed gas: 0.010) [ 17 ] - - location: 11 (remaining gas: 1039995.247 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} 17 ] - - location: 13 (remaining gas: 1039995.237 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} 17) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" index 245d9c4a5ff51b1c80cec41cb12e2dcec04acdd8..92f1ab7e29b385e67455559adb8c46d8d8106f79 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.247 units remaining) + - location: 8 (just consumed gas: 6.753) [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] - - location: 8 (remaining gas: 1039993.237 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (remaining gas: 1039993.222 units remaining) + - location: 9 (just consumed gas: 0.015) [ "NetXdQprcVkpaWU" ] - - location: 10 (remaining gas: 1039993.212 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (remaining gas: 1039993.202 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some "NetXdQprcVkpaWU") ] - - location: 13 (remaining gas: 1039993.192 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} (Some "NetXdQprcVkpaWU")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" index 7566240fbdc8e0de605530e2deccd9a8f1fcb09f..2b800175f19e7d98661542241dfb39ba2f87b59e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.797 units remaining) + - location: 8 (just consumed gas: 5.203) [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] - - location: 8 (remaining gas: 1039994.787 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (remaining gas: 1039994.772 units remaining) + - location: 9 (just consumed gas: 0.015) [ "NetXdQprcVkpaWU" ] - - location: 10 (remaining gas: 1039994.762 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (remaining gas: 1039994.752 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some "NetXdQprcVkpaWU") ] - - location: 13 (remaining gas: 1039994.742 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} (Some "NetXdQprcVkpaWU")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" index 78496b08b1a3feee3b025afde43803df8b59eb83..1cf1feb7d2d5123d4395f8377f97af4eb3862fb4 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (remaining gas: 1039994.922 units remaining) + - location: 9 (just consumed gas: 0.015) [ "NetXdQprcVkpaWU" ] - - location: 10 (remaining gas: 1039994.912 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (remaining gas: 1039994.902 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some "NetXdQprcVkpaWU") ] - - location: 13 (remaining gas: 1039994.892 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} (Some "NetXdQprcVkpaWU")) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out index 7ae31c2795c46d3e72c00b3e861cb448a62cf39b..e1fe883c478bc58ee3aa4b38a6f32ead7da056b6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out @@ -7,117 +7,117 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039956.652 units remaining) + - location: 11 (just consumed gas: 43.348) [ (Pair (Pair 1 4 2 Unit) Unit) ] - - location: 11 (remaining gas: 1039956.642 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 1 4 2 Unit) ] - - location: 12 (remaining gas: 1039956.632 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 13 (remaining gas: 1039956.622 units remaining) + - location: 13 (just consumed gas: 0.010) [ 1 (Pair 1 4 2 Unit) ] - - location: 14 (remaining gas: 1039956.612 units remaining) + - location: 14 (just consumed gas: 0.010) [ 1 1 (Pair 1 4 2 Unit) ] - - location: 19 (remaining gas: 1039956.577 units remaining) + - location: 19 (just consumed gas: 0.035) [ 0 (Pair 1 4 2 Unit) ] - - location: 20 (remaining gas: 1039956.567 units remaining) + - location: 20 (just consumed gas: 0.010) [ True (Pair 1 4 2 Unit) ] - - location: 21 (remaining gas: 1039956.567 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair 1 4 2 Unit) ] - - location: 21 (remaining gas: 1039956.552 units remaining) + - location: 21 (just consumed gas: 0.015) [ (Pair 1 4 2 Unit) ] - - location: 27 (remaining gas: 1039956.542 units remaining) + - location: 27 (just consumed gas: 0.010) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 28 (remaining gas: 1039956.522 units remaining) + - location: 28 (just consumed gas: 0.020) [ 1 (Pair 1 4 2 Unit) ] - - location: 30 (remaining gas: 1039956.512 units remaining) + - location: 30 (just consumed gas: 0.010) [ 1 1 (Pair 1 4 2 Unit) ] - - location: 35 (remaining gas: 1039956.477 units remaining) + - location: 35 (just consumed gas: 0.035) [ 0 (Pair 1 4 2 Unit) ] - - location: 36 (remaining gas: 1039956.467 units remaining) + - location: 36 (just consumed gas: 0.010) [ True (Pair 1 4 2 Unit) ] - - location: 37 (remaining gas: 1039956.467 units remaining) + - location: 37 (just consumed gas: 0) [ (Pair 1 4 2 Unit) ] - - location: 37 (remaining gas: 1039956.452 units remaining) + - location: 37 (just consumed gas: 0.015) [ (Pair 1 4 2 Unit) ] - - location: 43 (remaining gas: 1039956.442 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 44 (remaining gas: 1039956.421 units remaining) + - location: 44 (just consumed gas: 0.021) [ 4 (Pair 1 4 2 Unit) ] - - location: 46 (remaining gas: 1039956.411 units remaining) + - location: 46 (just consumed gas: 0.010) [ 4 4 (Pair 1 4 2 Unit) ] - - location: 51 (remaining gas: 1039956.376 units remaining) + - location: 51 (just consumed gas: 0.035) [ 0 (Pair 1 4 2 Unit) ] - - location: 52 (remaining gas: 1039956.366 units remaining) + - location: 52 (just consumed gas: 0.010) [ True (Pair 1 4 2 Unit) ] - - location: 53 (remaining gas: 1039956.366 units remaining) + - location: 53 (just consumed gas: 0) [ (Pair 1 4 2 Unit) ] - - location: 53 (remaining gas: 1039956.351 units remaining) + - location: 53 (just consumed gas: 0.015) [ (Pair 1 4 2 Unit) ] - - location: 59 (remaining gas: 1039956.341 units remaining) + - location: 59 (just consumed gas: 0.010) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 60 (remaining gas: 1039956.319 units remaining) + - location: 60 (just consumed gas: 0.022) [ 2 (Pair 1 4 2 Unit) ] - - location: 62 (remaining gas: 1039956.309 units remaining) + - location: 62 (just consumed gas: 0.010) [ 2 2 (Pair 1 4 2 Unit) ] - - location: 67 (remaining gas: 1039956.274 units remaining) + - location: 67 (just consumed gas: 0.035) [ 0 (Pair 1 4 2 Unit) ] - - location: 68 (remaining gas: 1039956.264 units remaining) + - location: 68 (just consumed gas: 0.010) [ True (Pair 1 4 2 Unit) ] - - location: 69 (remaining gas: 1039956.264 units remaining) + - location: 69 (just consumed gas: 0) [ (Pair 1 4 2 Unit) ] - - location: 69 (remaining gas: 1039956.249 units remaining) + - location: 69 (just consumed gas: 0.015) [ (Pair 1 4 2 Unit) ] - - location: 75 (remaining gas: 1039956.239 units remaining) + - location: 75 (just consumed gas: 0.010) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 76 (remaining gas: 1039956.216 units remaining) + - location: 76 (just consumed gas: 0.023) [ Unit (Pair 1 4 2 Unit) ] - - location: 78 (remaining gas: 1039956.206 units remaining) + - location: 78 (just consumed gas: 0.010) [ Unit Unit (Pair 1 4 2 Unit) ] - - location: 81 (remaining gas: 1039956.196 units remaining) + - location: 81 (just consumed gas: 0.010) [ 0 (Pair 1 4 2 Unit) ] - - location: 82 (remaining gas: 1039956.186 units remaining) + - location: 82 (just consumed gas: 0.010) [ True (Pair 1 4 2 Unit) ] - - location: 83 (remaining gas: 1039956.186 units remaining) + - location: 83 (just consumed gas: 0) [ (Pair 1 4 2 Unit) ] - - location: 83 (remaining gas: 1039956.171 units remaining) + - location: 83 (just consumed gas: 0.015) [ (Pair 1 4 2 Unit) ] - - location: 89 (remaining gas: 1039956.161 units remaining) + - location: 89 (just consumed gas: 0.010) [ ] - - location: 90 (remaining gas: 1039956.151 units remaining) + - location: 90 (just consumed gas: 0.010) [ Unit ] - - location: 91 (remaining gas: 1039956.141 units remaining) + - location: 91 (just consumed gas: 0.010) [ {} Unit ] - - location: 93 (remaining gas: 1039956.131 units remaining) + - location: 93 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" index 33cf1133e830e08ea56fbce3bfa544057d024f2f..5779d01f47f12794d30330c97362baba982ab61f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039987.156 units remaining) + - location: 16 (just consumed gas: 12.844) [ (Pair (Pair 1 4 2 Unit) None) ] - - location: 16 (remaining gas: 1039987.146 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 1 4 2 Unit) ] - - location: 17 (remaining gas: 1039987.136 units remaining) + - location: 17 (just consumed gas: 0.010) [ 2 (Pair 1 4 2 Unit) ] - - location: 20 (remaining gas: 1039987.115 units remaining) + - location: 20 (just consumed gas: 0.021) [ (Pair 2 4 2 Unit) ] - - location: 22 (remaining gas: 1039987.105 units remaining) + - location: 22 (just consumed gas: 0.010) [ "toto" (Pair 2 4 2 Unit) ] - - location: 25 (remaining gas: 1039987.079 units remaining) + - location: 25 (just consumed gas: 0.026) [ (Pair 2 4 "toto" Unit) ] - - location: 27 (remaining gas: 1039987.069 units remaining) + - location: 27 (just consumed gas: 0.010) [ 0x01 (Pair 2 4 "toto" Unit) ] - - location: 30 (remaining gas: 1039987.042 units remaining) + - location: 30 (just consumed gas: 0.027) [ (Pair 2 4 "toto" 0x01) ] - - location: 32 (remaining gas: 1039987.032 units remaining) + - location: 32 (just consumed gas: 0.010) [ (Some (Pair 2 4 "toto" 0x01)) ] - - location: 33 (remaining gas: 1039987.022 units remaining) + - location: 33 (just consumed gas: 0.010) [ {} (Some (Pair 2 4 "toto" 0x01)) ] - - location: 35 (remaining gas: 1039987.012 units remaining) + - location: 35 (just consumed gas: 0.010) [ (Pair {} (Some (Pair 2 4 "toto" 0x01))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out index 434d34da249d56c2246632943d071e9d6c15be70..8d50977139a8a204f1de3ccece745ac089e3c238 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out @@ -7,33 +7,33 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039987.333 units remaining) + - location: 11 (just consumed gas: 12.667) [ (Pair Unit 1 4 2 Unit) ] - - location: 11 (remaining gas: 1039987.323 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 1 4 2 Unit) ] - - location: 12 (remaining gas: 1039987.313 units remaining) + - location: 12 (just consumed gas: 0.010) [ 2 (Pair 1 4 2 Unit) ] - - location: 15 (remaining gas: 1039987.292 units remaining) + - location: 15 (just consumed gas: 0.021) [ (Pair 2 4 2 Unit) ] - - location: 17 (remaining gas: 1039987.282 units remaining) + - location: 17 (just consumed gas: 0.010) [ 12 (Pair 2 4 2 Unit) ] - - location: 20 (remaining gas: 1039987.259 units remaining) + - location: 20 (just consumed gas: 0.023) [ (Pair 2 12 2 Unit) ] - - location: 22 (remaining gas: 1039987.249 units remaining) + - location: 22 (just consumed gas: 0.010) [ 8 (Pair 2 12 2 Unit) ] - - location: 25 (remaining gas: 1039987.223 units remaining) + - location: 25 (just consumed gas: 0.026) [ (Pair 2 12 8 Unit) ] - - location: 27 (remaining gas: 1039987.213 units remaining) + - location: 27 (just consumed gas: 0.010) [ Unit (Pair 2 12 8 Unit) ] - - location: 28 (remaining gas: 1039987.186 units remaining) + - location: 28 (just consumed gas: 0.027) [ (Pair 2 12 8 Unit) ] - - location: 30 (remaining gas: 1039987.176 units remaining) + - location: 30 (just consumed gas: 0.010) [ {} (Pair 2 12 8 Unit) ] - - location: 32 (remaining gas: 1039987.166 units remaining) + - location: 32 (just consumed gas: 0.010) [ (Pair {} 2 12 8 Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out index c0d103246fe0bf7b760f09ba2879aa36264ba208..43980b7c18bc93f127e447bb5586bf5eaf912bb4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.779 units remaining) + - location: 10 (just consumed gas: 8.221) [ (Pair Unit 0 0 0) ] - - location: 10 (remaining gas: 1039991.769 units remaining) + - location: 10 (just consumed gas: 0.010) [ ] - - location: 11 (remaining gas: 1039991.759 units remaining) + - location: 11 (just consumed gas: 0.010) [ 3 ] - - location: 14 (remaining gas: 1039991.749 units remaining) + - location: 14 (just consumed gas: 0.010) [ 2 3 ] - - location: 17 (remaining gas: 1039991.739 units remaining) + - location: 17 (just consumed gas: 0.010) [ 1 2 3 ] - - location: 20 (remaining gas: 1039991.729 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} 1 2 3 ] - - location: 22 (remaining gas: 1039991.715 units remaining) + - location: 22 (just consumed gas: 0.014) [ (Pair {} 1 2 3) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out index d5df0593941a4090590eb7a48e91437cc18322c3..95fc00a5decd57b0a5a62d6e5110a994b186174e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out @@ -7,392 +7,392 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039801.028 units remaining) + - location: 7 (just consumed gas: 198.972) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039801.018 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039801.008 units remaining) + - location: 8 (just consumed gas: 0.010) [ True ] - - location: 11 (remaining gas: 1039800.998 units remaining) + - location: 11 (just consumed gas: 0.010) [ True True ] - - location: 12 (remaining gas: 1039800.963 units remaining) + - location: 12 (just consumed gas: 0.035) [ 0 ] - - location: 14 (remaining gas: 1039800.953 units remaining) + - location: 14 (just consumed gas: 0.010) [ True ] - - location: 15 (remaining gas: 1039800.953 units remaining) + - location: 15 (just consumed gas: 0) [ ] - - location: 15 (remaining gas: 1039800.938 units remaining) + - location: 15 (just consumed gas: 0.015) [ ] - - location: 21 (remaining gas: 1039800.928 units remaining) + - location: 21 (just consumed gas: 0.010) [ False ] - - location: 24 (remaining gas: 1039800.918 units remaining) + - location: 24 (just consumed gas: 0.010) [ False False ] - - location: 25 (remaining gas: 1039800.883 units remaining) + - location: 25 (just consumed gas: 0.035) [ 0 ] - - location: 27 (remaining gas: 1039800.873 units remaining) + - location: 27 (just consumed gas: 0.010) [ True ] - - location: 28 (remaining gas: 1039800.873 units remaining) + - location: 28 (just consumed gas: 0) [ ] - - location: 28 (remaining gas: 1039800.858 units remaining) + - location: 28 (just consumed gas: 0.015) [ ] - - location: 34 (remaining gas: 1039800.848 units remaining) + - location: 34 (just consumed gas: 0.010) [ False ] - - location: 37 (remaining gas: 1039800.838 units remaining) + - location: 37 (just consumed gas: 0.010) [ True False ] - - location: 40 (remaining gas: 1039800.803 units remaining) + - location: 40 (just consumed gas: 0.035) [ 1 ] - - location: 42 (remaining gas: 1039800.793 units remaining) + - location: 42 (just consumed gas: 0.010) [ True ] - - location: 43 (remaining gas: 1039800.793 units remaining) + - location: 43 (just consumed gas: 0) [ ] - - location: 43 (remaining gas: 1039800.778 units remaining) + - location: 43 (just consumed gas: 0.015) [ ] - - location: 49 (remaining gas: 1039800.768 units remaining) + - location: 49 (just consumed gas: 0.010) [ True ] - - location: 52 (remaining gas: 1039800.758 units remaining) + - location: 52 (just consumed gas: 0.010) [ False True ] - - location: 55 (remaining gas: 1039800.723 units remaining) + - location: 55 (just consumed gas: 0.035) [ -1 ] - - location: 57 (remaining gas: 1039800.713 units remaining) + - location: 57 (just consumed gas: 0.010) [ True ] - - location: 58 (remaining gas: 1039800.713 units remaining) + - location: 58 (just consumed gas: 0) [ ] - - location: 58 (remaining gas: 1039800.698 units remaining) + - location: 58 (just consumed gas: 0.015) [ ] - - location: 64 (remaining gas: 1039800.688 units remaining) + - location: 64 (just consumed gas: 0.010) [ 0xaabbcc ] - - location: 67 (remaining gas: 1039800.678 units remaining) + - location: 67 (just consumed gas: 0.010) [ 0xaabbcc 0xaabbcc ] - - location: 68 (remaining gas: 1039800.643 units remaining) + - location: 68 (just consumed gas: 0.035) [ 0 ] - - location: 70 (remaining gas: 1039800.633 units remaining) + - location: 70 (just consumed gas: 0.010) [ True ] - - location: 71 (remaining gas: 1039800.633 units remaining) + - location: 71 (just consumed gas: 0) [ ] - - location: 71 (remaining gas: 1039800.618 units remaining) + - location: 71 (just consumed gas: 0.015) [ ] - - location: 77 (remaining gas: 1039800.608 units remaining) + - location: 77 (just consumed gas: 0.010) [ 0x ] - - location: 80 (remaining gas: 1039800.598 units remaining) + - location: 80 (just consumed gas: 0.010) [ 0x 0x ] - - location: 83 (remaining gas: 1039800.563 units remaining) + - location: 83 (just consumed gas: 0.035) [ 0 ] - - location: 85 (remaining gas: 1039800.553 units remaining) + - location: 85 (just consumed gas: 0.010) [ True ] - - location: 86 (remaining gas: 1039800.553 units remaining) + - location: 86 (just consumed gas: 0) [ ] - - location: 86 (remaining gas: 1039800.538 units remaining) + - location: 86 (just consumed gas: 0.015) [ ] - - location: 92 (remaining gas: 1039800.528 units remaining) + - location: 92 (just consumed gas: 0.010) [ 0x ] - - location: 95 (remaining gas: 1039800.518 units remaining) + - location: 95 (just consumed gas: 0.010) [ 0x01 0x ] - - location: 98 (remaining gas: 1039800.483 units remaining) + - location: 98 (just consumed gas: 0.035) [ 1 ] - - location: 100 (remaining gas: 1039800.473 units remaining) + - location: 100 (just consumed gas: 0.010) [ True ] - - location: 101 (remaining gas: 1039800.473 units remaining) + - location: 101 (just consumed gas: 0) [ ] - - location: 101 (remaining gas: 1039800.458 units remaining) + - location: 101 (just consumed gas: 0.015) [ ] - - location: 107 (remaining gas: 1039800.448 units remaining) + - location: 107 (just consumed gas: 0.010) [ 0x01 ] - - location: 110 (remaining gas: 1039800.438 units remaining) + - location: 110 (just consumed gas: 0.010) [ 0x02 0x01 ] - - location: 113 (remaining gas: 1039800.403 units remaining) + - location: 113 (just consumed gas: 0.035) [ 1 ] - - location: 115 (remaining gas: 1039800.393 units remaining) + - location: 115 (just consumed gas: 0.010) [ True ] - - location: 116 (remaining gas: 1039800.393 units remaining) + - location: 116 (just consumed gas: 0) [ ] - - location: 116 (remaining gas: 1039800.378 units remaining) + - location: 116 (just consumed gas: 0.015) [ ] - - location: 122 (remaining gas: 1039800.368 units remaining) + - location: 122 (just consumed gas: 0.010) [ 0x02 ] - - location: 125 (remaining gas: 1039800.358 units remaining) + - location: 125 (just consumed gas: 0.010) [ 0x01 0x02 ] - - location: 128 (remaining gas: 1039800.323 units remaining) + - location: 128 (just consumed gas: 0.035) [ -1 ] - - location: 130 (remaining gas: 1039800.313 units remaining) + - location: 130 (just consumed gas: 0.010) [ True ] - - location: 131 (remaining gas: 1039800.313 units remaining) + - location: 131 (just consumed gas: 0) [ ] - - location: 131 (remaining gas: 1039800.298 units remaining) + - location: 131 (just consumed gas: 0.015) [ ] - - location: 137 (remaining gas: 1039800.288 units remaining) + - location: 137 (just consumed gas: 0.010) [ 1 ] - - location: 140 (remaining gas: 1039800.278 units remaining) + - location: 140 (just consumed gas: 0.010) [ 1 1 ] - - location: 141 (remaining gas: 1039800.243 units remaining) + - location: 141 (just consumed gas: 0.035) [ 0 ] - - location: 143 (remaining gas: 1039800.233 units remaining) + - location: 143 (just consumed gas: 0.010) [ True ] - - location: 144 (remaining gas: 1039800.233 units remaining) + - location: 144 (just consumed gas: 0) [ ] - - location: 144 (remaining gas: 1039800.218 units remaining) + - location: 144 (just consumed gas: 0.015) [ ] - - location: 150 (remaining gas: 1039800.208 units remaining) + - location: 150 (just consumed gas: 0.010) [ 10 ] - - location: 153 (remaining gas: 1039800.198 units remaining) + - location: 153 (just consumed gas: 0.010) [ 5 10 ] - - location: 156 (remaining gas: 1039800.163 units remaining) + - location: 156 (just consumed gas: 0.035) [ -1 ] - - location: 158 (remaining gas: 1039800.153 units remaining) + - location: 158 (just consumed gas: 0.010) [ True ] - - location: 159 (remaining gas: 1039800.153 units remaining) + - location: 159 (just consumed gas: 0) [ ] - - location: 159 (remaining gas: 1039800.138 units remaining) + - location: 159 (just consumed gas: 0.015) [ ] - - location: 165 (remaining gas: 1039800.128 units remaining) + - location: 165 (just consumed gas: 0.010) [ -4 ] - - location: 168 (remaining gas: 1039800.118 units remaining) + - location: 168 (just consumed gas: 0.010) [ 1923 -4 ] - - location: 171 (remaining gas: 1039800.083 units remaining) + - location: 171 (just consumed gas: 0.035) [ 1 ] - - location: 173 (remaining gas: 1039800.073 units remaining) + - location: 173 (just consumed gas: 0.010) [ True ] - - location: 174 (remaining gas: 1039800.073 units remaining) + - location: 174 (just consumed gas: 0) [ ] - - location: 174 (remaining gas: 1039800.058 units remaining) + - location: 174 (just consumed gas: 0.015) [ ] - - location: 180 (remaining gas: 1039800.048 units remaining) + - location: 180 (just consumed gas: 0.010) [ 1 ] - - location: 183 (remaining gas: 1039800.038 units remaining) + - location: 183 (just consumed gas: 0.010) [ 1 1 ] - - location: 184 (remaining gas: 1039800.003 units remaining) + - location: 184 (just consumed gas: 0.035) [ 0 ] - - location: 186 (remaining gas: 1039799.993 units remaining) + - location: 186 (just consumed gas: 0.010) [ True ] - - location: 187 (remaining gas: 1039799.993 units remaining) + - location: 187 (just consumed gas: 0) [ ] - - location: 187 (remaining gas: 1039799.978 units remaining) + - location: 187 (just consumed gas: 0.015) [ ] - - location: 193 (remaining gas: 1039799.968 units remaining) + - location: 193 (just consumed gas: 0.010) [ 10 ] - - location: 196 (remaining gas: 1039799.958 units remaining) + - location: 196 (just consumed gas: 0.010) [ 5 10 ] - - location: 199 (remaining gas: 1039799.923 units remaining) + - location: 199 (just consumed gas: 0.035) [ -1 ] - - location: 201 (remaining gas: 1039799.913 units remaining) + - location: 201 (just consumed gas: 0.010) [ True ] - - location: 202 (remaining gas: 1039799.913 units remaining) + - location: 202 (just consumed gas: 0) [ ] - - location: 202 (remaining gas: 1039799.898 units remaining) + - location: 202 (just consumed gas: 0.015) [ ] - - location: 208 (remaining gas: 1039799.888 units remaining) + - location: 208 (just consumed gas: 0.010) [ 4 ] - - location: 211 (remaining gas: 1039799.878 units remaining) + - location: 211 (just consumed gas: 0.010) [ 1923 4 ] - - location: 214 (remaining gas: 1039799.843 units remaining) + - location: 214 (just consumed gas: 0.035) [ 1 ] - - location: 216 (remaining gas: 1039799.833 units remaining) + - location: 216 (just consumed gas: 0.010) [ True ] - - location: 217 (remaining gas: 1039799.833 units remaining) + - location: 217 (just consumed gas: 0) [ ] - - location: 217 (remaining gas: 1039799.818 units remaining) + - location: 217 (just consumed gas: 0.015) [ ] - - location: 223 (remaining gas: 1039799.808 units remaining) + - location: 223 (just consumed gas: 0.010) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 226 (remaining gas: 1039799.798 units remaining) + - location: 226 (just consumed gas: 0.010) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 227 (remaining gas: 1039799.762 units remaining) + - location: 227 (just consumed gas: 0.036) [ 0 ] - - location: 229 (remaining gas: 1039799.752 units remaining) + - location: 229 (just consumed gas: 0.010) [ True ] - - location: 230 (remaining gas: 1039799.752 units remaining) + - location: 230 (just consumed gas: 0) [ ] - - location: 230 (remaining gas: 1039799.737 units remaining) + - location: 230 (just consumed gas: 0.015) [ ] - - location: 236 (remaining gas: 1039799.727 units remaining) + - location: 236 (just consumed gas: 0.010) [ "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" ] - - location: 239 (remaining gas: 1039799.717 units remaining) + - location: 239 (just consumed gas: 0.010) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" ] - - location: 242 (remaining gas: 1039799.681 units remaining) + - location: 242 (just consumed gas: 0.036) [ -1 ] - - location: 244 (remaining gas: 1039799.671 units remaining) + - location: 244 (just consumed gas: 0.010) [ True ] - - location: 245 (remaining gas: 1039799.671 units remaining) + - location: 245 (just consumed gas: 0) [ ] - - location: 245 (remaining gas: 1039799.656 units remaining) + - location: 245 (just consumed gas: 0.015) [ ] - - location: 251 (remaining gas: 1039799.646 units remaining) + - location: 251 (just consumed gas: 0.010) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 254 (remaining gas: 1039799.636 units remaining) + - location: 254 (just consumed gas: 0.010) [ "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 257 (remaining gas: 1039799.600 units remaining) + - location: 257 (just consumed gas: 0.036) [ 1 ] - - location: 259 (remaining gas: 1039799.590 units remaining) + - location: 259 (just consumed gas: 0.010) [ True ] - - location: 260 (remaining gas: 1039799.590 units remaining) + - location: 260 (just consumed gas: 0) [ ] - - location: 260 (remaining gas: 1039799.575 units remaining) + - location: 260 (just consumed gas: 0.015) [ ] - - location: 266 (remaining gas: 1039799.565 units remaining) + - location: 266 (just consumed gas: 0.010) [ 1 ] - - location: 269 (remaining gas: 1039799.555 units remaining) + - location: 269 (just consumed gas: 0.010) [ 1 1 ] - - location: 270 (remaining gas: 1039799.520 units remaining) + - location: 270 (just consumed gas: 0.035) [ 0 ] - - location: 272 (remaining gas: 1039799.510 units remaining) + - location: 272 (just consumed gas: 0.010) [ True ] - - location: 273 (remaining gas: 1039799.510 units remaining) + - location: 273 (just consumed gas: 0) [ ] - - location: 273 (remaining gas: 1039799.495 units remaining) + - location: 273 (just consumed gas: 0.015) [ ] - - location: 279 (remaining gas: 1039799.485 units remaining) + - location: 279 (just consumed gas: 0.010) [ 10 ] - - location: 282 (remaining gas: 1039799.475 units remaining) + - location: 282 (just consumed gas: 0.010) [ 5 10 ] - - location: 285 (remaining gas: 1039799.440 units remaining) + - location: 285 (just consumed gas: 0.035) [ -1 ] - - location: 287 (remaining gas: 1039799.430 units remaining) + - location: 287 (just consumed gas: 0.010) [ True ] - - location: 288 (remaining gas: 1039799.430 units remaining) + - location: 288 (just consumed gas: 0) [ ] - - location: 288 (remaining gas: 1039799.415 units remaining) + - location: 288 (just consumed gas: 0.015) [ ] - - location: 294 (remaining gas: 1039799.405 units remaining) + - location: 294 (just consumed gas: 0.010) [ 4 ] - - location: 297 (remaining gas: 1039799.395 units remaining) + - location: 297 (just consumed gas: 0.010) [ 1923 4 ] - - location: 300 (remaining gas: 1039799.360 units remaining) + - location: 300 (just consumed gas: 0.035) [ 1 ] - - location: 302 (remaining gas: 1039799.350 units remaining) + - location: 302 (just consumed gas: 0.010) [ True ] - - location: 303 (remaining gas: 1039799.350 units remaining) + - location: 303 (just consumed gas: 0) [ ] - - location: 303 (remaining gas: 1039799.335 units remaining) + - location: 303 (just consumed gas: 0.015) [ ] - - location: 309 (remaining gas: 1039799.325 units remaining) + - location: 309 (just consumed gas: 0.010) [ "AABBCC" ] - - location: 312 (remaining gas: 1039799.315 units remaining) + - location: 312 (just consumed gas: 0.010) [ "AABBCC" "AABBCC" ] - - location: 313 (remaining gas: 1039799.280 units remaining) + - location: 313 (just consumed gas: 0.035) [ 0 ] - - location: 315 (remaining gas: 1039799.270 units remaining) + - location: 315 (just consumed gas: 0.010) [ True ] - - location: 316 (remaining gas: 1039799.270 units remaining) + - location: 316 (just consumed gas: 0) [ ] - - location: 316 (remaining gas: 1039799.255 units remaining) + - location: 316 (just consumed gas: 0.015) [ ] - - location: 322 (remaining gas: 1039799.245 units remaining) + - location: 322 (just consumed gas: 0.010) [ "" ] - - location: 325 (remaining gas: 1039799.235 units remaining) + - location: 325 (just consumed gas: 0.010) [ "" "" ] - - location: 328 (remaining gas: 1039799.200 units remaining) + - location: 328 (just consumed gas: 0.035) [ 0 ] - - location: 330 (remaining gas: 1039799.190 units remaining) + - location: 330 (just consumed gas: 0.010) [ True ] - - location: 331 (remaining gas: 1039799.190 units remaining) + - location: 331 (just consumed gas: 0) [ ] - - location: 331 (remaining gas: 1039799.175 units remaining) + - location: 331 (just consumed gas: 0.015) [ ] - - location: 337 (remaining gas: 1039799.165 units remaining) + - location: 337 (just consumed gas: 0.010) [ "" ] - - location: 340 (remaining gas: 1039799.155 units remaining) + - location: 340 (just consumed gas: 0.010) [ "a" "" ] - - location: 343 (remaining gas: 1039799.120 units remaining) + - location: 343 (just consumed gas: 0.035) [ 1 ] - - location: 345 (remaining gas: 1039799.110 units remaining) + - location: 345 (just consumed gas: 0.010) [ True ] - - location: 346 (remaining gas: 1039799.110 units remaining) + - location: 346 (just consumed gas: 0) [ ] - - location: 346 (remaining gas: 1039799.095 units remaining) + - location: 346 (just consumed gas: 0.015) [ ] - - location: 352 (remaining gas: 1039799.085 units remaining) + - location: 352 (just consumed gas: 0.010) [ "a" ] - - location: 355 (remaining gas: 1039799.075 units remaining) + - location: 355 (just consumed gas: 0.010) [ "b" "a" ] - - location: 358 (remaining gas: 1039799.040 units remaining) + - location: 358 (just consumed gas: 0.035) [ 1 ] - - location: 360 (remaining gas: 1039799.030 units remaining) + - location: 360 (just consumed gas: 0.010) [ True ] - - location: 361 (remaining gas: 1039799.030 units remaining) + - location: 361 (just consumed gas: 0) [ ] - - location: 361 (remaining gas: 1039799.015 units remaining) + - location: 361 (just consumed gas: 0.015) [ ] - - location: 367 (remaining gas: 1039799.005 units remaining) + - location: 367 (just consumed gas: 0.010) [ "b" ] - - location: 370 (remaining gas: 1039798.995 units remaining) + - location: 370 (just consumed gas: 0.010) [ "a" "b" ] - - location: 373 (remaining gas: 1039798.960 units remaining) + - location: 373 (just consumed gas: 0.035) [ -1 ] - - location: 375 (remaining gas: 1039798.950 units remaining) + - location: 375 (just consumed gas: 0.010) [ True ] - - location: 376 (remaining gas: 1039798.950 units remaining) + - location: 376 (just consumed gas: 0) [ ] - - location: 376 (remaining gas: 1039798.935 units remaining) + - location: 376 (just consumed gas: 0.015) [ ] - - location: 382 (remaining gas: 1039798.925 units remaining) + - location: 382 (just consumed gas: 0.010) [ "2019-09-16T08:38:05Z" ] - - location: 385 (remaining gas: 1039798.915 units remaining) + - location: 385 (just consumed gas: 0.010) [ "2019-09-16T08:38:05Z" "2019-09-16T08:38:05Z" ] - - location: 386 (remaining gas: 1039798.880 units remaining) + - location: 386 (just consumed gas: 0.035) [ 0 ] - - location: 388 (remaining gas: 1039798.870 units remaining) + - location: 388 (just consumed gas: 0.010) [ True ] - - location: 389 (remaining gas: 1039798.870 units remaining) + - location: 389 (just consumed gas: 0) [ ] - - location: 389 (remaining gas: 1039798.855 units remaining) + - location: 389 (just consumed gas: 0.015) [ ] - - location: 395 (remaining gas: 1039798.845 units remaining) + - location: 395 (just consumed gas: 0.010) [ "2017-09-16T08:38:04Z" ] - - location: 398 (remaining gas: 1039798.835 units remaining) + - location: 398 (just consumed gas: 0.010) [ "2019-09-16T08:38:05Z" "2017-09-16T08:38:04Z" ] - - location: 401 (remaining gas: 1039798.800 units remaining) + - location: 401 (just consumed gas: 0.035) [ 1 ] - - location: 403 (remaining gas: 1039798.790 units remaining) + - location: 403 (just consumed gas: 0.010) [ True ] - - location: 404 (remaining gas: 1039798.790 units remaining) + - location: 404 (just consumed gas: 0) [ ] - - location: 404 (remaining gas: 1039798.775 units remaining) + - location: 404 (just consumed gas: 0.015) [ ] - - location: 410 (remaining gas: 1039798.765 units remaining) + - location: 410 (just consumed gas: 0.010) [ "2019-09-16T08:38:05Z" ] - - location: 413 (remaining gas: 1039798.755 units remaining) + - location: 413 (just consumed gas: 0.010) [ "2019-09-16T08:38:04Z" "2019-09-16T08:38:05Z" ] - - location: 416 (remaining gas: 1039798.720 units remaining) + - location: 416 (just consumed gas: 0.035) [ -1 ] - - location: 418 (remaining gas: 1039798.710 units remaining) + - location: 418 (just consumed gas: 0.010) [ True ] - - location: 419 (remaining gas: 1039798.710 units remaining) + - location: 419 (just consumed gas: 0) [ ] - - location: 419 (remaining gas: 1039798.695 units remaining) + - location: 419 (just consumed gas: 0.015) [ ] - - location: 425 (remaining gas: 1039798.685 units remaining) + - location: 425 (just consumed gas: 0.010) [ Unit ] - - location: 426 (remaining gas: 1039798.675 units remaining) + - location: 426 (just consumed gas: 0.010) [ {} Unit ] - - location: 428 (remaining gas: 1039798.665 units remaining) + - location: 428 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out index b715861c8589b08e0171a303205875bfc7d1cb54..3445f9d423cb82d22479b8ae8774d79602072c0d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out @@ -12,326 +12,326 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039970.367 units remaining) + - location: 10 (just consumed gas: 29.633) [ (Pair { -9999999 ; -1 ; 0 ; 1 ; 9999999 } {}) ] - - location: 10 (remaining gas: 1039970.357 units remaining) + - location: 10 (just consumed gas: 0.010) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 11 (remaining gas: 1039970.347 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 14 (remaining gas: 1039970.347 units remaining) + - location: 14 (just consumed gas: 0) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 16 (remaining gas: 1039970.337 units remaining) + - location: 16 (just consumed gas: 0.010) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.337 units remaining) + - location: 17 (just consumed gas: 0) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.327 units remaining) + - location: 19 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.312 units remaining) + - location: 17 (just consumed gas: 0.015) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.302 units remaining) + - location: 19 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.287 units remaining) + - location: 17 (just consumed gas: 0.015) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.277 units remaining) + - location: 19 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.262 units remaining) + - location: 17 (just consumed gas: 0.015) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.252 units remaining) + - location: 19 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.237 units remaining) + - location: 17 (just consumed gas: 0.015) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.227 units remaining) + - location: 19 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.212 units remaining) + - location: 17 (just consumed gas: 0.015) [ { False ; False ; True ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 14 (remaining gas: 1039970.187 units remaining) + - location: 14 (just consumed gas: 0.025) [ {} { False ; False ; True ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 20 (remaining gas: 1039970.177 units remaining) + - location: 20 (just consumed gas: 0.010) [ { False ; False ; True ; False ; False } {} { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 21 (remaining gas: 1039970.167 units remaining) + - location: 21 (just consumed gas: 0.010) [ { { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 22 (remaining gas: 1039970.167 units remaining) + - location: 22 (just consumed gas: 0) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 24 (remaining gas: 1039970.157 units remaining) + - location: 24 (just consumed gas: 0.010) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.157 units remaining) + - location: 25 (just consumed gas: 0) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.147 units remaining) + - location: 27 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.132 units remaining) + - location: 25 (just consumed gas: 0.015) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.122 units remaining) + - location: 27 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.107 units remaining) + - location: 25 (just consumed gas: 0.015) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.097 units remaining) + - location: 27 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.082 units remaining) + - location: 25 (just consumed gas: 0.015) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.072 units remaining) + - location: 27 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.057 units remaining) + - location: 25 (just consumed gas: 0.015) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.047 units remaining) + - location: 27 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.032 units remaining) + - location: 25 (just consumed gas: 0.015) [ { True ; True ; False ; True ; True } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 22 (remaining gas: 1039970.007 units remaining) + - location: 22 (just consumed gas: 0.025) [ { { False ; False ; True ; False ; False } } { True ; True ; False ; True ; True } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 28 (remaining gas: 1039969.997 units remaining) + - location: 28 (just consumed gas: 0.010) [ { True ; True ; False ; True ; True } { { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 29 (remaining gas: 1039969.987 units remaining) + - location: 29 (just consumed gas: 0.010) [ { { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 30 (remaining gas: 1039969.987 units remaining) + - location: 30 (just consumed gas: 0) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 32 (remaining gas: 1039969.977 units remaining) + - location: 32 (just consumed gas: 0.010) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.977 units remaining) + - location: 33 (just consumed gas: 0) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039969.967 units remaining) + - location: 35 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.952 units remaining) + - location: 33 (just consumed gas: 0.015) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039969.942 units remaining) + - location: 35 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.927 units remaining) + - location: 33 (just consumed gas: 0.015) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039969.917 units remaining) + - location: 35 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.902 units remaining) + - location: 33 (just consumed gas: 0.015) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039969.892 units remaining) + - location: 35 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.877 units remaining) + - location: 33 (just consumed gas: 0.015) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039969.867 units remaining) + - location: 35 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.852 units remaining) + - location: 33 (just consumed gas: 0.015) [ { True ; True ; True ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 30 (remaining gas: 1039969.827 units remaining) + - 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 (remaining gas: 1039969.817 units remaining) + - 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 (remaining gas: 1039969.807 units remaining) + - 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 (remaining gas: 1039969.807 units remaining) + - location: 38 (just consumed gas: 0) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 40 (remaining gas: 1039969.797 units remaining) + - location: 40 (just consumed gas: 0.010) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.797 units remaining) + - location: 41 (just consumed gas: 0) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.787 units remaining) + - location: 43 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.772 units remaining) + - location: 41 (just consumed gas: 0.015) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.762 units remaining) + - location: 43 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.747 units remaining) + - location: 41 (just consumed gas: 0.015) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.737 units remaining) + - location: 43 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.722 units remaining) + - location: 41 (just consumed gas: 0.015) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.712 units remaining) + - location: 43 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.697 units remaining) + - location: 41 (just consumed gas: 0.015) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.687 units remaining) + - location: 43 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.672 units remaining) + - location: 41 (just consumed gas: 0.015) [ { True ; True ; False ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 38 (remaining gas: 1039969.647 units remaining) + - 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 (remaining gas: 1039969.637 units remaining) + - 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 (remaining gas: 1039969.627 units remaining) + - 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 (remaining gas: 1039969.627 units remaining) + - location: 46 (just consumed gas: 0) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 48 (remaining gas: 1039969.617 units remaining) + - location: 48 (just consumed gas: 0.010) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.617 units remaining) + - location: 49 (just consumed gas: 0) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.607 units remaining) + - location: 51 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.592 units remaining) + - location: 49 (just consumed gas: 0.015) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.582 units remaining) + - location: 51 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.567 units remaining) + - location: 49 (just consumed gas: 0.015) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.557 units remaining) + - location: 51 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.542 units remaining) + - location: 49 (just consumed gas: 0.015) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.532 units remaining) + - location: 51 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.517 units remaining) + - location: 49 (just consumed gas: 0.015) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.507 units remaining) + - location: 51 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.492 units remaining) + - location: 49 (just consumed gas: 0.015) [ { False ; False ; True ; True ; True } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 46 (remaining gas: 1039969.467 units remaining) + - 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 (remaining gas: 1039969.457 units remaining) + - 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 (remaining gas: 1039969.447 units remaining) + - 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 (remaining gas: 1039969.447 units remaining) + - location: 54 (just consumed gas: 0) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 56 (remaining gas: 1039969.447 units remaining) + - location: 56 (just consumed gas: 0) [ -9999999 ] - - location: 58 (remaining gas: 1039969.437 units remaining) + - location: 58 (just consumed gas: 0.010) [ False ] - - location: 56 (remaining gas: 1039969.422 units remaining) + - location: 56 (just consumed gas: 0.015) [ -1 ] - - location: 58 (remaining gas: 1039969.412 units remaining) + - location: 58 (just consumed gas: 0.010) [ False ] - - location: 56 (remaining gas: 1039969.397 units remaining) + - location: 56 (just consumed gas: 0.015) [ 0 ] - - location: 58 (remaining gas: 1039969.387 units remaining) + - location: 58 (just consumed gas: 0.010) [ False ] - - location: 56 (remaining gas: 1039969.372 units remaining) + - location: 56 (just consumed gas: 0.015) [ 1 ] - - location: 58 (remaining gas: 1039969.362 units remaining) + - location: 58 (just consumed gas: 0.010) [ True ] - - location: 56 (remaining gas: 1039969.347 units remaining) + - location: 56 (just consumed gas: 0.015) [ 9999999 ] - - location: 58 (remaining gas: 1039969.337 units remaining) + - location: 58 (just consumed gas: 0.010) [ True ] - - location: 56 (remaining gas: 1039969.322 units remaining) + - location: 56 (just consumed gas: 0.015) [ { False ; False ; False ; True ; True } ] - - location: 54 (remaining gas: 1039969.297 units remaining) + - 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 (remaining gas: 1039969.287 units remaining) + - 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 (remaining gas: 1039969.277 units remaining) + - 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 (remaining gas: 1039969.267 units remaining) + - location: 61 (just consumed gas: 0.010) [ {} { { False ; False ; False ; True ; True } ; { False ; False ; True ; True ; True } ; @@ -339,7 +339,7 @@ trace { True ; True ; True ; False ; False } ; { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } ] - - location: 63 (remaining gas: 1039969.257 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair {} { { False ; False ; False ; True ; True } ; { False ; False ; True ; True ; True } ; diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" index 5e6851411f0808eb1918a632f8bf5b6a25c49434..1eba9a39c8f7f7fd87d62068221f388f1c96c52f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" @@ -7,22 +7,22 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.385 units remaining) + - location: 9 (just consumed gas: 6.615) [ (Pair { "World!" } {}) ] - - location: 9 (remaining gas: 1039993.375 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "World!" } ] - - location: 10 (remaining gas: 1039993.375 units remaining) + - location: 10 (just consumed gas: 0) [ "World!" ] - - location: 12 (remaining gas: 1039993.365 units remaining) + - location: 12 (just consumed gas: 0.010) [ "Hello " "World!" ] - - location: 15 (remaining gas: 1039993.314 units remaining) + - location: 15 (just consumed gas: 0.051) [ "Hello World!" ] - - location: 10 (remaining gas: 1039993.299 units remaining) + - location: 10 (just consumed gas: 0.015) [ { "Hello World!" } ] - - location: 16 (remaining gas: 1039993.289 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} { "Hello World!" } ] - - location: 18 (remaining gas: 1039993.279 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} { "Hello World!" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" index 9cbd1acbef402db655ba57b5aa8741c9f204777d..ee43f43d076f36c859bd117ad3ef84ca437d39c0 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.231 units remaining) + - location: 9 (just consumed gas: 6.769) [ (Pair { "test1" ; "test2" } {}) ] - - location: 9 (remaining gas: 1039993.221 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "test1" ; "test2" } ] - - location: 10 (remaining gas: 1039993.221 units remaining) + - location: 10 (just consumed gas: 0) [ "test1" ] - - location: 12 (remaining gas: 1039993.211 units remaining) + - location: 12 (just consumed gas: 0.010) [ "Hello " "test1" ] - - location: 15 (remaining gas: 1039993.161 units remaining) + - location: 15 (just consumed gas: 0.050) [ "Hello test1" ] - - location: 10 (remaining gas: 1039993.146 units remaining) + - location: 10 (just consumed gas: 0.015) [ "test2" ] - - location: 12 (remaining gas: 1039993.136 units remaining) + - location: 12 (just consumed gas: 0.010) [ "Hello " "test2" ] - - location: 15 (remaining gas: 1039993.086 units remaining) + - location: 15 (just consumed gas: 0.050) [ "Hello test2" ] - - location: 10 (remaining gas: 1039993.071 units remaining) + - location: 10 (just consumed gas: 0.015) [ { "Hello test1" ; "Hello test2" } ] - - location: 16 (remaining gas: 1039993.061 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} { "Hello test1" ; "Hello test2" } ] - - location: 18 (remaining gas: 1039993.051 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} { "Hello test1" ; "Hello test2" }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out index afb754e7e4ce441b31103181dda4f91dcd4fc4fa..bc60b8bd203afb2ce3720c1464f4a269bd127d60 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.559 units remaining) + - location: 9 (just consumed gas: 6.441) [ (Pair {} {}) ] - - location: 9 (remaining gas: 1039993.549 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (remaining gas: 1039993.549 units remaining) + - location: 10 (just consumed gas: 0) [ {} ] - - location: 16 (remaining gas: 1039993.539 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 18 (remaining gas: 1039993.529 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out index be74315513a240a40de0ae3e43f5a097aae0f613..147bd1ee55698319c818e8498bbfe15639f1bad0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.478 units remaining) + - location: 9 (just consumed gas: 6.522) [ (Pair { 0xab ; 0xcd } {}) ] - - location: 9 (remaining gas: 1039993.468 units remaining) + - location: 9 (just consumed gas: 0.010) [ { 0xab ; 0xcd } ] - - location: 10 (remaining gas: 1039993.468 units remaining) + - location: 10 (just consumed gas: 0) [ 0xab ] - - location: 12 (remaining gas: 1039993.458 units remaining) + - location: 12 (just consumed gas: 0.010) [ 0xff 0xab ] - - location: 15 (remaining gas: 1039993.412 units remaining) + - location: 15 (just consumed gas: 0.046) [ 0xffab ] - - location: 10 (remaining gas: 1039993.397 units remaining) + - location: 10 (just consumed gas: 0.015) [ 0xcd ] - - location: 12 (remaining gas: 1039993.387 units remaining) + - location: 12 (just consumed gas: 0.010) [ 0xff 0xcd ] - - location: 15 (remaining gas: 1039993.341 units remaining) + - location: 15 (just consumed gas: 0.046) [ 0xffcd ] - - location: 10 (remaining gas: 1039993.326 units remaining) + - location: 10 (just consumed gas: 0.015) [ { 0xffab ; 0xffcd } ] - - location: 16 (remaining gas: 1039993.316 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} { 0xffab ; 0xffcd } ] - - location: 18 (remaining gas: 1039993.306 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} { 0xffab ; 0xffcd }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out index 714fd8d5ef4b96dcd4cc0e8153b9b52ad09d8259..d89a534f35834d4f09deb782ec1a81fb46bc009b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out @@ -7,22 +7,22 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.578 units remaining) + - location: 9 (just consumed gas: 6.422) [ (Pair { 0xcd } {}) ] - - location: 9 (remaining gas: 1039993.568 units remaining) + - location: 9 (just consumed gas: 0.010) [ { 0xcd } ] - - location: 10 (remaining gas: 1039993.568 units remaining) + - location: 10 (just consumed gas: 0) [ 0xcd ] - - location: 12 (remaining gas: 1039993.558 units remaining) + - location: 12 (just consumed gas: 0.010) [ 0xff 0xcd ] - - location: 15 (remaining gas: 1039993.512 units remaining) + - location: 15 (just consumed gas: 0.046) [ 0xffcd ] - - location: 10 (remaining gas: 1039993.497 units remaining) + - location: 10 (just consumed gas: 0.015) [ { 0xffcd } ] - - location: 16 (remaining gas: 1039993.487 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} { 0xffcd } ] - - location: 18 (remaining gas: 1039993.477 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} { 0xffcd }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out index 2fb1f3732a273e445e2655f14f4846f84bdf5ceb..321b2a9688048012fd6d51c1fd3c25bf5e7bc3a7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.678 units remaining) + - location: 9 (just consumed gas: 6.322) [ (Pair {} {}) ] - - location: 9 (remaining gas: 1039993.668 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (remaining gas: 1039993.668 units remaining) + - location: 10 (just consumed gas: 0) [ {} ] - - location: 16 (remaining gas: 1039993.658 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 18 (remaining gas: 1039993.648 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" index 41c160f0584e1f3ab6952f9d6d44ab4baf1963f4..856b6ea73af64212ded7cae84e9df8e63050ee1e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" @@ -7,113 +7,113 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039988.932 units remaining) + - location: 8 (just consumed gas: 11.068) [ (Pair { "Hello" ; " " ; "World" ; "!" } "") ] - - location: 8 (remaining gas: 1039988.922 units remaining) + - location: 8 (just consumed gas: 0.010) [ { "Hello" ; " " ; "World" ; "!" } ] - - location: 9 (remaining gas: 1039988.912 units remaining) + - location: 9 (just consumed gas: 0.010) [ "" { "Hello" ; " " ; "World" ; "!" } ] - - location: 12 (remaining gas: 1039988.902 units remaining) + - location: 12 (just consumed gas: 0.010) [ { "Hello" ; " " ; "World" ; "!" } "" ] - - location: 13 (remaining gas: 1039988.902 units remaining) + - location: 13 (just consumed gas: 0) [ "Hello" "" ] - - location: 15 (remaining gas: 1039988.892 units remaining) + - location: 15 (just consumed gas: 0.010) [ "" "Hello" ] - - location: 16 (remaining gas: 1039988.892 units remaining) + - location: 16 (just consumed gas: 0) [ "Hello" ] - - location: 18 (remaining gas: 1039988.882 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} "Hello" ] - - location: 20 (remaining gas: 1039988.872 units remaining) + - location: 20 (just consumed gas: 0.010) [ "Hello" {} ] - - location: 21 (remaining gas: 1039988.862 units remaining) + - location: 21 (just consumed gas: 0.010) [ { "Hello" } ] - - location: 16 (remaining gas: 1039988.837 units remaining) + - location: 16 (just consumed gas: 0.025) [ "" { "Hello" } ] - - location: 22 (remaining gas: 1039988.827 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "" ; "Hello" } ] - - location: 23 (remaining gas: 1039988.705 units remaining) + - location: 23 (just consumed gas: 0.122) [ "Hello" ] - - location: 13 (remaining gas: 1039988.690 units remaining) + - location: 13 (just consumed gas: 0.015) [ " " "Hello" ] - - location: 15 (remaining gas: 1039988.680 units remaining) + - location: 15 (just consumed gas: 0.010) [ "Hello" " " ] - - location: 16 (remaining gas: 1039988.680 units remaining) + - location: 16 (just consumed gas: 0) [ " " ] - - location: 18 (remaining gas: 1039988.670 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} " " ] - - location: 20 (remaining gas: 1039988.660 units remaining) + - location: 20 (just consumed gas: 0.010) [ " " {} ] - - location: 21 (remaining gas: 1039988.650 units remaining) + - location: 21 (just consumed gas: 0.010) [ { " " } ] - - location: 16 (remaining gas: 1039988.625 units remaining) + - location: 16 (just consumed gas: 0.025) [ "Hello" { " " } ] - - location: 22 (remaining gas: 1039988.615 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "Hello" ; " " } ] - - location: 23 (remaining gas: 1039988.492 units remaining) + - location: 23 (just consumed gas: 0.123) [ "Hello " ] - - location: 13 (remaining gas: 1039988.477 units remaining) + - location: 13 (just consumed gas: 0.015) [ "World" "Hello " ] - - location: 15 (remaining gas: 1039988.467 units remaining) + - location: 15 (just consumed gas: 0.010) [ "Hello " "World" ] - - location: 16 (remaining gas: 1039988.467 units remaining) + - location: 16 (just consumed gas: 0) [ "World" ] - - location: 18 (remaining gas: 1039988.457 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} "World" ] - - location: 20 (remaining gas: 1039988.447 units remaining) + - location: 20 (just consumed gas: 0.010) [ "World" {} ] - - location: 21 (remaining gas: 1039988.437 units remaining) + - location: 21 (just consumed gas: 0.010) [ { "World" } ] - - location: 16 (remaining gas: 1039988.412 units remaining) + - location: 16 (just consumed gas: 0.025) [ "Hello " { "World" } ] - - location: 22 (remaining gas: 1039988.402 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "Hello " ; "World" } ] - - location: 23 (remaining gas: 1039988.277 units remaining) + - location: 23 (just consumed gas: 0.125) [ "Hello World" ] - - location: 13 (remaining gas: 1039988.262 units remaining) + - location: 13 (just consumed gas: 0.015) [ "!" "Hello World" ] - - location: 15 (remaining gas: 1039988.252 units remaining) + - location: 15 (just consumed gas: 0.010) [ "Hello World" "!" ] - - location: 16 (remaining gas: 1039988.252 units remaining) + - location: 16 (just consumed gas: 0) [ "!" ] - - location: 18 (remaining gas: 1039988.242 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} "!" ] - - location: 20 (remaining gas: 1039988.232 units remaining) + - location: 20 (just consumed gas: 0.010) [ "!" {} ] - - location: 21 (remaining gas: 1039988.222 units remaining) + - location: 21 (just consumed gas: 0.010) [ { "!" } ] - - location: 16 (remaining gas: 1039988.197 units remaining) + - location: 16 (just consumed gas: 0.025) [ "Hello World" { "!" } ] - - location: 22 (remaining gas: 1039988.187 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "Hello World" ; "!" } ] - - location: 23 (remaining gas: 1039988.061 units remaining) + - location: 23 (just consumed gas: 0.126) [ "Hello World!" ] - - location: 13 (remaining gas: 1039988.046 units remaining) + - location: 13 (just consumed gas: 0.015) [ "Hello World!" ] - - location: 24 (remaining gas: 1039988.036 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} "Hello World!" ] - - location: 26 (remaining gas: 1039988.026 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair {} "Hello World!") ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" index 108e7fd4bae45acfa437f4ce762911622873803b..560f54049518697954e9e340323bbd2e325c1579 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" @@ -7,90 +7,90 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039989.136 units remaining) + - location: 8 (just consumed gas: 10.864) [ (Pair { "a" ; "b" ; "c" } "") ] - - location: 8 (remaining gas: 1039989.126 units remaining) + - location: 8 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 9 (remaining gas: 1039989.116 units remaining) + - location: 9 (just consumed gas: 0.010) [ "" { "a" ; "b" ; "c" } ] - - location: 12 (remaining gas: 1039989.106 units remaining) + - location: 12 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } "" ] - - location: 13 (remaining gas: 1039989.106 units remaining) + - location: 13 (just consumed gas: 0) [ "a" "" ] - - location: 15 (remaining gas: 1039989.096 units remaining) + - location: 15 (just consumed gas: 0.010) [ "" "a" ] - - location: 16 (remaining gas: 1039989.096 units remaining) + - location: 16 (just consumed gas: 0) [ "a" ] - - location: 18 (remaining gas: 1039989.086 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} "a" ] - - location: 20 (remaining gas: 1039989.076 units remaining) + - location: 20 (just consumed gas: 0.010) [ "a" {} ] - - location: 21 (remaining gas: 1039989.066 units remaining) + - location: 21 (just consumed gas: 0.010) [ { "a" } ] - - location: 16 (remaining gas: 1039989.041 units remaining) + - location: 16 (just consumed gas: 0.025) [ "" { "a" } ] - - location: 22 (remaining gas: 1039989.031 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "" ; "a" } ] - - location: 23 (remaining gas: 1039988.911 units remaining) + - location: 23 (just consumed gas: 0.120) [ "a" ] - - location: 13 (remaining gas: 1039988.896 units remaining) + - location: 13 (just consumed gas: 0.015) [ "b" "a" ] - - location: 15 (remaining gas: 1039988.886 units remaining) + - location: 15 (just consumed gas: 0.010) [ "a" "b" ] - - location: 16 (remaining gas: 1039988.886 units remaining) + - location: 16 (just consumed gas: 0) [ "b" ] - - location: 18 (remaining gas: 1039988.876 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} "b" ] - - location: 20 (remaining gas: 1039988.866 units remaining) + - location: 20 (just consumed gas: 0.010) [ "b" {} ] - - location: 21 (remaining gas: 1039988.856 units remaining) + - location: 21 (just consumed gas: 0.010) [ { "b" } ] - - location: 16 (remaining gas: 1039988.831 units remaining) + - location: 16 (just consumed gas: 0.025) [ "a" { "b" } ] - - location: 22 (remaining gas: 1039988.821 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "a" ; "b" } ] - - location: 23 (remaining gas: 1039988.700 units remaining) + - location: 23 (just consumed gas: 0.121) [ "ab" ] - - location: 13 (remaining gas: 1039988.685 units remaining) + - location: 13 (just consumed gas: 0.015) [ "c" "ab" ] - - location: 15 (remaining gas: 1039988.675 units remaining) + - location: 15 (just consumed gas: 0.010) [ "ab" "c" ] - - location: 16 (remaining gas: 1039988.675 units remaining) + - location: 16 (just consumed gas: 0) [ "c" ] - - location: 18 (remaining gas: 1039988.665 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} "c" ] - - location: 20 (remaining gas: 1039988.655 units remaining) + - location: 20 (just consumed gas: 0.010) [ "c" {} ] - - location: 21 (remaining gas: 1039988.645 units remaining) + - location: 21 (just consumed gas: 0.010) [ { "c" } ] - - location: 16 (remaining gas: 1039988.620 units remaining) + - location: 16 (just consumed gas: 0.025) [ "ab" { "c" } ] - - location: 22 (remaining gas: 1039988.610 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "ab" ; "c" } ] - - location: 23 (remaining gas: 1039988.489 units remaining) + - location: 23 (just consumed gas: 0.121) [ "abc" ] - - location: 13 (remaining gas: 1039988.474 units remaining) + - location: 13 (just consumed gas: 0.015) [ "abc" ] - - location: 24 (remaining gas: 1039988.464 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} "abc" ] - - location: 26 (remaining gas: 1039988.454 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair {} "abc") ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" index 9c2de2185376581af0124adb689579e766a85e5f..3b021c43223623ac8c0c85a25af179347cb6b226 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039989.508 units remaining) + - location: 8 (just consumed gas: 10.492) [ (Pair {} "") ] - - location: 8 (remaining gas: 1039989.498 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} ] - - location: 9 (remaining gas: 1039989.488 units remaining) + - location: 9 (just consumed gas: 0.010) [ "" {} ] - - location: 12 (remaining gas: 1039989.478 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} "" ] - - location: 13 (remaining gas: 1039989.478 units remaining) + - location: 13 (just consumed gas: 0) [ "" ] - - location: 24 (remaining gas: 1039989.468 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} "" ] - - location: 26 (remaining gas: 1039989.458 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair {} "") ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out index b7c80f081e41b2ae7190139ec84f1d1508e311b0..873fb9e7520f0a280b3f0d2468aabf09c2638dfa 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039995.240 units remaining) + - location: 8 (just consumed gas: 4.760) [ (Pair 99 { -5 ; 10 }) ] - - location: 8 (remaining gas: 1039995.230 units remaining) + - location: 8 (just consumed gas: 0.010) [ 99 { -5 ; 10 } ] - - location: 9 (remaining gas: 1039995.220 units remaining) + - location: 9 (just consumed gas: 0.010) [ { 99 ; -5 ; 10 } ] - - location: 10 (remaining gas: 1039995.210 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { 99 ; -5 ; 10 } ] - - location: 12 (remaining gas: 1039995.200 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} { 99 ; -5 ; 10 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out index c0aa97b1be131768a827d86bbf3be1860c8095d7..c7bb49bdee3b41ee2c02382001bed5c31ad55106 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039995.340 units remaining) + - location: 8 (just consumed gas: 4.660) [ (Pair -5 { 10 }) ] - - location: 8 (remaining gas: 1039995.330 units remaining) + - location: 8 (just consumed gas: 0.010) [ -5 { 10 } ] - - location: 9 (remaining gas: 1039995.320 units remaining) + - location: 9 (just consumed gas: 0.010) [ { -5 ; 10 } ] - - location: 10 (remaining gas: 1039995.310 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { -5 ; 10 } ] - - location: 12 (remaining gas: 1039995.300 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} { -5 ; 10 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out index 290d8e0e38f8f888d25b4f14bc6d00254aea866a..a18c521fe67e547bac9d6a1d1bdb9f4e3acf9aa6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039995.440 units remaining) + - location: 8 (just consumed gas: 4.560) [ (Pair 10 {}) ] - - location: 8 (remaining gas: 1039995.430 units remaining) + - location: 8 (just consumed gas: 0.010) [ 10 {} ] - - location: 9 (remaining gas: 1039995.420 units remaining) + - location: 9 (just consumed gas: 0.010) [ { 10 } ] - - location: 10 (remaining gas: 1039995.410 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { 10 } ] - - location: 12 (remaining gas: 1039995.400 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} { 10 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" index 343b43d74655c71cb98efadd6d57c83a69d023b4..c90b4914660abde74bc9ff1b29edaec439baf8be 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" @@ -7,160 +7,160 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039967.749 units remaining) + - location: 12 (just consumed gas: 32.251) [ (Pair (Pair { "A" } { "B" }) None) ] - - location: 12 (remaining gas: 1039967.739 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { "A" } { "B" }) ] - - location: 13 (remaining gas: 1039967.729 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair { "A" } { "B" }) (Pair { "A" } { "B" }) ] - - location: 14 (remaining gas: 1039967.719 units remaining) + - location: 14 (just consumed gas: 0.010) [ { "A" } (Pair { "A" } { "B" }) ] - - location: 15 (remaining gas: 1039967.719 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair { "A" } { "B" }) ] - - location: 17 (remaining gas: 1039967.709 units remaining) + - location: 17 (just consumed gas: 0.010) [ { "B" } ] - - location: 15 (remaining gas: 1039967.684 units remaining) + - location: 15 (just consumed gas: 0.025) [ { "A" } { "B" } ] - - location: 18 (remaining gas: 1039967.384 units remaining) + - location: 18 (just consumed gas: 0.300) [ {} { "A" } { "B" } ] - - location: 20 (remaining gas: 1039967.374 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "A" } {} { "B" } ] - - location: 21 (remaining gas: 1039967.374 units remaining) + - location: 21 (just consumed gas: 0) [ "A" {} { "B" } ] - - location: 23 (remaining gas: 1039967.364 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "A" {}) { "B" } ] - - location: 24 (remaining gas: 1039967.354 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "A" {}) (Pair "A" {}) { "B" } ] - - location: 25 (remaining gas: 1039967.344 units remaining) + - location: 25 (just consumed gas: 0.010) [ "A" (Pair "A" {}) { "B" } ] - - location: 26 (remaining gas: 1039967.344 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "A" {}) { "B" } ] - - location: 28 (remaining gas: 1039967.334 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} { "B" } ] - - location: 26 (remaining gas: 1039967.309 units remaining) + - location: 26 (just consumed gas: 0.025) [ "A" {} { "B" } ] - - location: 29 (remaining gas: 1039967.299 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "A" {} { "B" } ] - - location: 32 (remaining gas: 1039967.289 units remaining) + - location: 32 (just consumed gas: 0.010) [ "A" True {} { "B" } ] - - location: 33 (remaining gas: 1039967.157 units remaining) + - location: 33 (just consumed gas: 0.132) [ { "A" } { "B" } ] - - location: 21 (remaining gas: 1039967.142 units remaining) + - location: 21 (just consumed gas: 0.015) [ { "A" } { "B" } ] - - location: 34 (remaining gas: 1039967.132 units remaining) + - location: 34 (just consumed gas: 0.010) [ True { "A" } { "B" } ] - - location: 37 (remaining gas: 1039967.122 units remaining) + - location: 37 (just consumed gas: 0.010) [ { "A" } True { "B" } ] - - location: 38 (remaining gas: 1039967.112 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair { "A" } True) { "B" } ] - - location: 39 (remaining gas: 1039967.102 units remaining) + - location: 39 (just consumed gas: 0.010) [ { "B" } (Pair { "A" } True) ] - - location: 40 (remaining gas: 1039967.102 units remaining) + - location: 40 (just consumed gas: 0) [ "B" (Pair { "A" } True) ] - - location: 42 (remaining gas: 1039967.092 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "B" { "A" } True) ] - - location: 43 (remaining gas: 1039967.082 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 44 (remaining gas: 1039967.072 units remaining) + - location: 44 (just consumed gas: 0.010) [ (Pair "B" { "A" } True) (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 45 (remaining gas: 1039967.062 units remaining) + - location: 45 (just consumed gas: 0.010) [ "B" (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 46 (remaining gas: 1039967.062 units remaining) + - location: 46 (just consumed gas: 0) [ (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 49 (remaining gas: 1039967.052 units remaining) + - location: 49 (just consumed gas: 0.010) [ (Pair { "A" } True) (Pair "B" { "A" } True) ] - - location: 50 (remaining gas: 1039967.042 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "A" } (Pair "B" { "A" } True) ] - - location: 51 (remaining gas: 1039967.042 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "B" { "A" } True) ] - - location: 54 (remaining gas: 1039967.032 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "A" } True) ] - - location: 55 (remaining gas: 1039967.022 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (remaining gas: 1039966.997 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "A" } True ] - - location: 56 (remaining gas: 1039966.987 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "A" } { "A" } True ] - - location: 46 (remaining gas: 1039966.962 units remaining) + - location: 46 (just consumed gas: 0.025) [ "B" { "A" } { "A" } True ] - - location: 57 (remaining gas: 1039966.845 units remaining) + - location: 57 (just consumed gas: 0.117) [ False { "A" } True ] - - location: 58 (remaining gas: 1039966.845 units remaining) + - location: 58 (just consumed gas: 0) [ { "A" } True ] - - location: 60 (remaining gas: 1039966.835 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "A" } ] - - location: 58 (remaining gas: 1039966.810 units remaining) + - location: 58 (just consumed gas: 0.025) [ False True { "A" } ] - - location: 61 (remaining gas: 1039966.800 units remaining) + - location: 61 (just consumed gas: 0.010) [ False { "A" } ] - - location: 62 (remaining gas: 1039966.790 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "A" } False ] - - location: 63 (remaining gas: 1039966.780 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "A" } False) ] - - location: 40 (remaining gas: 1039966.765 units remaining) + - location: 40 (just consumed gas: 0.015) [ (Pair { "A" } False) ] - - location: 64 (remaining gas: 1039966.755 units remaining) + - location: 64 (just consumed gas: 0.010) [ False ] - - location: 65 (remaining gas: 1039966.745 units remaining) + - location: 65 (just consumed gas: 0.010) [ (Some False) ] - - location: 66 (remaining gas: 1039966.735 units remaining) + - location: 66 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 68 (remaining gas: 1039966.725 units remaining) + - location: 68 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" index f1f03909051b582d438e5b29f2f6e3433c1867ab..9e0bcb533598473093203d2bc2ee011a625817b3 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" @@ -7,404 +7,404 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039967.069 units remaining) + - location: 12 (just consumed gas: 32.931) [ (Pair (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) None) ] - - location: 12 (remaining gas: 1039967.059 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 13 (remaining gas: 1039967.049 units remaining) + - 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 (remaining gas: 1039967.039 units remaining) + - location: 14 (just consumed gas: 0.010) [ { "B" ; "B" ; "asdf" ; "C" } (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 15 (remaining gas: 1039967.039 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 17 (remaining gas: 1039967.029 units remaining) + - location: 17 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } ] - - location: 15 (remaining gas: 1039967.004 units remaining) + - location: 15 (just consumed gas: 0.025) [ { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" } ] - - location: 18 (remaining gas: 1039966.704 units remaining) + - location: 18 (just consumed gas: 0.300) [ {} { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" } ] - - location: 20 (remaining gas: 1039966.694 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "B" ; "B" ; "asdf" ; "C" } {} { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039966.694 units remaining) + - location: 21 (just consumed gas: 0) [ "B" {} { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039966.684 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039966.674 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "B" {}) (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039966.664 units remaining) + - location: 25 (just consumed gas: 0.010) [ "B" (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.664 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039966.654 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.629 units remaining) + - location: 26 (just consumed gas: 0.025) [ "B" {} { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039966.619 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "B" {} { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039966.609 units remaining) + - location: 32 (just consumed gas: 0.010) [ "B" True {} { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039966.477 units remaining) + - location: 33 (just consumed gas: 0.132) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039966.462 units remaining) + - location: 21 (just consumed gas: 0.015) [ "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039966.452 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039966.442 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "B" { "B" }) (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039966.432 units remaining) + - location: 25 (just consumed gas: 0.010) [ "B" (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.432 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039966.422 units remaining) + - location: 28 (just consumed gas: 0.010) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.397 units remaining) + - location: 26 (just consumed gas: 0.025) [ "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039966.387 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039966.377 units remaining) + - location: 32 (just consumed gas: 0.010) [ "B" True { "B" } { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039966.243 units remaining) + - location: 33 (just consumed gas: 0.134) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039966.228 units remaining) + - location: 21 (just consumed gas: 0.015) [ "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039966.218 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039966.208 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "asdf" { "B" }) (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039966.198 units remaining) + - location: 25 (just consumed gas: 0.010) [ "asdf" (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.198 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039966.188 units remaining) + - location: 28 (just consumed gas: 0.010) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.163 units remaining) + - location: 26 (just consumed gas: 0.025) [ "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039966.153 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039966.143 units remaining) + - location: 32 (just consumed gas: 0.010) [ "asdf" True { "B" } { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039965.997 units remaining) + - location: 33 (just consumed gas: 0.146) [ { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039965.982 units remaining) + - location: 21 (just consumed gas: 0.015) [ "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039965.972 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039965.962 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "C" { "B" ; "asdf" }) (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039965.952 units remaining) + - location: 25 (just consumed gas: 0.010) [ "C" (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039965.952 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039965.942 units remaining) + - location: 28 (just consumed gas: 0.010) [ { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039965.917 units remaining) + - location: 26 (just consumed gas: 0.025) [ "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039965.907 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039965.897 units remaining) + - location: 32 (just consumed gas: 0.010) [ "C" True { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039965.761 units remaining) + - location: 33 (just consumed gas: 0.136) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039965.746 units remaining) + - location: 21 (just consumed gas: 0.015) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 34 (remaining gas: 1039965.736 units remaining) + - location: 34 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 37 (remaining gas: 1039965.726 units remaining) + - location: 37 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True { "B" ; "C" ; "asdf" } ] - - location: 38 (remaining gas: 1039965.716 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) { "B" ; "C" ; "asdf" } ] - - location: 39 (remaining gas: 1039965.706 units remaining) + - location: 39 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.706 units remaining) + - location: 40 (just consumed gas: 0) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.696 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.686 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039965.676 units remaining) + - 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 (remaining gas: 1039965.666 units remaining) + - location: 45 (just consumed gas: 0.010) [ "B" (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039965.666 units remaining) + - location: 46 (just consumed gas: 0) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039965.656 units remaining) + - location: 49 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039965.646 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.646 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.636 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.626 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (remaining gas: 1039965.601 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.591 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.566 units remaining) + - location: 46 (just consumed gas: 0.025) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039965.448 units remaining) + - location: 57 (just consumed gas: 0.118) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039965.448 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039965.438 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039965.413 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039965.403 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039965.393 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039965.383 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.368 units remaining) + - location: 40 (just consumed gas: 0.015) [ "C" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.358 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.348 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039965.338 units remaining) + - 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 (remaining gas: 1039965.328 units remaining) + - location: 45 (just consumed gas: 0.010) [ "C" (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039965.328 units remaining) + - location: 46 (just consumed gas: 0) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039965.318 units remaining) + - location: 49 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039965.308 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.308 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.298 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.288 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (remaining gas: 1039965.263 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.253 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.228 units remaining) + - location: 46 (just consumed gas: 0.025) [ "C" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039965.110 units remaining) + - location: 57 (just consumed gas: 0.118) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039965.110 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039965.100 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039965.075 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039965.065 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039965.055 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039965.045 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.030 units remaining) + - location: 40 (just consumed gas: 0.015) [ "asdf" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.020 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.010 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039965 units remaining) + - 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 (remaining gas: 1039964.990 units remaining) + - location: 45 (just consumed gas: 0.010) [ "asdf" (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039964.990 units remaining) + - location: 46 (just consumed gas: 0) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039964.980 units remaining) + - location: 49 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039964.970 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039964.970 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039964.960 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039964.950 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (remaining gas: 1039964.925 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039964.915 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039964.890 units remaining) + - location: 46 (just consumed gas: 0.025) [ "asdf" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039964.763 units remaining) + - location: 57 (just consumed gas: 0.127) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039964.763 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039964.753 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039964.728 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039964.718 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039964.708 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039964.698 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039964.683 units remaining) + - location: 40 (just consumed gas: 0.015) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 64 (remaining gas: 1039964.673 units remaining) + - location: 64 (just consumed gas: 0.010) [ True ] - - location: 65 (remaining gas: 1039964.663 units remaining) + - location: 65 (just consumed gas: 0.010) [ (Some True) ] - - location: 66 (remaining gas: 1039964.653 units remaining) + - location: 66 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 68 (remaining gas: 1039964.643 units remaining) + - location: 68 (just consumed gas: 0.010) [ (Pair {} (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" index 8bc324f3d6c3d3344f9640dc28d1ea8007a4547b..3af7c97ea44ae615522e469deb82dc06ece97c0d 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" @@ -7,431 +7,431 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039967.069 units remaining) + - location: 12 (just consumed gas: 32.931) [ (Pair (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) None) ] - - location: 12 (remaining gas: 1039967.059 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 13 (remaining gas: 1039967.049 units remaining) + - 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 (remaining gas: 1039967.039 units remaining) + - location: 14 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 15 (remaining gas: 1039967.039 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 17 (remaining gas: 1039967.029 units remaining) + - location: 17 (just consumed gas: 0.010) [ { "B" ; "B" ; "asdf" ; "C" } ] - - location: 15 (remaining gas: 1039967.004 units remaining) + - location: 15 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 18 (remaining gas: 1039966.704 units remaining) + - location: 18 (just consumed gas: 0.300) [ {} { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 20 (remaining gas: 1039966.694 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039966.694 units remaining) + - location: 21 (just consumed gas: 0) [ "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (remaining gas: 1039966.684 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (remaining gas: 1039966.674 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "B" {}) (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (remaining gas: 1039966.664 units remaining) + - location: 25 (just consumed gas: 0.010) [ "B" (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.664 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (remaining gas: 1039966.654 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.629 units remaining) + - location: 26 (just consumed gas: 0.025) [ "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (remaining gas: 1039966.619 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (remaining gas: 1039966.609 units remaining) + - location: 32 (just consumed gas: 0.010) [ "B" True {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (remaining gas: 1039966.477 units remaining) + - location: 33 (just consumed gas: 0.132) [ { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039966.462 units remaining) + - location: 21 (just consumed gas: 0.015) [ "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (remaining gas: 1039966.452 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (remaining gas: 1039966.442 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "C" { "B" }) (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (remaining gas: 1039966.432 units remaining) + - location: 25 (just consumed gas: 0.010) [ "C" (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.432 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (remaining gas: 1039966.422 units remaining) + - location: 28 (just consumed gas: 0.010) [ { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.397 units remaining) + - location: 26 (just consumed gas: 0.025) [ "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (remaining gas: 1039966.387 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (remaining gas: 1039966.377 units remaining) + - location: 32 (just consumed gas: 0.010) [ "C" True { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (remaining gas: 1039966.243 units remaining) + - location: 33 (just consumed gas: 0.134) [ { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039966.228 units remaining) + - location: 21 (just consumed gas: 0.015) [ "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (remaining gas: 1039966.218 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (remaining gas: 1039966.208 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "asdf" { "B" ; "C" }) (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (remaining gas: 1039966.198 units remaining) + - location: 25 (just consumed gas: 0.010) [ "asdf" (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.198 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (remaining gas: 1039966.188 units remaining) + - location: 28 (just consumed gas: 0.010) [ { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.163 units remaining) + - location: 26 (just consumed gas: 0.025) [ "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (remaining gas: 1039966.153 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (remaining gas: 1039966.143 units remaining) + - location: 32 (just consumed gas: 0.010) [ "asdf" True { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (remaining gas: 1039965.989 units remaining) + - location: 33 (just consumed gas: 0.154) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039965.974 units remaining) + - location: 21 (just consumed gas: 0.015) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 34 (remaining gas: 1039965.964 units remaining) + - location: 34 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 37 (remaining gas: 1039965.954 units remaining) + - location: 37 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True { "B" ; "B" ; "asdf" ; "C" } ] - - location: 38 (remaining gas: 1039965.944 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 39 (remaining gas: 1039965.934 units remaining) + - location: 39 (just consumed gas: 0.010) [ { "B" ; "B" ; "asdf" ; "C" } (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.934 units remaining) + - location: 40 (just consumed gas: 0) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.924 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.914 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039965.904 units remaining) + - 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 (remaining gas: 1039965.894 units remaining) + - location: 45 (just consumed gas: 0.010) [ "B" (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039965.894 units remaining) + - location: 46 (just consumed gas: 0) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039965.884 units remaining) + - location: 49 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039965.874 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.874 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.864 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.854 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (remaining gas: 1039965.829 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.819 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.794 units remaining) + - location: 46 (just consumed gas: 0.025) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039965.676 units remaining) + - location: 57 (just consumed gas: 0.118) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039965.676 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039965.666 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039965.641 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039965.631 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039965.621 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039965.611 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.596 units remaining) + - location: 40 (just consumed gas: 0.015) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.586 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.576 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039965.566 units remaining) + - 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 (remaining gas: 1039965.556 units remaining) + - location: 45 (just consumed gas: 0.010) [ "B" (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039965.556 units remaining) + - location: 46 (just consumed gas: 0) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039965.546 units remaining) + - location: 49 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039965.536 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.536 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.526 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.516 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (remaining gas: 1039965.491 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.481 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.456 units remaining) + - location: 46 (just consumed gas: 0.025) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039965.338 units remaining) + - location: 57 (just consumed gas: 0.118) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039965.338 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039965.328 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039965.303 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039965.293 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039965.283 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039965.273 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.258 units remaining) + - location: 40 (just consumed gas: 0.015) [ "asdf" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.248 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.238 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039965.228 units remaining) + - 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 (remaining gas: 1039965.218 units remaining) + - location: 45 (just consumed gas: 0.010) [ "asdf" (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039965.218 units remaining) + - location: 46 (just consumed gas: 0) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039965.208 units remaining) + - location: 49 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039965.198 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.198 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.188 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.178 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (remaining gas: 1039965.153 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.143 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.118 units remaining) + - location: 46 (just consumed gas: 0.025) [ "asdf" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039964.991 units remaining) + - location: 57 (just consumed gas: 0.127) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039964.991 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039964.981 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039964.956 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039964.946 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039964.936 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039964.926 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039964.911 units remaining) + - location: 40 (just consumed gas: 0.015) [ "C" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039964.901 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039964.891 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039964.881 units remaining) + - 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 (remaining gas: 1039964.871 units remaining) + - location: 45 (just consumed gas: 0.010) [ "C" (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039964.871 units remaining) + - location: 46 (just consumed gas: 0) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039964.861 units remaining) + - location: 49 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039964.851 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039964.851 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039964.841 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039964.831 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (remaining gas: 1039964.806 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039964.796 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039964.771 units remaining) + - location: 46 (just consumed gas: 0.025) [ "C" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039964.653 units remaining) + - location: 57 (just consumed gas: 0.118) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039964.653 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039964.643 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039964.618 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039964.608 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039964.598 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039964.588 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039964.573 units remaining) + - location: 40 (just consumed gas: 0.015) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 64 (remaining gas: 1039964.563 units remaining) + - location: 64 (just consumed gas: 0.010) [ True ] - - location: 65 (remaining gas: 1039964.553 units remaining) + - location: 65 (just consumed gas: 0.010) [ (Some True) ] - - location: 66 (remaining gas: 1039964.543 units remaining) + - location: 66 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 68 (remaining gas: 1039964.533 units remaining) + - location: 68 (just consumed gas: 0.010) [ (Pair {} (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" index 334d32d3fb3affa6b22e315899fbf99e082831b2..afb518dc7ac15287d696610d9376346c7ec97f9b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" @@ -7,160 +7,160 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039967.749 units remaining) + - location: 12 (just consumed gas: 32.251) [ (Pair (Pair { "B" } { "B" }) None) ] - - location: 12 (remaining gas: 1039967.739 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { "B" } { "B" }) ] - - location: 13 (remaining gas: 1039967.729 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair { "B" } { "B" }) (Pair { "B" } { "B" }) ] - - location: 14 (remaining gas: 1039967.719 units remaining) + - location: 14 (just consumed gas: 0.010) [ { "B" } (Pair { "B" } { "B" }) ] - - location: 15 (remaining gas: 1039967.719 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair { "B" } { "B" }) ] - - location: 17 (remaining gas: 1039967.709 units remaining) + - location: 17 (just consumed gas: 0.010) [ { "B" } ] - - location: 15 (remaining gas: 1039967.684 units remaining) + - location: 15 (just consumed gas: 0.025) [ { "B" } { "B" } ] - - location: 18 (remaining gas: 1039967.384 units remaining) + - location: 18 (just consumed gas: 0.300) [ {} { "B" } { "B" } ] - - location: 20 (remaining gas: 1039967.374 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "B" } {} { "B" } ] - - location: 21 (remaining gas: 1039967.374 units remaining) + - location: 21 (just consumed gas: 0) [ "B" {} { "B" } ] - - location: 23 (remaining gas: 1039967.364 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "B" {}) { "B" } ] - - location: 24 (remaining gas: 1039967.354 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "B" {}) (Pair "B" {}) { "B" } ] - - location: 25 (remaining gas: 1039967.344 units remaining) + - location: 25 (just consumed gas: 0.010) [ "B" (Pair "B" {}) { "B" } ] - - location: 26 (remaining gas: 1039967.344 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "B" {}) { "B" } ] - - location: 28 (remaining gas: 1039967.334 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} { "B" } ] - - location: 26 (remaining gas: 1039967.309 units remaining) + - location: 26 (just consumed gas: 0.025) [ "B" {} { "B" } ] - - location: 29 (remaining gas: 1039967.299 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "B" {} { "B" } ] - - location: 32 (remaining gas: 1039967.289 units remaining) + - location: 32 (just consumed gas: 0.010) [ "B" True {} { "B" } ] - - location: 33 (remaining gas: 1039967.157 units remaining) + - location: 33 (just consumed gas: 0.132) [ { "B" } { "B" } ] - - location: 21 (remaining gas: 1039967.142 units remaining) + - location: 21 (just consumed gas: 0.015) [ { "B" } { "B" } ] - - location: 34 (remaining gas: 1039967.132 units remaining) + - location: 34 (just consumed gas: 0.010) [ True { "B" } { "B" } ] - - location: 37 (remaining gas: 1039967.122 units remaining) + - location: 37 (just consumed gas: 0.010) [ { "B" } True { "B" } ] - - location: 38 (remaining gas: 1039967.112 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair { "B" } True) { "B" } ] - - location: 39 (remaining gas: 1039967.102 units remaining) + - location: 39 (just consumed gas: 0.010) [ { "B" } (Pair { "B" } True) ] - - location: 40 (remaining gas: 1039967.102 units remaining) + - location: 40 (just consumed gas: 0) [ "B" (Pair { "B" } True) ] - - location: 42 (remaining gas: 1039967.092 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "B" { "B" } True) ] - - location: 43 (remaining gas: 1039967.082 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 44 (remaining gas: 1039967.072 units remaining) + - location: 44 (just consumed gas: 0.010) [ (Pair "B" { "B" } True) (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 45 (remaining gas: 1039967.062 units remaining) + - location: 45 (just consumed gas: 0.010) [ "B" (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 46 (remaining gas: 1039967.062 units remaining) + - location: 46 (just consumed gas: 0) [ (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 49 (remaining gas: 1039967.052 units remaining) + - location: 49 (just consumed gas: 0.010) [ (Pair { "B" } True) (Pair "B" { "B" } True) ] - - location: 50 (remaining gas: 1039967.042 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" } (Pair "B" { "B" } True) ] - - location: 51 (remaining gas: 1039967.042 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "B" { "B" } True) ] - - location: 54 (remaining gas: 1039967.032 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" } True) ] - - location: 55 (remaining gas: 1039967.022 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (remaining gas: 1039966.997 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" } True ] - - location: 56 (remaining gas: 1039966.987 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" } { "B" } True ] - - location: 46 (remaining gas: 1039966.962 units remaining) + - location: 46 (just consumed gas: 0.025) [ "B" { "B" } { "B" } True ] - - location: 57 (remaining gas: 1039966.845 units remaining) + - location: 57 (just consumed gas: 0.117) [ True { "B" } True ] - - location: 58 (remaining gas: 1039966.845 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" } True ] - - location: 60 (remaining gas: 1039966.835 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" } ] - - location: 58 (remaining gas: 1039966.810 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" } ] - - location: 61 (remaining gas: 1039966.800 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" } ] - - location: 62 (remaining gas: 1039966.790 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" } True ] - - location: 63 (remaining gas: 1039966.780 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" } True) ] - - location: 40 (remaining gas: 1039966.765 units remaining) + - location: 40 (just consumed gas: 0.015) [ (Pair { "B" } True) ] - - location: 64 (remaining gas: 1039966.755 units remaining) + - location: 64 (just consumed gas: 0.010) [ True ] - - location: 65 (remaining gas: 1039966.745 units remaining) + - location: 65 (just consumed gas: 0.010) [ (Some True) ] - - location: 66 (remaining gas: 1039966.735 units remaining) + - location: 66 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 68 (remaining gas: 1039966.725 units remaining) + - location: 68 (just consumed gas: 0.010) [ (Pair {} (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" index 61ff58887c4bb717f7d30b4c58a1c7216de44ca7..04951031155162f87e3cd5e81bca9508fc80398a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" @@ -7,160 +7,160 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039967.749 units remaining) + - location: 12 (just consumed gas: 32.251) [ (Pair (Pair { "c" } { "B" }) None) ] - - location: 12 (remaining gas: 1039967.739 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { "c" } { "B" }) ] - - location: 13 (remaining gas: 1039967.729 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair { "c" } { "B" }) (Pair { "c" } { "B" }) ] - - location: 14 (remaining gas: 1039967.719 units remaining) + - location: 14 (just consumed gas: 0.010) [ { "c" } (Pair { "c" } { "B" }) ] - - location: 15 (remaining gas: 1039967.719 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair { "c" } { "B" }) ] - - location: 17 (remaining gas: 1039967.709 units remaining) + - location: 17 (just consumed gas: 0.010) [ { "B" } ] - - location: 15 (remaining gas: 1039967.684 units remaining) + - location: 15 (just consumed gas: 0.025) [ { "c" } { "B" } ] - - location: 18 (remaining gas: 1039967.384 units remaining) + - location: 18 (just consumed gas: 0.300) [ {} { "c" } { "B" } ] - - location: 20 (remaining gas: 1039967.374 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "c" } {} { "B" } ] - - location: 21 (remaining gas: 1039967.374 units remaining) + - location: 21 (just consumed gas: 0) [ "c" {} { "B" } ] - - location: 23 (remaining gas: 1039967.364 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "c" {}) { "B" } ] - - location: 24 (remaining gas: 1039967.354 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "c" {}) (Pair "c" {}) { "B" } ] - - location: 25 (remaining gas: 1039967.344 units remaining) + - location: 25 (just consumed gas: 0.010) [ "c" (Pair "c" {}) { "B" } ] - - location: 26 (remaining gas: 1039967.344 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "c" {}) { "B" } ] - - location: 28 (remaining gas: 1039967.334 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} { "B" } ] - - location: 26 (remaining gas: 1039967.309 units remaining) + - location: 26 (just consumed gas: 0.025) [ "c" {} { "B" } ] - - location: 29 (remaining gas: 1039967.299 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "c" {} { "B" } ] - - location: 32 (remaining gas: 1039967.289 units remaining) + - location: 32 (just consumed gas: 0.010) [ "c" True {} { "B" } ] - - location: 33 (remaining gas: 1039967.157 units remaining) + - location: 33 (just consumed gas: 0.132) [ { "c" } { "B" } ] - - location: 21 (remaining gas: 1039967.142 units remaining) + - location: 21 (just consumed gas: 0.015) [ { "c" } { "B" } ] - - location: 34 (remaining gas: 1039967.132 units remaining) + - location: 34 (just consumed gas: 0.010) [ True { "c" } { "B" } ] - - location: 37 (remaining gas: 1039967.122 units remaining) + - location: 37 (just consumed gas: 0.010) [ { "c" } True { "B" } ] - - location: 38 (remaining gas: 1039967.112 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair { "c" } True) { "B" } ] - - location: 39 (remaining gas: 1039967.102 units remaining) + - location: 39 (just consumed gas: 0.010) [ { "B" } (Pair { "c" } True) ] - - location: 40 (remaining gas: 1039967.102 units remaining) + - location: 40 (just consumed gas: 0) [ "B" (Pair { "c" } True) ] - - location: 42 (remaining gas: 1039967.092 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "B" { "c" } True) ] - - location: 43 (remaining gas: 1039967.082 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 44 (remaining gas: 1039967.072 units remaining) + - location: 44 (just consumed gas: 0.010) [ (Pair "B" { "c" } True) (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 45 (remaining gas: 1039967.062 units remaining) + - location: 45 (just consumed gas: 0.010) [ "B" (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 46 (remaining gas: 1039967.062 units remaining) + - location: 46 (just consumed gas: 0) [ (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 49 (remaining gas: 1039967.052 units remaining) + - location: 49 (just consumed gas: 0.010) [ (Pair { "c" } True) (Pair "B" { "c" } True) ] - - location: 50 (remaining gas: 1039967.042 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "c" } (Pair "B" { "c" } True) ] - - location: 51 (remaining gas: 1039967.042 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "B" { "c" } True) ] - - location: 54 (remaining gas: 1039967.032 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "c" } True) ] - - location: 55 (remaining gas: 1039967.022 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (remaining gas: 1039966.997 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "c" } True ] - - location: 56 (remaining gas: 1039966.987 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "c" } { "c" } True ] - - location: 46 (remaining gas: 1039966.962 units remaining) + - location: 46 (just consumed gas: 0.025) [ "B" { "c" } { "c" } True ] - - location: 57 (remaining gas: 1039966.845 units remaining) + - location: 57 (just consumed gas: 0.117) [ False { "c" } True ] - - location: 58 (remaining gas: 1039966.845 units remaining) + - location: 58 (just consumed gas: 0) [ { "c" } True ] - - location: 60 (remaining gas: 1039966.835 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "c" } ] - - location: 58 (remaining gas: 1039966.810 units remaining) + - location: 58 (just consumed gas: 0.025) [ False True { "c" } ] - - location: 61 (remaining gas: 1039966.800 units remaining) + - location: 61 (just consumed gas: 0.010) [ False { "c" } ] - - location: 62 (remaining gas: 1039966.790 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "c" } False ] - - location: 63 (remaining gas: 1039966.780 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "c" } False) ] - - location: 40 (remaining gas: 1039966.765 units remaining) + - location: 40 (just consumed gas: 0.015) [ (Pair { "c" } False) ] - - location: 64 (remaining gas: 1039966.755 units remaining) + - location: 64 (just consumed gas: 0.010) [ False ] - - location: 65 (remaining gas: 1039966.745 units remaining) + - location: 65 (just consumed gas: 0.010) [ (Some False) ] - - location: 66 (remaining gas: 1039966.735 units remaining) + - location: 66 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 68 (remaining gas: 1039966.725 units remaining) + - location: 68 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out index 000a176136233052604e3427b498efcf35299594..0a84518226e44b486a18ef479a79bbaeffc30b33 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out @@ -7,57 +7,57 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039967.997 units remaining) + - location: 12 (just consumed gas: 32.003) [ (Pair (Pair {} {}) None) ] - - location: 12 (remaining gas: 1039967.987 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} {}) ] - - location: 13 (remaining gas: 1039967.977 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} {}) (Pair {} {}) ] - - location: 14 (remaining gas: 1039967.967 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Pair {} {}) ] - - location: 15 (remaining gas: 1039967.967 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair {} {}) ] - - location: 17 (remaining gas: 1039967.957 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} ] - - location: 15 (remaining gas: 1039967.932 units remaining) + - location: 15 (just consumed gas: 0.025) [ {} {} ] - - location: 18 (remaining gas: 1039967.632 units remaining) + - location: 18 (just consumed gas: 0.300) [ {} {} {} ] - - location: 20 (remaining gas: 1039967.622 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} {} {} ] - - location: 21 (remaining gas: 1039967.622 units remaining) + - location: 21 (just consumed gas: 0) [ {} {} ] - - location: 34 (remaining gas: 1039967.612 units remaining) + - location: 34 (just consumed gas: 0.010) [ True {} {} ] - - location: 37 (remaining gas: 1039967.602 units remaining) + - location: 37 (just consumed gas: 0.010) [ {} True {} ] - - location: 38 (remaining gas: 1039967.592 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair {} True) {} ] - - location: 39 (remaining gas: 1039967.582 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Pair {} True) ] - - location: 40 (remaining gas: 1039967.582 units remaining) + - location: 40 (just consumed gas: 0) [ (Pair {} True) ] - - location: 64 (remaining gas: 1039967.572 units remaining) + - location: 64 (just consumed gas: 0.010) [ True ] - - location: 65 (remaining gas: 1039967.562 units remaining) + - location: 65 (just consumed gas: 0.010) [ (Some True) ] - - location: 66 (remaining gas: 1039967.552 units remaining) + - location: 66 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 68 (remaining gas: 1039967.542 units remaining) + - location: 68 (just consumed gas: 0.010) [ (Pair {} (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" index 2d4d4c36186ab5d0d6ac3c70ea475e374d862f2c..0233483176afbb280a802eb543edd0580ff1484c 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" @@ -7,23 +7,23 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039988.190 units remaining) + - location: 7 (just consumed gas: 11.810) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" Unit) ] - - location: 7 (remaining gas: 1039988.180 units remaining) + - location: 7 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 8 (remaining gas: 1039987.870 units remaining) + - location: 8 (just consumed gas: 0.310) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 11 (remaining gas: 1039987.870 units remaining) + - location: 11 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 11 (remaining gas: 1039987.855 units remaining) + - location: 11 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 17 (remaining gas: 1039987.845 units remaining) + - location: 17 (just consumed gas: 0.010) [ ] - - location: 18 (remaining gas: 1039987.835 units remaining) + - location: 18 (just consumed gas: 0.010) [ Unit ] - - location: 19 (remaining gas: 1039987.825 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} Unit ] - - location: 21 (remaining gas: 1039987.815 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" index 3810ea098ff4758abeea3798c0606a82d73a3779..cb95652845accf05e9636b80585f9d994ec323a9 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" @@ -13,37 +13,37 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039987.939 units remaining) + - location: 8 (just consumed gas: 12.061) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039987.929 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (remaining gas: 1039987.919 units remaining) + - location: 9 (just consumed gas: 0.010) [ Unit ] - - location: 10 (remaining gas: 1039987.909 units remaining) + - location: 10 (just consumed gas: 0.010) [ 50000 Unit ] - - location: 11 (remaining gas: 1039987.899 units remaining) + - location: 11 (just consumed gas: 0.010) [ None 50000 Unit ] - - location: 13 (remaining gas: 1039987.183 units remaining) + - location: 13 (just consumed gas: 0.716) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm" ] - - location: 25 (remaining gas: 1039987.183 units remaining) + - location: 25 (just consumed gas: 0) [ "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm" ] - - location: 27 (remaining gas: 1039987.173 units remaining) + - location: 27 (just consumed gas: 0.010) [ (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 28 (remaining gas: 1039987.163 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 25 (remaining gas: 1039987.138 units remaining) + - location: 25 (just consumed gas: 0.025) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b {} (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 30 (remaining gas: 1039987.128 units remaining) + - location: 30 (just consumed gas: 0.010) [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b } (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 31 (remaining gas: 1039987.118 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b } (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" index 3a28a70eefa5200cb433bf9ab1ddceaf73599a7d..20941144017db727e935a2a3facd3c4927ba11ab 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.347 units remaining) + - location: 9 (just consumed gas: 7.653) [ (Pair (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") 111) ] - - location: 9 (remaining gas: 1039992.337 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") ] - - location: 10 (remaining gas: 1039992.327 units remaining) + - 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 (remaining gas: 1039992.317 units remaining) + - 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 (remaining gas: 1039992.317 units remaining) + - location: 12 (just consumed gas: 0) [ (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") ] - - location: 14 (remaining gas: 1039992.307 units remaining) + - location: 14 (just consumed gas: 0.010) [ "1970-01-01T00:00:00Z" ] - - location: 12 (remaining gas: 1039992.282 units remaining) + - location: 12 (just consumed gas: 0.025) [ "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z" ] - - location: 15 (remaining gas: 1039992.247 units remaining) + - location: 15 (just consumed gas: 0.035) [ 200 ] - - location: 16 (remaining gas: 1039992.237 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 200 ] - - location: 18 (remaining gas: 1039992.227 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} 200) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out index a48bdf1092f9f4aab1f47c42606c3aebfa8b5d68..13140c3e6466d5516c23c423aafbf9457cab9ff9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.563 units remaining) + - location: 9 (just consumed gas: 7.437) [ (Pair (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") 111) ] - - location: 9 (remaining gas: 1039992.553 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") ] - - location: 10 (remaining gas: 1039992.543 units remaining) + - 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 (remaining gas: 1039992.533 units remaining) + - 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 (remaining gas: 1039992.533 units remaining) + - location: 12 (just consumed gas: 0) [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") ] - - location: 14 (remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010) [ "1970-01-01T00:00:00Z" ] - - location: 12 (remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025) [ "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z" ] - - location: 15 (remaining gas: 1039992.463 units remaining) + - location: 15 (just consumed gas: 0.035) [ 0 ] - - location: 16 (remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 0 ] - - location: 18 (remaining gas: 1039992.443 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out index 0cc05a870a89b2eb31759bcb8fd164cf1f60f071..991b152904ed99f6e21add7042ecf9faa35293fd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.563 units remaining) + - location: 9 (just consumed gas: 7.437) [ (Pair (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") 111) ] - - location: 9 (remaining gas: 1039992.553 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") ] - - location: 10 (remaining gas: 1039992.543 units remaining) + - 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 (remaining gas: 1039992.533 units remaining) + - 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 (remaining gas: 1039992.533 units remaining) + - location: 12 (just consumed gas: 0) [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") ] - - location: 14 (remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010) [ "1970-01-01T00:00:01Z" ] - - location: 12 (remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025) [ "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z" ] - - location: 15 (remaining gas: 1039992.463 units remaining) + - location: 15 (just consumed gas: 0.035) [ -1 ] - - location: 16 (remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} -1 ] - - location: 18 (remaining gas: 1039992.443 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} -1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out index 1018550acff624d5ecef65dcfd6d02ad724f5035..124d28783f0460eda1728f7ca0663e1c77bb6840 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.563 units remaining) + - location: 9 (just consumed gas: 7.437) [ (Pair (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") 111) ] - - location: 9 (remaining gas: 1039992.553 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") ] - - location: 10 (remaining gas: 1039992.543 units remaining) + - 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 (remaining gas: 1039992.533 units remaining) + - 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 (remaining gas: 1039992.533 units remaining) + - location: 12 (just consumed gas: 0) [ (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") ] - - location: 14 (remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010) [ "1970-01-01T00:00:00Z" ] - - location: 12 (remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025) [ "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z" ] - - location: 15 (remaining gas: 1039992.463 units remaining) + - location: 15 (just consumed gas: 0.035) [ 1 ] - - location: 16 (remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 1 ] - - location: 18 (remaining gas: 1039992.443 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out index 876c43466e9287c1fec7c12dcf782f399c6562de..38ce9b0e9aec4d83863ee1041918e0f06cd12a53 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out @@ -7,111 +7,111 @@ emitted operations big_map diff trace - - location: 24 (remaining gas: 1039840.257 units remaining) + - 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 (remaining gas: 1039840.247 units remaining) + - 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 (remaining gas: 1039840.237 units remaining) + - 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 (remaining gas: 1039840.227 units remaining) + - 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 (remaining gas: 1039840.227 units remaining) + - 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 (remaining gas: 1039840.217 units remaining) + - 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 (remaining gas: 1039840.192 units remaining) + - 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 (remaining gas: 1039840.192 units remaining) + - 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 (remaining gas: 1039840.182 units remaining) + - 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 (remaining gas: 1039840.157 units remaining) + - 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 (remaining gas: 1039840.147 units remaining) + - 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 (remaining gas: 1039840.147 units remaining) + - 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 (remaining gas: 1039840.147 units remaining) + - 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 (remaining gas: 1039840.137 units remaining) + - 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 (remaining gas: 1039840.112 units remaining) + - 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 (remaining gas: 1039840.102 units remaining) + - 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 (remaining gas: 1039840.092 units remaining) + - 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 (remaining gas: 1039840.092 units remaining) + - 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 (remaining gas: 1039840.092 units remaining) + - 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 (remaining gas: 1039840.082 units remaining) + - 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 (remaining gas: 1039840.057 units remaining) + - 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 (remaining gas: 1039840.047 units remaining) + - 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 (remaining gas: 1039840.037 units remaining) + - 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 (remaining gas: 1039840.027 units remaining) + - location: 39 (just consumed gas: 0.010) [ 17 16 15 @@ -119,7 +119,7 @@ trace 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 (remaining gas: 1039840.027 units remaining) + - location: 39 (just consumed gas: 0) [ 17 16 15 @@ -127,32 +127,32 @@ trace 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 (remaining gas: 1039840.027 units remaining) + - 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 (remaining gas: 1039840.017 units remaining) + - 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 (remaining gas: 1039839.992 units remaining) + - 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 (remaining gas: 1039839.982 units remaining) + - 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 (remaining gas: 1039839.972 units remaining) + - 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 (remaining gas: 1039839.962 units remaining) + - location: 43 (just consumed gas: 0.010) [ 16 15 14 @@ -160,7 +160,7 @@ trace 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 (remaining gas: 1039839.952 units remaining) + - location: 43 (just consumed gas: 0.010) [ 17 16 15 @@ -169,7 +169,7 @@ trace 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 (remaining gas: 1039839.952 units remaining) + - location: 43 (just consumed gas: 0) [ 17 16 15 @@ -178,32 +178,32 @@ trace 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 (remaining gas: 1039839.952 units remaining) + - 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 (remaining gas: 1039839.942 units remaining) + - 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 (remaining gas: 1039839.917 units remaining) + - 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 (remaining gas: 1039839.907 units remaining) + - 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 (remaining gas: 1039839.897 units remaining) + - 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 (remaining gas: 1039839.887 units remaining) + - location: 47 (just consumed gas: 0.010) [ 15 14 13 @@ -211,7 +211,7 @@ trace 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 (remaining gas: 1039839.877 units remaining) + - location: 47 (just consumed gas: 0.010) [ 16 15 14 @@ -220,7 +220,7 @@ trace 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 (remaining gas: 1039839.867 units remaining) + - location: 47 (just consumed gas: 0.010) [ 17 16 15 @@ -230,7 +230,7 @@ trace 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 (remaining gas: 1039839.867 units remaining) + - location: 47 (just consumed gas: 0) [ 17 16 15 @@ -240,32 +240,32 @@ trace 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 (remaining gas: 1039839.867 units remaining) + - 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 (remaining gas: 1039839.857 units remaining) + - 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 (remaining gas: 1039839.832 units remaining) + - 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 (remaining gas: 1039839.822 units remaining) + - 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 (remaining gas: 1039839.812 units remaining) + - 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 (remaining gas: 1039839.802 units remaining) + - location: 51 (just consumed gas: 0.010) [ 14 13 12 @@ -273,7 +273,7 @@ trace 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 (remaining gas: 1039839.792 units remaining) + - location: 51 (just consumed gas: 0.010) [ 15 14 13 @@ -282,7 +282,7 @@ trace 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 (remaining gas: 1039839.782 units remaining) + - location: 51 (just consumed gas: 0.010) [ 16 15 14 @@ -292,7 +292,7 @@ trace 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 (remaining gas: 1039839.772 units remaining) + - location: 51 (just consumed gas: 0.010) [ 17 16 15 @@ -303,7 +303,7 @@ trace 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 (remaining gas: 1039839.772 units remaining) + - location: 51 (just consumed gas: 0) [ 17 16 15 @@ -314,32 +314,32 @@ trace 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 (remaining gas: 1039839.772 units remaining) + - 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 (remaining gas: 1039839.762 units remaining) + - 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 (remaining gas: 1039839.737 units remaining) + - 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 (remaining gas: 1039839.727 units remaining) + - 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 (remaining gas: 1039839.717 units remaining) + - 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 (remaining gas: 1039839.707 units remaining) + - location: 55 (just consumed gas: 0.010) [ 13 12 11 @@ -347,7 +347,7 @@ trace 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 (remaining gas: 1039839.697 units remaining) + - location: 55 (just consumed gas: 0.010) [ 14 13 12 @@ -356,7 +356,7 @@ trace 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 (remaining gas: 1039839.687 units remaining) + - location: 55 (just consumed gas: 0.010) [ 15 14 13 @@ -366,7 +366,7 @@ trace 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 (remaining gas: 1039839.677 units remaining) + - location: 55 (just consumed gas: 0.010) [ 16 15 14 @@ -377,7 +377,7 @@ trace 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 (remaining gas: 1039839.667 units remaining) + - location: 55 (just consumed gas: 0.010) [ 17 16 15 @@ -389,7 +389,7 @@ trace 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 (remaining gas: 1039839.667 units remaining) + - location: 55 (just consumed gas: 0) [ 17 16 15 @@ -401,32 +401,32 @@ trace 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 (remaining gas: 1039839.667 units remaining) + - 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 (remaining gas: 1039839.657 units remaining) + - 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 (remaining gas: 1039839.632 units remaining) + - 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 (remaining gas: 1039839.622 units remaining) + - 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 (remaining gas: 1039839.612 units remaining) + - 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 (remaining gas: 1039839.602 units remaining) + - location: 59 (just consumed gas: 0.010) [ 12 11 10 @@ -434,7 +434,7 @@ trace 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 (remaining gas: 1039839.592 units remaining) + - location: 59 (just consumed gas: 0.010) [ 13 12 11 @@ -443,7 +443,7 @@ trace 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 (remaining gas: 1039839.582 units remaining) + - location: 59 (just consumed gas: 0.010) [ 14 13 12 @@ -453,7 +453,7 @@ trace 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 (remaining gas: 1039839.572 units remaining) + - location: 59 (just consumed gas: 0.010) [ 15 14 13 @@ -464,7 +464,7 @@ trace 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 (remaining gas: 1039839.562 units remaining) + - location: 59 (just consumed gas: 0.010) [ 16 15 14 @@ -476,7 +476,7 @@ trace 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 (remaining gas: 1039839.552 units remaining) + - location: 59 (just consumed gas: 0.010) [ 17 16 15 @@ -489,7 +489,7 @@ trace 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 (remaining gas: 1039839.552 units remaining) + - location: 59 (just consumed gas: 0) [ 17 16 15 @@ -502,32 +502,32 @@ trace 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 (remaining gas: 1039839.552 units remaining) + - 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 (remaining gas: 1039839.542 units remaining) + - 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 (remaining gas: 1039839.517 units remaining) + - 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 (remaining gas: 1039839.507 units remaining) + - 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 (remaining gas: 1039839.497 units remaining) + - 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 (remaining gas: 1039839.487 units remaining) + - location: 63 (just consumed gas: 0.010) [ 11 10 9 @@ -535,7 +535,7 @@ trace 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 (remaining gas: 1039839.477 units remaining) + - location: 63 (just consumed gas: 0.010) [ 12 11 10 @@ -544,7 +544,7 @@ trace 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 (remaining gas: 1039839.467 units remaining) + - location: 63 (just consumed gas: 0.010) [ 13 12 11 @@ -554,7 +554,7 @@ trace 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 (remaining gas: 1039839.457 units remaining) + - location: 63 (just consumed gas: 0.010) [ 14 13 12 @@ -565,7 +565,7 @@ trace 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 (remaining gas: 1039839.447 units remaining) + - location: 63 (just consumed gas: 0.010) [ 15 14 13 @@ -577,7 +577,7 @@ trace 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 (remaining gas: 1039839.437 units remaining) + - location: 63 (just consumed gas: 0.010) [ 16 15 14 @@ -590,7 +590,7 @@ trace 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 (remaining gas: 1039839.427 units remaining) + - location: 63 (just consumed gas: 0.010) [ 17 16 15 @@ -604,7 +604,7 @@ trace 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 (remaining gas: 1039839.427 units remaining) + - location: 63 (just consumed gas: 0) [ 17 16 15 @@ -618,32 +618,32 @@ trace 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 (remaining gas: 1039839.427 units remaining) + - 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 (remaining gas: 1039839.417 units remaining) + - 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 (remaining gas: 1039839.392 units remaining) + - 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 (remaining gas: 1039839.382 units remaining) + - 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 (remaining gas: 1039839.372 units remaining) + - 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 (remaining gas: 1039839.362 units remaining) + - location: 67 (just consumed gas: 0.010) [ 10 9 8 @@ -651,7 +651,7 @@ trace 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 (remaining gas: 1039839.352 units remaining) + - location: 67 (just consumed gas: 0.010) [ 11 10 9 @@ -660,7 +660,7 @@ trace 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 (remaining gas: 1039839.342 units remaining) + - location: 67 (just consumed gas: 0.010) [ 12 11 10 @@ -670,7 +670,7 @@ trace 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 (remaining gas: 1039839.332 units remaining) + - location: 67 (just consumed gas: 0.010) [ 13 12 11 @@ -681,7 +681,7 @@ trace 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 (remaining gas: 1039839.322 units remaining) + - location: 67 (just consumed gas: 0.010) [ 14 13 12 @@ -693,7 +693,7 @@ trace 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 (remaining gas: 1039839.312 units remaining) + - location: 67 (just consumed gas: 0.010) [ 15 14 13 @@ -706,7 +706,7 @@ trace 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 (remaining gas: 1039839.302 units remaining) + - location: 67 (just consumed gas: 0.010) [ 16 15 14 @@ -720,7 +720,7 @@ trace 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 (remaining gas: 1039839.292 units remaining) + - location: 67 (just consumed gas: 0.010) [ 17 16 15 @@ -735,7 +735,7 @@ trace 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 (remaining gas: 1039839.292 units remaining) + - location: 67 (just consumed gas: 0) [ 17 16 15 @@ -750,32 +750,32 @@ trace 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 (remaining gas: 1039839.292 units remaining) + - 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 (remaining gas: 1039839.282 units remaining) + - 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 (remaining gas: 1039839.257 units remaining) + - 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 (remaining gas: 1039839.247 units remaining) + - 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 (remaining gas: 1039839.237 units remaining) + - 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 (remaining gas: 1039839.227 units remaining) + - location: 71 (just consumed gas: 0.010) [ 9 8 7 @@ -783,7 +783,7 @@ trace 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 (remaining gas: 1039839.217 units remaining) + - location: 71 (just consumed gas: 0.010) [ 10 9 8 @@ -792,7 +792,7 @@ trace 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 (remaining gas: 1039839.207 units remaining) + - location: 71 (just consumed gas: 0.010) [ 11 10 9 @@ -802,7 +802,7 @@ trace 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 (remaining gas: 1039839.197 units remaining) + - location: 71 (just consumed gas: 0.010) [ 12 11 10 @@ -813,7 +813,7 @@ trace 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 (remaining gas: 1039839.187 units remaining) + - location: 71 (just consumed gas: 0.010) [ 13 12 11 @@ -825,7 +825,7 @@ trace 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 (remaining gas: 1039839.177 units remaining) + - location: 71 (just consumed gas: 0.010) [ 14 13 12 @@ -838,7 +838,7 @@ trace 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 (remaining gas: 1039839.167 units remaining) + - location: 71 (just consumed gas: 0.010) [ 15 14 13 @@ -852,7 +852,7 @@ trace 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 (remaining gas: 1039839.157 units remaining) + - location: 71 (just consumed gas: 0.010) [ 16 15 14 @@ -867,7 +867,7 @@ trace 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 (remaining gas: 1039839.147 units remaining) + - location: 71 (just consumed gas: 0.010) [ 17 16 15 @@ -883,7 +883,7 @@ trace 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 (remaining gas: 1039839.147 units remaining) + - location: 71 (just consumed gas: 0) [ 17 16 15 @@ -899,32 +899,32 @@ trace 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 (remaining gas: 1039839.147 units remaining) + - 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 (remaining gas: 1039839.137 units remaining) + - 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 (remaining gas: 1039839.112 units remaining) + - 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 (remaining gas: 1039839.102 units remaining) + - 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 (remaining gas: 1039839.092 units remaining) + - 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 (remaining gas: 1039839.082 units remaining) + - location: 75 (just consumed gas: 0.010) [ 8 7 6 @@ -932,7 +932,7 @@ trace 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 (remaining gas: 1039839.072 units remaining) + - location: 75 (just consumed gas: 0.010) [ 9 8 7 @@ -941,7 +941,7 @@ trace 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 (remaining gas: 1039839.062 units remaining) + - location: 75 (just consumed gas: 0.010) [ 10 9 8 @@ -951,7 +951,7 @@ trace 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 (remaining gas: 1039839.052 units remaining) + - location: 75 (just consumed gas: 0.010) [ 11 10 9 @@ -962,7 +962,7 @@ trace 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 (remaining gas: 1039839.042 units remaining) + - location: 75 (just consumed gas: 0.010) [ 12 11 10 @@ -974,7 +974,7 @@ trace 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 (remaining gas: 1039839.032 units remaining) + - location: 75 (just consumed gas: 0.010) [ 13 12 11 @@ -987,7 +987,7 @@ trace 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 (remaining gas: 1039839.022 units remaining) + - location: 75 (just consumed gas: 0.010) [ 14 13 12 @@ -1001,7 +1001,7 @@ trace 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 (remaining gas: 1039839.012 units remaining) + - location: 75 (just consumed gas: 0.010) [ 15 14 13 @@ -1016,7 +1016,7 @@ trace 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 (remaining gas: 1039839.002 units remaining) + - location: 75 (just consumed gas: 0.010) [ 16 15 14 @@ -1032,7 +1032,7 @@ trace 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 (remaining gas: 1039838.992 units remaining) + - location: 75 (just consumed gas: 0.010) [ 17 16 15 @@ -1049,7 +1049,7 @@ trace 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 (remaining gas: 1039838.992 units remaining) + - location: 75 (just consumed gas: 0) [ 17 16 15 @@ -1066,32 +1066,32 @@ trace 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 (remaining gas: 1039838.992 units remaining) + - 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 (remaining gas: 1039838.982 units remaining) + - 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 (remaining gas: 1039838.957 units remaining) + - 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 (remaining gas: 1039838.947 units remaining) + - 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 (remaining gas: 1039838.937 units remaining) + - 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 (remaining gas: 1039838.927 units remaining) + - location: 79 (just consumed gas: 0.010) [ 7 6 5 @@ -1099,7 +1099,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039838.917 units remaining) + - location: 79 (just consumed gas: 0.010) [ 8 7 6 @@ -1108,7 +1108,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039838.907 units remaining) + - location: 79 (just consumed gas: 0.010) [ 9 8 7 @@ -1118,7 +1118,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039838.897 units remaining) + - location: 79 (just consumed gas: 0.010) [ 10 9 8 @@ -1129,7 +1129,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039838.887 units remaining) + - location: 79 (just consumed gas: 0.010) [ 11 10 9 @@ -1141,7 +1141,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039838.877 units remaining) + - location: 79 (just consumed gas: 0.010) [ 12 11 10 @@ -1154,7 +1154,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039838.867 units remaining) + - location: 79 (just consumed gas: 0.010) [ 13 12 11 @@ -1168,7 +1168,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039838.857 units remaining) + - location: 79 (just consumed gas: 0.010) [ 14 13 12 @@ -1183,7 +1183,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039838.847 units remaining) + - location: 79 (just consumed gas: 0.010) [ 15 14 13 @@ -1199,7 +1199,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039838.837 units remaining) + - location: 79 (just consumed gas: 0.010) [ 16 15 14 @@ -1216,7 +1216,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039838.827 units remaining) + - location: 79 (just consumed gas: 0.010) [ 17 16 15 @@ -1234,7 +1234,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039838.827 units remaining) + - location: 79 (just consumed gas: 0) [ 17 16 15 @@ -1252,32 +1252,32 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039838.827 units remaining) + - 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 (remaining gas: 1039838.817 units remaining) + - 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 (remaining gas: 1039838.792 units remaining) + - 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 (remaining gas: 1039838.782 units remaining) + - 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 (remaining gas: 1039838.772 units remaining) + - 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 (remaining gas: 1039838.762 units remaining) + - location: 83 (just consumed gas: 0.010) [ 6 5 4 @@ -1285,7 +1285,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039838.752 units remaining) + - location: 83 (just consumed gas: 0.010) [ 7 6 5 @@ -1294,7 +1294,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039838.742 units remaining) + - location: 83 (just consumed gas: 0.010) [ 8 7 6 @@ -1304,7 +1304,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039838.732 units remaining) + - location: 83 (just consumed gas: 0.010) [ 9 8 7 @@ -1315,7 +1315,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039838.722 units remaining) + - location: 83 (just consumed gas: 0.010) [ 10 9 8 @@ -1327,7 +1327,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039838.712 units remaining) + - location: 83 (just consumed gas: 0.010) [ 11 10 9 @@ -1340,7 +1340,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039838.702 units remaining) + - location: 83 (just consumed gas: 0.010) [ 12 11 10 @@ -1354,7 +1354,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039838.692 units remaining) + - location: 83 (just consumed gas: 0.010) [ 13 12 11 @@ -1369,7 +1369,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039838.682 units remaining) + - location: 83 (just consumed gas: 0.010) [ 14 13 12 @@ -1385,7 +1385,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039838.672 units remaining) + - location: 83 (just consumed gas: 0.010) [ 15 14 13 @@ -1402,7 +1402,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039838.662 units remaining) + - location: 83 (just consumed gas: 0.010) [ 16 15 14 @@ -1420,7 +1420,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039838.652 units remaining) + - location: 83 (just consumed gas: 0.010) [ 17 16 15 @@ -1439,7 +1439,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039838.652 units remaining) + - location: 83 (just consumed gas: 0) [ 17 16 15 @@ -1458,7 +1458,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 87 (remaining gas: 1039838.622 units remaining) + - location: 87 (just consumed gas: 0.030) [ 17 16 15 @@ -1477,7 +1477,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 89 (remaining gas: 1039838.586 units remaining) + - location: 89 (just consumed gas: 0.036) [ 16 17 15 @@ -1496,7 +1496,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 91 (remaining gas: 1039838.543 units remaining) + - location: 91 (just consumed gas: 0.043) [ 15 16 17 @@ -1515,7 +1515,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 93 (remaining gas: 1039838.494 units remaining) + - location: 93 (just consumed gas: 0.049) [ 14 15 16 @@ -1534,7 +1534,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 95 (remaining gas: 1039838.437 units remaining) + - location: 95 (just consumed gas: 0.057) [ 13 14 15 @@ -1553,7 +1553,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 97 (remaining gas: 1039838.374 units remaining) + - location: 97 (just consumed gas: 0.063) [ 12 13 14 @@ -1572,7 +1572,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 99 (remaining gas: 1039838.304 units remaining) + - location: 99 (just consumed gas: 0.070) [ 11 12 13 @@ -1591,7 +1591,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 101 (remaining gas: 1039838.228 units remaining) + - location: 101 (just consumed gas: 0.076) [ 10 11 12 @@ -1610,7 +1610,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 103 (remaining gas: 1039838.144 units remaining) + - location: 103 (just consumed gas: 0.084) [ 9 10 11 @@ -1629,7 +1629,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 105 (remaining gas: 1039838.054 units remaining) + - location: 105 (just consumed gas: 0.090) [ 8 9 10 @@ -1648,7 +1648,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 107 (remaining gas: 1039837.957 units remaining) + - location: 107 (just consumed gas: 0.097) [ 7 8 9 @@ -1667,7 +1667,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 109 (remaining gas: 1039837.854 units remaining) + - location: 109 (just consumed gas: 0.103) [ 6 7 8 @@ -1686,7 +1686,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 111 (remaining gas: 1039837.743 units remaining) + - location: 111 (just consumed gas: 0.111) [ 5 6 7 @@ -1705,7 +1705,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 113 (remaining gas: 1039837.626 units remaining) + - location: 113 (just consumed gas: 0.117) [ 4 5 6 @@ -1724,7 +1724,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 115 (remaining gas: 1039837.502 units remaining) + - location: 115 (just consumed gas: 0.124) [ 3 4 5 @@ -1743,7 +1743,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 117 (remaining gas: 1039837.372 units remaining) + - location: 117 (just consumed gas: 0.130) [ 2 3 4 @@ -1762,7 +1762,7 @@ trace 17 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 119 (remaining gas: 1039837.234 units remaining) + - location: 119 (just consumed gas: 0.138) [ 1 2 3 @@ -1781,7 +1781,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 121 (remaining gas: 1039837.204 units remaining) + - location: 121 (just consumed gas: 0.030) [ 1 2 3 @@ -1800,7 +1800,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 123 (remaining gas: 1039837.168 units remaining) + - location: 123 (just consumed gas: 0.036) [ 2 1 3 @@ -1819,7 +1819,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 125 (remaining gas: 1039837.125 units remaining) + - location: 125 (just consumed gas: 0.043) [ 3 2 1 @@ -1838,7 +1838,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 127 (remaining gas: 1039837.076 units remaining) + - location: 127 (just consumed gas: 0.049) [ 4 3 2 @@ -1857,7 +1857,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 129 (remaining gas: 1039837.019 units remaining) + - location: 129 (just consumed gas: 0.057) [ 5 4 3 @@ -1876,7 +1876,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 131 (remaining gas: 1039836.956 units remaining) + - location: 131 (just consumed gas: 0.063) [ 6 5 4 @@ -1895,7 +1895,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 133 (remaining gas: 1039836.886 units remaining) + - location: 133 (just consumed gas: 0.070) [ 7 6 5 @@ -1914,7 +1914,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 135 (remaining gas: 1039836.810 units remaining) + - location: 135 (just consumed gas: 0.076) [ 8 7 6 @@ -1933,7 +1933,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 137 (remaining gas: 1039836.726 units remaining) + - location: 137 (just consumed gas: 0.084) [ 9 8 7 @@ -1952,7 +1952,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 139 (remaining gas: 1039836.636 units remaining) + - location: 139 (just consumed gas: 0.090) [ 10 9 8 @@ -1971,7 +1971,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 141 (remaining gas: 1039836.539 units remaining) + - location: 141 (just consumed gas: 0.097) [ 11 10 9 @@ -1990,7 +1990,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 143 (remaining gas: 1039836.436 units remaining) + - location: 143 (just consumed gas: 0.103) [ 12 11 10 @@ -2009,7 +2009,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 145 (remaining gas: 1039836.325 units remaining) + - location: 145 (just consumed gas: 0.111) [ 13 12 11 @@ -2028,7 +2028,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 147 (remaining gas: 1039836.208 units remaining) + - location: 147 (just consumed gas: 0.117) [ 14 13 12 @@ -2047,7 +2047,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 149 (remaining gas: 1039836.084 units remaining) + - location: 149 (just consumed gas: 0.124) [ 15 14 13 @@ -2066,7 +2066,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 151 (remaining gas: 1039835.954 units remaining) + - location: 151 (just consumed gas: 0.130) [ 16 15 14 @@ -2085,7 +2085,7 @@ trace 1 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 153 (remaining gas: 1039835.816 units remaining) + - location: 153 (just consumed gas: 0.138) [ 17 16 15 @@ -2104,36 +2104,36 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039835.816 units remaining) + - 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 (remaining gas: 1039835.806 units remaining) + - 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 (remaining gas: 1039835.781 units remaining) + - 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 (remaining gas: 1039835.771 units remaining) + - 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 (remaining gas: 1039835.761 units remaining) + - 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 (remaining gas: 1039835.751 units remaining) + - 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 (remaining gas: 1039835.741 units remaining) + - location: 156 (just consumed gas: 0.010) [ 7 6 5 @@ -2141,7 +2141,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039835.731 units remaining) + - location: 156 (just consumed gas: 0.010) [ 8 7 6 @@ -2150,7 +2150,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039835.721 units remaining) + - location: 156 (just consumed gas: 0.010) [ 9 8 7 @@ -2160,7 +2160,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039835.711 units remaining) + - location: 156 (just consumed gas: 0.010) [ 10 9 8 @@ -2171,7 +2171,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039835.701 units remaining) + - location: 156 (just consumed gas: 0.010) [ 11 10 9 @@ -2183,7 +2183,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039835.691 units remaining) + - location: 156 (just consumed gas: 0.010) [ 12 11 10 @@ -2196,7 +2196,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039835.681 units remaining) + - location: 156 (just consumed gas: 0.010) [ 13 12 11 @@ -2210,7 +2210,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039835.671 units remaining) + - location: 156 (just consumed gas: 0.010) [ 14 13 12 @@ -2225,7 +2225,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039835.661 units remaining) + - location: 156 (just consumed gas: 0.010) [ 15 14 13 @@ -2241,7 +2241,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039835.651 units remaining) + - location: 156 (just consumed gas: 0.010) [ 16 15 14 @@ -2258,7 +2258,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039835.641 units remaining) + - location: 156 (just consumed gas: 0.010) [ 17 16 15 @@ -2276,7 +2276,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039835.641 units remaining) + - location: 156 (just consumed gas: 0) [ 17 16 15 @@ -2294,36 +2294,36 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039835.641 units remaining) + - 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 (remaining gas: 1039835.631 units remaining) + - 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 (remaining gas: 1039835.606 units remaining) + - 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 (remaining gas: 1039835.596 units remaining) + - 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 (remaining gas: 1039835.586 units remaining) + - 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 (remaining gas: 1039835.576 units remaining) + - 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 (remaining gas: 1039835.566 units remaining) + - location: 160 (just consumed gas: 0.010) [ 8 7 6 @@ -2331,7 +2331,7 @@ trace 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 (remaining gas: 1039835.556 units remaining) + - location: 160 (just consumed gas: 0.010) [ 9 8 7 @@ -2340,7 +2340,7 @@ trace 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 (remaining gas: 1039835.546 units remaining) + - location: 160 (just consumed gas: 0.010) [ 10 9 8 @@ -2350,7 +2350,7 @@ trace 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 (remaining gas: 1039835.536 units remaining) + - location: 160 (just consumed gas: 0.010) [ 11 10 9 @@ -2361,7 +2361,7 @@ trace 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 (remaining gas: 1039835.526 units remaining) + - location: 160 (just consumed gas: 0.010) [ 12 11 10 @@ -2373,7 +2373,7 @@ trace 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 (remaining gas: 1039835.516 units remaining) + - location: 160 (just consumed gas: 0.010) [ 13 12 11 @@ -2386,7 +2386,7 @@ trace 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 (remaining gas: 1039835.506 units remaining) + - location: 160 (just consumed gas: 0.010) [ 14 13 12 @@ -2400,7 +2400,7 @@ trace 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 (remaining gas: 1039835.496 units remaining) + - location: 160 (just consumed gas: 0.010) [ 15 14 13 @@ -2415,7 +2415,7 @@ trace 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 (remaining gas: 1039835.486 units remaining) + - location: 160 (just consumed gas: 0.010) [ 16 15 14 @@ -2431,7 +2431,7 @@ trace 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 (remaining gas: 1039835.476 units remaining) + - location: 160 (just consumed gas: 0.010) [ 17 16 15 @@ -2448,7 +2448,7 @@ trace 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 (remaining gas: 1039835.476 units remaining) + - location: 160 (just consumed gas: 0) [ 17 16 15 @@ -2465,36 +2465,36 @@ trace 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 (remaining gas: 1039835.476 units remaining) + - 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 (remaining gas: 1039835.466 units remaining) + - 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 (remaining gas: 1039835.441 units remaining) + - 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 (remaining gas: 1039835.431 units remaining) + - 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 (remaining gas: 1039835.421 units remaining) + - 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 (remaining gas: 1039835.411 units remaining) + - 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 (remaining gas: 1039835.401 units remaining) + - location: 164 (just consumed gas: 0.010) [ 9 8 7 @@ -2502,7 +2502,7 @@ trace 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 (remaining gas: 1039835.391 units remaining) + - location: 164 (just consumed gas: 0.010) [ 10 9 8 @@ -2511,7 +2511,7 @@ trace 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 (remaining gas: 1039835.381 units remaining) + - location: 164 (just consumed gas: 0.010) [ 11 10 9 @@ -2521,7 +2521,7 @@ trace 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 (remaining gas: 1039835.371 units remaining) + - location: 164 (just consumed gas: 0.010) [ 12 11 10 @@ -2532,7 +2532,7 @@ trace 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 (remaining gas: 1039835.361 units remaining) + - location: 164 (just consumed gas: 0.010) [ 13 12 11 @@ -2544,7 +2544,7 @@ trace 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 (remaining gas: 1039835.351 units remaining) + - location: 164 (just consumed gas: 0.010) [ 14 13 12 @@ -2557,7 +2557,7 @@ trace 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 (remaining gas: 1039835.341 units remaining) + - location: 164 (just consumed gas: 0.010) [ 15 14 13 @@ -2571,7 +2571,7 @@ trace 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 (remaining gas: 1039835.331 units remaining) + - location: 164 (just consumed gas: 0.010) [ 16 15 14 @@ -2586,7 +2586,7 @@ trace 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 (remaining gas: 1039835.321 units remaining) + - location: 164 (just consumed gas: 0.010) [ 17 16 15 @@ -2602,7 +2602,7 @@ trace 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 (remaining gas: 1039835.321 units remaining) + - location: 164 (just consumed gas: 0) [ 17 16 15 @@ -2618,36 +2618,36 @@ trace 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 (remaining gas: 1039835.321 units remaining) + - 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 (remaining gas: 1039835.311 units remaining) + - 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 (remaining gas: 1039835.286 units remaining) + - 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 (remaining gas: 1039835.276 units remaining) + - 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 (remaining gas: 1039835.266 units remaining) + - 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 (remaining gas: 1039835.256 units remaining) + - 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 (remaining gas: 1039835.246 units remaining) + - location: 168 (just consumed gas: 0.010) [ 10 9 8 @@ -2655,7 +2655,7 @@ trace 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 (remaining gas: 1039835.236 units remaining) + - location: 168 (just consumed gas: 0.010) [ 11 10 9 @@ -2664,7 +2664,7 @@ trace 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 (remaining gas: 1039835.226 units remaining) + - location: 168 (just consumed gas: 0.010) [ 12 11 10 @@ -2674,7 +2674,7 @@ trace 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 (remaining gas: 1039835.216 units remaining) + - location: 168 (just consumed gas: 0.010) [ 13 12 11 @@ -2685,7 +2685,7 @@ trace 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 (remaining gas: 1039835.206 units remaining) + - location: 168 (just consumed gas: 0.010) [ 14 13 12 @@ -2697,7 +2697,7 @@ trace 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 (remaining gas: 1039835.196 units remaining) + - location: 168 (just consumed gas: 0.010) [ 15 14 13 @@ -2710,7 +2710,7 @@ trace 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 (remaining gas: 1039835.186 units remaining) + - location: 168 (just consumed gas: 0.010) [ 16 15 14 @@ -2724,7 +2724,7 @@ trace 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 (remaining gas: 1039835.176 units remaining) + - location: 168 (just consumed gas: 0.010) [ 17 16 15 @@ -2739,7 +2739,7 @@ trace 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 (remaining gas: 1039835.176 units remaining) + - location: 168 (just consumed gas: 0) [ 17 16 15 @@ -2754,36 +2754,36 @@ trace 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 (remaining gas: 1039835.176 units remaining) + - 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 (remaining gas: 1039835.166 units remaining) + - 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 (remaining gas: 1039835.141 units remaining) + - 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 (remaining gas: 1039835.131 units remaining) + - 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 (remaining gas: 1039835.121 units remaining) + - 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 (remaining gas: 1039835.111 units remaining) + - 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 (remaining gas: 1039835.101 units remaining) + - location: 172 (just consumed gas: 0.010) [ 11 10 9 @@ -2791,7 +2791,7 @@ trace 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 (remaining gas: 1039835.091 units remaining) + - location: 172 (just consumed gas: 0.010) [ 12 11 10 @@ -2800,7 +2800,7 @@ trace 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 (remaining gas: 1039835.081 units remaining) + - location: 172 (just consumed gas: 0.010) [ 13 12 11 @@ -2810,7 +2810,7 @@ trace 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 (remaining gas: 1039835.071 units remaining) + - location: 172 (just consumed gas: 0.010) [ 14 13 12 @@ -2821,7 +2821,7 @@ trace 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 (remaining gas: 1039835.061 units remaining) + - location: 172 (just consumed gas: 0.010) [ 15 14 13 @@ -2833,7 +2833,7 @@ trace 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 (remaining gas: 1039835.051 units remaining) + - location: 172 (just consumed gas: 0.010) [ 16 15 14 @@ -2846,7 +2846,7 @@ trace 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 (remaining gas: 1039835.041 units remaining) + - location: 172 (just consumed gas: 0.010) [ 17 16 15 @@ -2860,7 +2860,7 @@ trace 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 (remaining gas: 1039835.041 units remaining) + - location: 172 (just consumed gas: 0) [ 17 16 15 @@ -2874,36 +2874,36 @@ trace 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 (remaining gas: 1039835.041 units remaining) + - 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 (remaining gas: 1039835.031 units remaining) + - 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 (remaining gas: 1039835.006 units remaining) + - 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 (remaining gas: 1039834.996 units remaining) + - 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 (remaining gas: 1039834.986 units remaining) + - 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 (remaining gas: 1039834.976 units remaining) + - 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 (remaining gas: 1039834.966 units remaining) + - location: 176 (just consumed gas: 0.010) [ 12 11 10 @@ -2911,7 +2911,7 @@ trace 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 (remaining gas: 1039834.956 units remaining) + - location: 176 (just consumed gas: 0.010) [ 13 12 11 @@ -2920,7 +2920,7 @@ trace 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 (remaining gas: 1039834.946 units remaining) + - location: 176 (just consumed gas: 0.010) [ 14 13 12 @@ -2930,7 +2930,7 @@ trace 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 (remaining gas: 1039834.936 units remaining) + - location: 176 (just consumed gas: 0.010) [ 15 14 13 @@ -2941,7 +2941,7 @@ trace 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 (remaining gas: 1039834.926 units remaining) + - location: 176 (just consumed gas: 0.010) [ 16 15 14 @@ -2953,7 +2953,7 @@ trace 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 (remaining gas: 1039834.916 units remaining) + - location: 176 (just consumed gas: 0.010) [ 17 16 15 @@ -2966,7 +2966,7 @@ trace 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 (remaining gas: 1039834.916 units remaining) + - location: 176 (just consumed gas: 0) [ 17 16 15 @@ -2979,36 +2979,36 @@ trace 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 (remaining gas: 1039834.916 units remaining) + - 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 (remaining gas: 1039834.906 units remaining) + - 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 (remaining gas: 1039834.881 units remaining) + - 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 (remaining gas: 1039834.871 units remaining) + - 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 (remaining gas: 1039834.861 units remaining) + - 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 (remaining gas: 1039834.851 units remaining) + - 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 (remaining gas: 1039834.841 units remaining) + - location: 180 (just consumed gas: 0.010) [ 13 12 11 @@ -3016,7 +3016,7 @@ trace 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 (remaining gas: 1039834.831 units remaining) + - location: 180 (just consumed gas: 0.010) [ 14 13 12 @@ -3025,7 +3025,7 @@ trace 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 (remaining gas: 1039834.821 units remaining) + - location: 180 (just consumed gas: 0.010) [ 15 14 13 @@ -3035,7 +3035,7 @@ trace 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 (remaining gas: 1039834.811 units remaining) + - location: 180 (just consumed gas: 0.010) [ 16 15 14 @@ -3046,7 +3046,7 @@ trace 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 (remaining gas: 1039834.801 units remaining) + - location: 180 (just consumed gas: 0.010) [ 17 16 15 @@ -3058,7 +3058,7 @@ trace 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 (remaining gas: 1039834.801 units remaining) + - location: 180 (just consumed gas: 0) [ 17 16 15 @@ -3070,36 +3070,36 @@ trace 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 (remaining gas: 1039834.801 units remaining) + - 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 (remaining gas: 1039834.791 units remaining) + - 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 (remaining gas: 1039834.766 units remaining) + - 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 (remaining gas: 1039834.756 units remaining) + - 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 (remaining gas: 1039834.746 units remaining) + - 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 (remaining gas: 1039834.736 units remaining) + - 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 (remaining gas: 1039834.726 units remaining) + - location: 184 (just consumed gas: 0.010) [ 14 13 12 @@ -3107,7 +3107,7 @@ trace 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 (remaining gas: 1039834.716 units remaining) + - location: 184 (just consumed gas: 0.010) [ 15 14 13 @@ -3116,7 +3116,7 @@ trace 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 (remaining gas: 1039834.706 units remaining) + - location: 184 (just consumed gas: 0.010) [ 16 15 14 @@ -3126,7 +3126,7 @@ trace 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 (remaining gas: 1039834.696 units remaining) + - location: 184 (just consumed gas: 0.010) [ 17 16 15 @@ -3137,7 +3137,7 @@ trace 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 (remaining gas: 1039834.696 units remaining) + - location: 184 (just consumed gas: 0) [ 17 16 15 @@ -3148,36 +3148,36 @@ trace 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 (remaining gas: 1039834.696 units remaining) + - 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 (remaining gas: 1039834.686 units remaining) + - 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 (remaining gas: 1039834.661 units remaining) + - 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 (remaining gas: 1039834.651 units remaining) + - 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 (remaining gas: 1039834.641 units remaining) + - 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 (remaining gas: 1039834.631 units remaining) + - 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 (remaining gas: 1039834.621 units remaining) + - location: 188 (just consumed gas: 0.010) [ 15 14 13 @@ -3185,7 +3185,7 @@ trace 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 (remaining gas: 1039834.611 units remaining) + - location: 188 (just consumed gas: 0.010) [ 16 15 14 @@ -3194,7 +3194,7 @@ trace 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 (remaining gas: 1039834.601 units remaining) + - location: 188 (just consumed gas: 0.010) [ 17 16 15 @@ -3204,7 +3204,7 @@ trace 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 (remaining gas: 1039834.601 units remaining) + - location: 188 (just consumed gas: 0) [ 17 16 15 @@ -3214,36 +3214,36 @@ trace 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 (remaining gas: 1039834.601 units remaining) + - 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 (remaining gas: 1039834.591 units remaining) + - 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 (remaining gas: 1039834.566 units remaining) + - 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 (remaining gas: 1039834.556 units remaining) + - 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 (remaining gas: 1039834.546 units remaining) + - 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 (remaining gas: 1039834.536 units remaining) + - 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 (remaining gas: 1039834.526 units remaining) + - location: 192 (just consumed gas: 0.010) [ 16 15 14 @@ -3251,7 +3251,7 @@ trace 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 (remaining gas: 1039834.516 units remaining) + - location: 192 (just consumed gas: 0.010) [ 17 16 15 @@ -3260,7 +3260,7 @@ trace 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 (remaining gas: 1039834.516 units remaining) + - location: 192 (just consumed gas: 0) [ 17 16 15 @@ -3269,36 +3269,36 @@ trace 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 (remaining gas: 1039834.516 units remaining) + - 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 (remaining gas: 1039834.506 units remaining) + - 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 (remaining gas: 1039834.481 units remaining) + - 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 (remaining gas: 1039834.471 units remaining) + - 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 (remaining gas: 1039834.461 units remaining) + - 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 (remaining gas: 1039834.451 units remaining) + - 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 (remaining gas: 1039834.441 units remaining) + - location: 196 (just consumed gas: 0.010) [ 17 16 15 @@ -3306,7 +3306,7 @@ trace 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 (remaining gas: 1039834.441 units remaining) + - location: 196 (just consumed gas: 0) [ 17 16 15 @@ -3314,118 +3314,118 @@ trace 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 (remaining gas: 1039834.441 units remaining) + - 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 (remaining gas: 1039834.431 units remaining) + - 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 (remaining gas: 1039834.406 units remaining) + - 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 (remaining gas: 1039834.396 units remaining) + - 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 (remaining gas: 1039834.386 units remaining) + - 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 (remaining gas: 1039834.376 units remaining) + - 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 (remaining gas: 1039834.376 units remaining) + - 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 (remaining gas: 1039834.376 units remaining) + - 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 (remaining gas: 1039834.366 units remaining) + - 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 (remaining gas: 1039834.341 units remaining) + - 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 (remaining gas: 1039834.331 units remaining) + - 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 (remaining gas: 1039834.321 units remaining) + - 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 (remaining gas: 1039834.321 units remaining) + - 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 (remaining gas: 1039834.321 units remaining) + - 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 (remaining gas: 1039834.311 units remaining) + - 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 (remaining gas: 1039834.286 units remaining) + - 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 (remaining gas: 1039834.276 units remaining) + - 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 (remaining gas: 1039834.276 units remaining) + - 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 (remaining gas: 1039834.276 units remaining) + - 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 (remaining gas: 1039834.266 units remaining) + - 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 (remaining gas: 1039834.241 units remaining) + - 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 (remaining gas: 1039834.231 units remaining) + - 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 (remaining gas: 1039833.476 units remaining) + - location: 218 (just consumed gas: 0.755) [ 0 ] - - location: 219 (remaining gas: 1039833.466 units remaining) + - location: 219 (just consumed gas: 0.010) [ True ] - - location: 220 (remaining gas: 1039833.466 units remaining) + - location: 220 (just consumed gas: 0) [ ] - - location: 220 (remaining gas: 1039833.451 units remaining) + - location: 220 (just consumed gas: 0.015) [ ] - - location: 226 (remaining gas: 1039833.441 units remaining) + - location: 226 (just consumed gas: 0.010) [ Unit ] - - location: 227 (remaining gas: 1039833.431 units remaining) + - location: 227 (just consumed gas: 0.010) [ {} Unit ] - - location: 229 (remaining gas: 1039833.421 units remaining) + - location: 229 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out index 3e05a85881b4a2acc0f00753d7260f97b5dd9b71..85094931fbb8a2d3cac007a3b2d12d959dcacc3d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out @@ -7,111 +7,111 @@ emitted operations big_map diff trace - - location: 24 (remaining gas: 1039840.257 units remaining) + - 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 (remaining gas: 1039840.247 units remaining) + - 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 (remaining gas: 1039840.237 units remaining) + - 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 (remaining gas: 1039840.227 units remaining) + - 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 (remaining gas: 1039840.227 units remaining) + - 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 (remaining gas: 1039840.217 units remaining) + - 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 (remaining gas: 1039840.192 units remaining) + - 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 (remaining gas: 1039840.192 units remaining) + - 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 (remaining gas: 1039840.182 units remaining) + - 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 (remaining gas: 1039840.157 units remaining) + - 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 (remaining gas: 1039840.147 units remaining) + - 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 (remaining gas: 1039840.147 units remaining) + - 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 (remaining gas: 1039840.147 units remaining) + - 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 (remaining gas: 1039840.137 units remaining) + - 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 (remaining gas: 1039840.112 units remaining) + - 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 (remaining gas: 1039840.102 units remaining) + - 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 (remaining gas: 1039840.092 units remaining) + - 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 (remaining gas: 1039840.092 units remaining) + - 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 (remaining gas: 1039840.092 units remaining) + - 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 (remaining gas: 1039840.082 units remaining) + - 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 (remaining gas: 1039840.057 units remaining) + - 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 (remaining gas: 1039840.047 units remaining) + - 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 (remaining gas: 1039840.037 units remaining) + - 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 (remaining gas: 1039840.027 units remaining) + - location: 39 (just consumed gas: 0.010) [ 2 3 12 @@ -119,7 +119,7 @@ trace 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 (remaining gas: 1039840.027 units remaining) + - location: 39 (just consumed gas: 0) [ 2 3 12 @@ -127,32 +127,32 @@ trace 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 (remaining gas: 1039840.027 units remaining) + - 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 (remaining gas: 1039840.017 units remaining) + - 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 (remaining gas: 1039839.992 units remaining) + - 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 (remaining gas: 1039839.982 units remaining) + - 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 (remaining gas: 1039839.972 units remaining) + - 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 (remaining gas: 1039839.962 units remaining) + - location: 43 (just consumed gas: 0.010) [ 3 12 16 @@ -160,7 +160,7 @@ trace 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 (remaining gas: 1039839.952 units remaining) + - location: 43 (just consumed gas: 0.010) [ 2 3 12 @@ -169,7 +169,7 @@ trace 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 (remaining gas: 1039839.952 units remaining) + - location: 43 (just consumed gas: 0) [ 2 3 12 @@ -178,32 +178,32 @@ trace 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 (remaining gas: 1039839.952 units remaining) + - 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 (remaining gas: 1039839.942 units remaining) + - 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 (remaining gas: 1039839.917 units remaining) + - 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 (remaining gas: 1039839.907 units remaining) + - 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 (remaining gas: 1039839.897 units remaining) + - 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 (remaining gas: 1039839.887 units remaining) + - location: 47 (just consumed gas: 0.010) [ 12 16 10 @@ -211,7 +211,7 @@ trace 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 (remaining gas: 1039839.877 units remaining) + - location: 47 (just consumed gas: 0.010) [ 3 12 16 @@ -220,7 +220,7 @@ trace 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 (remaining gas: 1039839.867 units remaining) + - location: 47 (just consumed gas: 0.010) [ 2 3 12 @@ -230,7 +230,7 @@ trace 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 (remaining gas: 1039839.867 units remaining) + - location: 47 (just consumed gas: 0) [ 2 3 12 @@ -240,32 +240,32 @@ trace 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 (remaining gas: 1039839.867 units remaining) + - 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 (remaining gas: 1039839.857 units remaining) + - 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 (remaining gas: 1039839.832 units remaining) + - 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 (remaining gas: 1039839.822 units remaining) + - 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 (remaining gas: 1039839.812 units remaining) + - 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 (remaining gas: 1039839.802 units remaining) + - location: 51 (just consumed gas: 0.010) [ 16 10 14 @@ -273,7 +273,7 @@ trace 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 (remaining gas: 1039839.792 units remaining) + - location: 51 (just consumed gas: 0.010) [ 12 16 10 @@ -282,7 +282,7 @@ trace 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 (remaining gas: 1039839.782 units remaining) + - location: 51 (just consumed gas: 0.010) [ 3 12 16 @@ -292,7 +292,7 @@ trace 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 (remaining gas: 1039839.772 units remaining) + - location: 51 (just consumed gas: 0.010) [ 2 3 12 @@ -303,7 +303,7 @@ trace 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 (remaining gas: 1039839.772 units remaining) + - location: 51 (just consumed gas: 0) [ 2 3 12 @@ -314,32 +314,32 @@ trace 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 (remaining gas: 1039839.772 units remaining) + - 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 (remaining gas: 1039839.762 units remaining) + - 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 (remaining gas: 1039839.737 units remaining) + - 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 (remaining gas: 1039839.727 units remaining) + - 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 (remaining gas: 1039839.717 units remaining) + - 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 (remaining gas: 1039839.707 units remaining) + - location: 55 (just consumed gas: 0.010) [ 10 14 19 @@ -347,7 +347,7 @@ trace 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 (remaining gas: 1039839.697 units remaining) + - location: 55 (just consumed gas: 0.010) [ 16 10 14 @@ -356,7 +356,7 @@ trace 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 (remaining gas: 1039839.687 units remaining) + - location: 55 (just consumed gas: 0.010) [ 12 16 10 @@ -366,7 +366,7 @@ trace 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 (remaining gas: 1039839.677 units remaining) + - location: 55 (just consumed gas: 0.010) [ 3 12 16 @@ -377,7 +377,7 @@ trace 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 (remaining gas: 1039839.667 units remaining) + - location: 55 (just consumed gas: 0.010) [ 2 3 12 @@ -389,7 +389,7 @@ trace 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 (remaining gas: 1039839.667 units remaining) + - location: 55 (just consumed gas: 0) [ 2 3 12 @@ -401,32 +401,32 @@ trace 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 (remaining gas: 1039839.667 units remaining) + - 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 (remaining gas: 1039839.657 units remaining) + - 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 (remaining gas: 1039839.632 units remaining) + - 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 (remaining gas: 1039839.622 units remaining) + - 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 (remaining gas: 1039839.612 units remaining) + - 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 (remaining gas: 1039839.602 units remaining) + - location: 59 (just consumed gas: 0.010) [ 14 19 9 @@ -434,7 +434,7 @@ trace 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 (remaining gas: 1039839.592 units remaining) + - location: 59 (just consumed gas: 0.010) [ 10 14 19 @@ -443,7 +443,7 @@ trace 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 (remaining gas: 1039839.582 units remaining) + - location: 59 (just consumed gas: 0.010) [ 16 10 14 @@ -453,7 +453,7 @@ trace 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 (remaining gas: 1039839.572 units remaining) + - location: 59 (just consumed gas: 0.010) [ 12 16 10 @@ -464,7 +464,7 @@ trace 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 (remaining gas: 1039839.562 units remaining) + - location: 59 (just consumed gas: 0.010) [ 3 12 16 @@ -476,7 +476,7 @@ trace 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 (remaining gas: 1039839.552 units remaining) + - location: 59 (just consumed gas: 0.010) [ 2 3 12 @@ -489,7 +489,7 @@ trace 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 (remaining gas: 1039839.552 units remaining) + - location: 59 (just consumed gas: 0) [ 2 3 12 @@ -502,32 +502,32 @@ trace 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 (remaining gas: 1039839.552 units remaining) + - 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 (remaining gas: 1039839.542 units remaining) + - 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 (remaining gas: 1039839.517 units remaining) + - 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 (remaining gas: 1039839.507 units remaining) + - 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 (remaining gas: 1039839.497 units remaining) + - 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 (remaining gas: 1039839.487 units remaining) + - location: 63 (just consumed gas: 0.010) [ 19 9 18 @@ -535,7 +535,7 @@ trace 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 (remaining gas: 1039839.477 units remaining) + - location: 63 (just consumed gas: 0.010) [ 14 19 9 @@ -544,7 +544,7 @@ trace 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 (remaining gas: 1039839.467 units remaining) + - location: 63 (just consumed gas: 0.010) [ 10 14 19 @@ -554,7 +554,7 @@ trace 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 (remaining gas: 1039839.457 units remaining) + - location: 63 (just consumed gas: 0.010) [ 16 10 14 @@ -565,7 +565,7 @@ trace 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 (remaining gas: 1039839.447 units remaining) + - location: 63 (just consumed gas: 0.010) [ 12 16 10 @@ -577,7 +577,7 @@ trace 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 (remaining gas: 1039839.437 units remaining) + - location: 63 (just consumed gas: 0.010) [ 3 12 16 @@ -590,7 +590,7 @@ trace 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 (remaining gas: 1039839.427 units remaining) + - location: 63 (just consumed gas: 0.010) [ 2 3 12 @@ -604,7 +604,7 @@ trace 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 (remaining gas: 1039839.427 units remaining) + - location: 63 (just consumed gas: 0) [ 2 3 12 @@ -618,32 +618,32 @@ trace 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 (remaining gas: 1039839.427 units remaining) + - 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 (remaining gas: 1039839.417 units remaining) + - 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 (remaining gas: 1039839.392 units remaining) + - 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 (remaining gas: 1039839.382 units remaining) + - 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 (remaining gas: 1039839.372 units remaining) + - 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 (remaining gas: 1039839.362 units remaining) + - location: 67 (just consumed gas: 0.010) [ 9 18 6 @@ -651,7 +651,7 @@ trace 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 (remaining gas: 1039839.352 units remaining) + - location: 67 (just consumed gas: 0.010) [ 19 9 18 @@ -660,7 +660,7 @@ trace 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 (remaining gas: 1039839.342 units remaining) + - location: 67 (just consumed gas: 0.010) [ 14 19 9 @@ -670,7 +670,7 @@ trace 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 (remaining gas: 1039839.332 units remaining) + - location: 67 (just consumed gas: 0.010) [ 10 14 19 @@ -681,7 +681,7 @@ trace 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 (remaining gas: 1039839.322 units remaining) + - location: 67 (just consumed gas: 0.010) [ 16 10 14 @@ -693,7 +693,7 @@ trace 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 (remaining gas: 1039839.312 units remaining) + - location: 67 (just consumed gas: 0.010) [ 12 16 10 @@ -706,7 +706,7 @@ trace 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 (remaining gas: 1039839.302 units remaining) + - location: 67 (just consumed gas: 0.010) [ 3 12 16 @@ -720,7 +720,7 @@ trace 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 (remaining gas: 1039839.292 units remaining) + - location: 67 (just consumed gas: 0.010) [ 2 3 12 @@ -735,7 +735,7 @@ trace 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 (remaining gas: 1039839.292 units remaining) + - location: 67 (just consumed gas: 0) [ 2 3 12 @@ -750,32 +750,32 @@ trace 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 (remaining gas: 1039839.292 units remaining) + - 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 (remaining gas: 1039839.282 units remaining) + - 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 (remaining gas: 1039839.257 units remaining) + - 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 (remaining gas: 1039839.247 units remaining) + - 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 (remaining gas: 1039839.237 units remaining) + - 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 (remaining gas: 1039839.227 units remaining) + - location: 71 (just consumed gas: 0.010) [ 18 6 8 @@ -783,7 +783,7 @@ trace 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 (remaining gas: 1039839.217 units remaining) + - location: 71 (just consumed gas: 0.010) [ 9 18 6 @@ -792,7 +792,7 @@ trace 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 (remaining gas: 1039839.207 units remaining) + - location: 71 (just consumed gas: 0.010) [ 19 9 18 @@ -802,7 +802,7 @@ trace 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 (remaining gas: 1039839.197 units remaining) + - location: 71 (just consumed gas: 0.010) [ 14 19 9 @@ -813,7 +813,7 @@ trace 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 (remaining gas: 1039839.187 units remaining) + - location: 71 (just consumed gas: 0.010) [ 10 14 19 @@ -825,7 +825,7 @@ trace 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 (remaining gas: 1039839.177 units remaining) + - location: 71 (just consumed gas: 0.010) [ 16 10 14 @@ -838,7 +838,7 @@ trace 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 (remaining gas: 1039839.167 units remaining) + - location: 71 (just consumed gas: 0.010) [ 12 16 10 @@ -852,7 +852,7 @@ trace 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 (remaining gas: 1039839.157 units remaining) + - location: 71 (just consumed gas: 0.010) [ 3 12 16 @@ -867,7 +867,7 @@ trace 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 (remaining gas: 1039839.147 units remaining) + - location: 71 (just consumed gas: 0.010) [ 2 3 12 @@ -883,7 +883,7 @@ trace 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 (remaining gas: 1039839.147 units remaining) + - location: 71 (just consumed gas: 0) [ 2 3 12 @@ -899,32 +899,32 @@ trace 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 (remaining gas: 1039839.147 units remaining) + - 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 (remaining gas: 1039839.137 units remaining) + - 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 (remaining gas: 1039839.112 units remaining) + - 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 (remaining gas: 1039839.102 units remaining) + - 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 (remaining gas: 1039839.092 units remaining) + - 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 (remaining gas: 1039839.082 units remaining) + - location: 75 (just consumed gas: 0.010) [ 6 8 11 @@ -932,7 +932,7 @@ trace 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 (remaining gas: 1039839.072 units remaining) + - location: 75 (just consumed gas: 0.010) [ 18 6 8 @@ -941,7 +941,7 @@ trace 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 (remaining gas: 1039839.062 units remaining) + - location: 75 (just consumed gas: 0.010) [ 9 18 6 @@ -951,7 +951,7 @@ trace 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 (remaining gas: 1039839.052 units remaining) + - location: 75 (just consumed gas: 0.010) [ 19 9 18 @@ -962,7 +962,7 @@ trace 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 (remaining gas: 1039839.042 units remaining) + - location: 75 (just consumed gas: 0.010) [ 14 19 9 @@ -974,7 +974,7 @@ trace 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 (remaining gas: 1039839.032 units remaining) + - location: 75 (just consumed gas: 0.010) [ 10 14 19 @@ -987,7 +987,7 @@ trace 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 (remaining gas: 1039839.022 units remaining) + - location: 75 (just consumed gas: 0.010) [ 16 10 14 @@ -1001,7 +1001,7 @@ trace 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 (remaining gas: 1039839.012 units remaining) + - location: 75 (just consumed gas: 0.010) [ 12 16 10 @@ -1016,7 +1016,7 @@ trace 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 (remaining gas: 1039839.002 units remaining) + - location: 75 (just consumed gas: 0.010) [ 3 12 16 @@ -1032,7 +1032,7 @@ trace 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 (remaining gas: 1039838.992 units remaining) + - location: 75 (just consumed gas: 0.010) [ 2 3 12 @@ -1049,7 +1049,7 @@ trace 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 (remaining gas: 1039838.992 units remaining) + - location: 75 (just consumed gas: 0) [ 2 3 12 @@ -1066,32 +1066,32 @@ trace 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 (remaining gas: 1039838.992 units remaining) + - 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 (remaining gas: 1039838.982 units remaining) + - 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 (remaining gas: 1039838.957 units remaining) + - 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 (remaining gas: 1039838.947 units remaining) + - 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 (remaining gas: 1039838.937 units remaining) + - 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 (remaining gas: 1039838.927 units remaining) + - location: 79 (just consumed gas: 0.010) [ 8 11 4 @@ -1099,7 +1099,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039838.917 units remaining) + - location: 79 (just consumed gas: 0.010) [ 6 8 11 @@ -1108,7 +1108,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039838.907 units remaining) + - location: 79 (just consumed gas: 0.010) [ 18 6 8 @@ -1118,7 +1118,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039838.897 units remaining) + - location: 79 (just consumed gas: 0.010) [ 9 18 6 @@ -1129,7 +1129,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039838.887 units remaining) + - location: 79 (just consumed gas: 0.010) [ 19 9 18 @@ -1141,7 +1141,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039838.877 units remaining) + - location: 79 (just consumed gas: 0.010) [ 14 19 9 @@ -1154,7 +1154,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039838.867 units remaining) + - location: 79 (just consumed gas: 0.010) [ 10 14 19 @@ -1168,7 +1168,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039838.857 units remaining) + - location: 79 (just consumed gas: 0.010) [ 16 10 14 @@ -1183,7 +1183,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039838.847 units remaining) + - location: 79 (just consumed gas: 0.010) [ 12 16 10 @@ -1199,7 +1199,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039838.837 units remaining) + - location: 79 (just consumed gas: 0.010) [ 3 12 16 @@ -1216,7 +1216,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039838.827 units remaining) + - location: 79 (just consumed gas: 0.010) [ 2 3 12 @@ -1234,7 +1234,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039838.827 units remaining) + - location: 79 (just consumed gas: 0) [ 2 3 12 @@ -1252,32 +1252,32 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039838.827 units remaining) + - 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 (remaining gas: 1039838.817 units remaining) + - 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 (remaining gas: 1039838.792 units remaining) + - 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 (remaining gas: 1039838.782 units remaining) + - 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 (remaining gas: 1039838.772 units remaining) + - 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 (remaining gas: 1039838.762 units remaining) + - location: 83 (just consumed gas: 0.010) [ 11 4 13 @@ -1285,7 +1285,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039838.752 units remaining) + - location: 83 (just consumed gas: 0.010) [ 8 11 4 @@ -1294,7 +1294,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039838.742 units remaining) + - location: 83 (just consumed gas: 0.010) [ 6 8 11 @@ -1304,7 +1304,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039838.732 units remaining) + - location: 83 (just consumed gas: 0.010) [ 18 6 8 @@ -1315,7 +1315,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039838.722 units remaining) + - location: 83 (just consumed gas: 0.010) [ 9 18 6 @@ -1327,7 +1327,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039838.712 units remaining) + - location: 83 (just consumed gas: 0.010) [ 19 9 18 @@ -1340,7 +1340,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039838.702 units remaining) + - location: 83 (just consumed gas: 0.010) [ 14 19 9 @@ -1354,7 +1354,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039838.692 units remaining) + - location: 83 (just consumed gas: 0.010) [ 10 14 19 @@ -1369,7 +1369,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039838.682 units remaining) + - location: 83 (just consumed gas: 0.010) [ 16 10 14 @@ -1385,7 +1385,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039838.672 units remaining) + - location: 83 (just consumed gas: 0.010) [ 12 16 10 @@ -1402,7 +1402,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039838.662 units remaining) + - location: 83 (just consumed gas: 0.010) [ 3 12 16 @@ -1420,7 +1420,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039838.652 units remaining) + - location: 83 (just consumed gas: 0.010) [ 2 3 12 @@ -1439,7 +1439,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039838.652 units remaining) + - location: 83 (just consumed gas: 0) [ 2 3 12 @@ -1458,7 +1458,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 87 (remaining gas: 1039838.622 units remaining) + - location: 87 (just consumed gas: 0.030) [ 2 3 12 @@ -1477,7 +1477,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 89 (remaining gas: 1039838.586 units remaining) + - location: 89 (just consumed gas: 0.036) [ 3 2 12 @@ -1496,7 +1496,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 91 (remaining gas: 1039838.543 units remaining) + - location: 91 (just consumed gas: 0.043) [ 12 3 2 @@ -1515,7 +1515,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 93 (remaining gas: 1039838.494 units remaining) + - location: 93 (just consumed gas: 0.049) [ 16 12 3 @@ -1534,7 +1534,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 95 (remaining gas: 1039838.437 units remaining) + - location: 95 (just consumed gas: 0.057) [ 10 16 12 @@ -1553,7 +1553,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 97 (remaining gas: 1039838.374 units remaining) + - location: 97 (just consumed gas: 0.063) [ 14 10 16 @@ -1572,7 +1572,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 99 (remaining gas: 1039838.304 units remaining) + - location: 99 (just consumed gas: 0.070) [ 19 14 10 @@ -1591,7 +1591,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 101 (remaining gas: 1039838.228 units remaining) + - location: 101 (just consumed gas: 0.076) [ 9 19 14 @@ -1610,7 +1610,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 103 (remaining gas: 1039838.144 units remaining) + - location: 103 (just consumed gas: 0.084) [ 18 9 19 @@ -1629,7 +1629,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 105 (remaining gas: 1039838.054 units remaining) + - location: 105 (just consumed gas: 0.090) [ 6 18 9 @@ -1648,7 +1648,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 107 (remaining gas: 1039837.957 units remaining) + - location: 107 (just consumed gas: 0.097) [ 8 6 18 @@ -1667,7 +1667,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 109 (remaining gas: 1039837.854 units remaining) + - location: 109 (just consumed gas: 0.103) [ 11 8 6 @@ -1686,7 +1686,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 111 (remaining gas: 1039837.743 units remaining) + - location: 111 (just consumed gas: 0.111) [ 4 11 8 @@ -1705,7 +1705,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 113 (remaining gas: 1039837.626 units remaining) + - location: 113 (just consumed gas: 0.117) [ 13 4 11 @@ -1724,7 +1724,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 115 (remaining gas: 1039837.502 units remaining) + - location: 115 (just consumed gas: 0.124) [ 15 13 4 @@ -1743,7 +1743,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 117 (remaining gas: 1039837.372 units remaining) + - location: 117 (just consumed gas: 0.130) [ 5 15 13 @@ -1762,7 +1762,7 @@ trace 2 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 119 (remaining gas: 1039837.234 units remaining) + - location: 119 (just consumed gas: 0.138) [ 1 5 15 @@ -1781,7 +1781,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 121 (remaining gas: 1039837.204 units remaining) + - location: 121 (just consumed gas: 0.030) [ 1 5 15 @@ -1800,7 +1800,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 123 (remaining gas: 1039837.168 units remaining) + - location: 123 (just consumed gas: 0.036) [ 5 1 15 @@ -1819,7 +1819,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 125 (remaining gas: 1039837.125 units remaining) + - location: 125 (just consumed gas: 0.043) [ 15 5 1 @@ -1838,7 +1838,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 127 (remaining gas: 1039837.076 units remaining) + - location: 127 (just consumed gas: 0.049) [ 13 15 5 @@ -1857,7 +1857,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 129 (remaining gas: 1039837.019 units remaining) + - location: 129 (just consumed gas: 0.057) [ 4 13 15 @@ -1876,7 +1876,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 131 (remaining gas: 1039836.956 units remaining) + - location: 131 (just consumed gas: 0.063) [ 11 4 13 @@ -1895,7 +1895,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 133 (remaining gas: 1039836.886 units remaining) + - location: 133 (just consumed gas: 0.070) [ 8 11 4 @@ -1914,7 +1914,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 135 (remaining gas: 1039836.810 units remaining) + - location: 135 (just consumed gas: 0.076) [ 6 8 11 @@ -1933,7 +1933,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 137 (remaining gas: 1039836.726 units remaining) + - location: 137 (just consumed gas: 0.084) [ 18 6 8 @@ -1952,7 +1952,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 139 (remaining gas: 1039836.636 units remaining) + - location: 139 (just consumed gas: 0.090) [ 9 18 6 @@ -1971,7 +1971,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 141 (remaining gas: 1039836.539 units remaining) + - location: 141 (just consumed gas: 0.097) [ 19 9 18 @@ -1990,7 +1990,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 143 (remaining gas: 1039836.436 units remaining) + - location: 143 (just consumed gas: 0.103) [ 14 19 9 @@ -2009,7 +2009,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 145 (remaining gas: 1039836.325 units remaining) + - location: 145 (just consumed gas: 0.111) [ 10 14 19 @@ -2028,7 +2028,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 147 (remaining gas: 1039836.208 units remaining) + - location: 147 (just consumed gas: 0.117) [ 16 10 14 @@ -2047,7 +2047,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 149 (remaining gas: 1039836.084 units remaining) + - location: 149 (just consumed gas: 0.124) [ 12 16 10 @@ -2066,7 +2066,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 151 (remaining gas: 1039835.954 units remaining) + - location: 151 (just consumed gas: 0.130) [ 3 12 16 @@ -2085,7 +2085,7 @@ trace 1 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 153 (remaining gas: 1039835.816 units remaining) + - location: 153 (just consumed gas: 0.138) [ 2 3 12 @@ -2104,36 +2104,36 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039835.816 units remaining) + - 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 (remaining gas: 1039835.806 units remaining) + - 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 (remaining gas: 1039835.781 units remaining) + - 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 (remaining gas: 1039835.771 units remaining) + - 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 (remaining gas: 1039835.761 units remaining) + - 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 (remaining gas: 1039835.751 units remaining) + - 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 (remaining gas: 1039835.741 units remaining) + - location: 156 (just consumed gas: 0.010) [ 8 11 4 @@ -2141,7 +2141,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039835.731 units remaining) + - location: 156 (just consumed gas: 0.010) [ 6 8 11 @@ -2150,7 +2150,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039835.721 units remaining) + - location: 156 (just consumed gas: 0.010) [ 18 6 8 @@ -2160,7 +2160,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039835.711 units remaining) + - location: 156 (just consumed gas: 0.010) [ 9 18 6 @@ -2171,7 +2171,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039835.701 units remaining) + - location: 156 (just consumed gas: 0.010) [ 19 9 18 @@ -2183,7 +2183,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039835.691 units remaining) + - location: 156 (just consumed gas: 0.010) [ 14 19 9 @@ -2196,7 +2196,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039835.681 units remaining) + - location: 156 (just consumed gas: 0.010) [ 10 14 19 @@ -2210,7 +2210,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039835.671 units remaining) + - location: 156 (just consumed gas: 0.010) [ 16 10 14 @@ -2225,7 +2225,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039835.661 units remaining) + - location: 156 (just consumed gas: 0.010) [ 12 16 10 @@ -2241,7 +2241,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039835.651 units remaining) + - location: 156 (just consumed gas: 0.010) [ 3 12 16 @@ -2258,7 +2258,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039835.641 units remaining) + - location: 156 (just consumed gas: 0.010) [ 2 3 12 @@ -2276,7 +2276,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039835.641 units remaining) + - location: 156 (just consumed gas: 0) [ 2 3 12 @@ -2294,36 +2294,36 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039835.641 units remaining) + - 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 (remaining gas: 1039835.631 units remaining) + - 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 (remaining gas: 1039835.606 units remaining) + - 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 (remaining gas: 1039835.596 units remaining) + - 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 (remaining gas: 1039835.586 units remaining) + - 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 (remaining gas: 1039835.576 units remaining) + - 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 (remaining gas: 1039835.566 units remaining) + - location: 160 (just consumed gas: 0.010) [ 6 8 11 @@ -2331,7 +2331,7 @@ trace 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 (remaining gas: 1039835.556 units remaining) + - location: 160 (just consumed gas: 0.010) [ 18 6 8 @@ -2340,7 +2340,7 @@ trace 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 (remaining gas: 1039835.546 units remaining) + - location: 160 (just consumed gas: 0.010) [ 9 18 6 @@ -2350,7 +2350,7 @@ trace 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 (remaining gas: 1039835.536 units remaining) + - location: 160 (just consumed gas: 0.010) [ 19 9 18 @@ -2361,7 +2361,7 @@ trace 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 (remaining gas: 1039835.526 units remaining) + - location: 160 (just consumed gas: 0.010) [ 14 19 9 @@ -2373,7 +2373,7 @@ trace 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 (remaining gas: 1039835.516 units remaining) + - location: 160 (just consumed gas: 0.010) [ 10 14 19 @@ -2386,7 +2386,7 @@ trace 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 (remaining gas: 1039835.506 units remaining) + - location: 160 (just consumed gas: 0.010) [ 16 10 14 @@ -2400,7 +2400,7 @@ trace 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 (remaining gas: 1039835.496 units remaining) + - location: 160 (just consumed gas: 0.010) [ 12 16 10 @@ -2415,7 +2415,7 @@ trace 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 (remaining gas: 1039835.486 units remaining) + - location: 160 (just consumed gas: 0.010) [ 3 12 16 @@ -2431,7 +2431,7 @@ trace 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 (remaining gas: 1039835.476 units remaining) + - location: 160 (just consumed gas: 0.010) [ 2 3 12 @@ -2448,7 +2448,7 @@ trace 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 (remaining gas: 1039835.476 units remaining) + - location: 160 (just consumed gas: 0) [ 2 3 12 @@ -2465,36 +2465,36 @@ trace 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 (remaining gas: 1039835.476 units remaining) + - 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 (remaining gas: 1039835.466 units remaining) + - 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 (remaining gas: 1039835.441 units remaining) + - 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 (remaining gas: 1039835.431 units remaining) + - 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 (remaining gas: 1039835.421 units remaining) + - 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 (remaining gas: 1039835.411 units remaining) + - 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 (remaining gas: 1039835.401 units remaining) + - location: 164 (just consumed gas: 0.010) [ 18 6 8 @@ -2502,7 +2502,7 @@ trace 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 (remaining gas: 1039835.391 units remaining) + - location: 164 (just consumed gas: 0.010) [ 9 18 6 @@ -2511,7 +2511,7 @@ trace 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 (remaining gas: 1039835.381 units remaining) + - location: 164 (just consumed gas: 0.010) [ 19 9 18 @@ -2521,7 +2521,7 @@ trace 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 (remaining gas: 1039835.371 units remaining) + - location: 164 (just consumed gas: 0.010) [ 14 19 9 @@ -2532,7 +2532,7 @@ trace 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 (remaining gas: 1039835.361 units remaining) + - location: 164 (just consumed gas: 0.010) [ 10 14 19 @@ -2544,7 +2544,7 @@ trace 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 (remaining gas: 1039835.351 units remaining) + - location: 164 (just consumed gas: 0.010) [ 16 10 14 @@ -2557,7 +2557,7 @@ trace 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 (remaining gas: 1039835.341 units remaining) + - location: 164 (just consumed gas: 0.010) [ 12 16 10 @@ -2571,7 +2571,7 @@ trace 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 (remaining gas: 1039835.331 units remaining) + - location: 164 (just consumed gas: 0.010) [ 3 12 16 @@ -2586,7 +2586,7 @@ trace 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 (remaining gas: 1039835.321 units remaining) + - location: 164 (just consumed gas: 0.010) [ 2 3 12 @@ -2602,7 +2602,7 @@ trace 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 (remaining gas: 1039835.321 units remaining) + - location: 164 (just consumed gas: 0) [ 2 3 12 @@ -2618,36 +2618,36 @@ trace 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 (remaining gas: 1039835.321 units remaining) + - 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 (remaining gas: 1039835.311 units remaining) + - 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 (remaining gas: 1039835.286 units remaining) + - 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 (remaining gas: 1039835.276 units remaining) + - 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 (remaining gas: 1039835.266 units remaining) + - 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 (remaining gas: 1039835.256 units remaining) + - 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 (remaining gas: 1039835.246 units remaining) + - location: 168 (just consumed gas: 0.010) [ 9 18 6 @@ -2655,7 +2655,7 @@ trace 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 (remaining gas: 1039835.236 units remaining) + - location: 168 (just consumed gas: 0.010) [ 19 9 18 @@ -2664,7 +2664,7 @@ trace 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 (remaining gas: 1039835.226 units remaining) + - location: 168 (just consumed gas: 0.010) [ 14 19 9 @@ -2674,7 +2674,7 @@ trace 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 (remaining gas: 1039835.216 units remaining) + - location: 168 (just consumed gas: 0.010) [ 10 14 19 @@ -2685,7 +2685,7 @@ trace 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 (remaining gas: 1039835.206 units remaining) + - location: 168 (just consumed gas: 0.010) [ 16 10 14 @@ -2697,7 +2697,7 @@ trace 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 (remaining gas: 1039835.196 units remaining) + - location: 168 (just consumed gas: 0.010) [ 12 16 10 @@ -2710,7 +2710,7 @@ trace 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 (remaining gas: 1039835.186 units remaining) + - location: 168 (just consumed gas: 0.010) [ 3 12 16 @@ -2724,7 +2724,7 @@ trace 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 (remaining gas: 1039835.176 units remaining) + - location: 168 (just consumed gas: 0.010) [ 2 3 12 @@ -2739,7 +2739,7 @@ trace 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 (remaining gas: 1039835.176 units remaining) + - location: 168 (just consumed gas: 0) [ 2 3 12 @@ -2754,36 +2754,36 @@ trace 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 (remaining gas: 1039835.176 units remaining) + - 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 (remaining gas: 1039835.166 units remaining) + - 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 (remaining gas: 1039835.141 units remaining) + - 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 (remaining gas: 1039835.131 units remaining) + - 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 (remaining gas: 1039835.121 units remaining) + - 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 (remaining gas: 1039835.111 units remaining) + - 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 (remaining gas: 1039835.101 units remaining) + - location: 172 (just consumed gas: 0.010) [ 19 9 18 @@ -2791,7 +2791,7 @@ trace 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 (remaining gas: 1039835.091 units remaining) + - location: 172 (just consumed gas: 0.010) [ 14 19 9 @@ -2800,7 +2800,7 @@ trace 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 (remaining gas: 1039835.081 units remaining) + - location: 172 (just consumed gas: 0.010) [ 10 14 19 @@ -2810,7 +2810,7 @@ trace 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 (remaining gas: 1039835.071 units remaining) + - location: 172 (just consumed gas: 0.010) [ 16 10 14 @@ -2821,7 +2821,7 @@ trace 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 (remaining gas: 1039835.061 units remaining) + - location: 172 (just consumed gas: 0.010) [ 12 16 10 @@ -2833,7 +2833,7 @@ trace 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 (remaining gas: 1039835.051 units remaining) + - location: 172 (just consumed gas: 0.010) [ 3 12 16 @@ -2846,7 +2846,7 @@ trace 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 (remaining gas: 1039835.041 units remaining) + - location: 172 (just consumed gas: 0.010) [ 2 3 12 @@ -2860,7 +2860,7 @@ trace 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 (remaining gas: 1039835.041 units remaining) + - location: 172 (just consumed gas: 0) [ 2 3 12 @@ -2874,36 +2874,36 @@ trace 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 (remaining gas: 1039835.041 units remaining) + - 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 (remaining gas: 1039835.031 units remaining) + - 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 (remaining gas: 1039835.006 units remaining) + - 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 (remaining gas: 1039834.996 units remaining) + - 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 (remaining gas: 1039834.986 units remaining) + - 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 (remaining gas: 1039834.976 units remaining) + - 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 (remaining gas: 1039834.966 units remaining) + - location: 176 (just consumed gas: 0.010) [ 14 19 9 @@ -2911,7 +2911,7 @@ trace 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 (remaining gas: 1039834.956 units remaining) + - location: 176 (just consumed gas: 0.010) [ 10 14 19 @@ -2920,7 +2920,7 @@ trace 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 (remaining gas: 1039834.946 units remaining) + - location: 176 (just consumed gas: 0.010) [ 16 10 14 @@ -2930,7 +2930,7 @@ trace 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 (remaining gas: 1039834.936 units remaining) + - location: 176 (just consumed gas: 0.010) [ 12 16 10 @@ -2941,7 +2941,7 @@ trace 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 (remaining gas: 1039834.926 units remaining) + - location: 176 (just consumed gas: 0.010) [ 3 12 16 @@ -2953,7 +2953,7 @@ trace 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 (remaining gas: 1039834.916 units remaining) + - location: 176 (just consumed gas: 0.010) [ 2 3 12 @@ -2966,7 +2966,7 @@ trace 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 (remaining gas: 1039834.916 units remaining) + - location: 176 (just consumed gas: 0) [ 2 3 12 @@ -2979,36 +2979,36 @@ trace 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 (remaining gas: 1039834.916 units remaining) + - 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 (remaining gas: 1039834.906 units remaining) + - 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 (remaining gas: 1039834.881 units remaining) + - 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 (remaining gas: 1039834.871 units remaining) + - 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 (remaining gas: 1039834.861 units remaining) + - 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 (remaining gas: 1039834.851 units remaining) + - 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 (remaining gas: 1039834.841 units remaining) + - location: 180 (just consumed gas: 0.010) [ 10 14 19 @@ -3016,7 +3016,7 @@ trace 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 (remaining gas: 1039834.831 units remaining) + - location: 180 (just consumed gas: 0.010) [ 16 10 14 @@ -3025,7 +3025,7 @@ trace 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 (remaining gas: 1039834.821 units remaining) + - location: 180 (just consumed gas: 0.010) [ 12 16 10 @@ -3035,7 +3035,7 @@ trace 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 (remaining gas: 1039834.811 units remaining) + - location: 180 (just consumed gas: 0.010) [ 3 12 16 @@ -3046,7 +3046,7 @@ trace 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 (remaining gas: 1039834.801 units remaining) + - location: 180 (just consumed gas: 0.010) [ 2 3 12 @@ -3058,7 +3058,7 @@ trace 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 (remaining gas: 1039834.801 units remaining) + - location: 180 (just consumed gas: 0) [ 2 3 12 @@ -3070,36 +3070,36 @@ trace 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 (remaining gas: 1039834.801 units remaining) + - 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 (remaining gas: 1039834.791 units remaining) + - 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 (remaining gas: 1039834.766 units remaining) + - 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 (remaining gas: 1039834.756 units remaining) + - 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 (remaining gas: 1039834.746 units remaining) + - 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 (remaining gas: 1039834.736 units remaining) + - 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 (remaining gas: 1039834.726 units remaining) + - location: 184 (just consumed gas: 0.010) [ 16 10 14 @@ -3107,7 +3107,7 @@ trace 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 (remaining gas: 1039834.716 units remaining) + - location: 184 (just consumed gas: 0.010) [ 12 16 10 @@ -3116,7 +3116,7 @@ trace 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 (remaining gas: 1039834.706 units remaining) + - location: 184 (just consumed gas: 0.010) [ 3 12 16 @@ -3126,7 +3126,7 @@ trace 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 (remaining gas: 1039834.696 units remaining) + - location: 184 (just consumed gas: 0.010) [ 2 3 12 @@ -3137,7 +3137,7 @@ trace 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 (remaining gas: 1039834.696 units remaining) + - location: 184 (just consumed gas: 0) [ 2 3 12 @@ -3148,36 +3148,36 @@ trace 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 (remaining gas: 1039834.696 units remaining) + - 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 (remaining gas: 1039834.686 units remaining) + - 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 (remaining gas: 1039834.661 units remaining) + - 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 (remaining gas: 1039834.651 units remaining) + - 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 (remaining gas: 1039834.641 units remaining) + - 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 (remaining gas: 1039834.631 units remaining) + - 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 (remaining gas: 1039834.621 units remaining) + - location: 188 (just consumed gas: 0.010) [ 12 16 10 @@ -3185,7 +3185,7 @@ trace 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 (remaining gas: 1039834.611 units remaining) + - location: 188 (just consumed gas: 0.010) [ 3 12 16 @@ -3194,7 +3194,7 @@ trace 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 (remaining gas: 1039834.601 units remaining) + - location: 188 (just consumed gas: 0.010) [ 2 3 12 @@ -3204,7 +3204,7 @@ trace 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 (remaining gas: 1039834.601 units remaining) + - location: 188 (just consumed gas: 0) [ 2 3 12 @@ -3214,36 +3214,36 @@ trace 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 (remaining gas: 1039834.601 units remaining) + - 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 (remaining gas: 1039834.591 units remaining) + - 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 (remaining gas: 1039834.566 units remaining) + - 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 (remaining gas: 1039834.556 units remaining) + - 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 (remaining gas: 1039834.546 units remaining) + - 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 (remaining gas: 1039834.536 units remaining) + - 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 (remaining gas: 1039834.526 units remaining) + - location: 192 (just consumed gas: 0.010) [ 3 12 16 @@ -3251,7 +3251,7 @@ trace 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 (remaining gas: 1039834.516 units remaining) + - location: 192 (just consumed gas: 0.010) [ 2 3 12 @@ -3260,7 +3260,7 @@ trace 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 (remaining gas: 1039834.516 units remaining) + - location: 192 (just consumed gas: 0) [ 2 3 12 @@ -3269,36 +3269,36 @@ trace 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 (remaining gas: 1039834.516 units remaining) + - 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 (remaining gas: 1039834.506 units remaining) + - 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 (remaining gas: 1039834.481 units remaining) + - 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 (remaining gas: 1039834.471 units remaining) + - 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 (remaining gas: 1039834.461 units remaining) + - 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 (remaining gas: 1039834.451 units remaining) + - 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 (remaining gas: 1039834.441 units remaining) + - location: 196 (just consumed gas: 0.010) [ 2 3 12 @@ -3306,7 +3306,7 @@ trace 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 (remaining gas: 1039834.441 units remaining) + - location: 196 (just consumed gas: 0) [ 2 3 12 @@ -3314,118 +3314,118 @@ trace 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 (remaining gas: 1039834.441 units remaining) + - 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 (remaining gas: 1039834.431 units remaining) + - 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 (remaining gas: 1039834.406 units remaining) + - 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 (remaining gas: 1039834.396 units remaining) + - 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 (remaining gas: 1039834.386 units remaining) + - 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 (remaining gas: 1039834.376 units remaining) + - 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 (remaining gas: 1039834.376 units remaining) + - 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 (remaining gas: 1039834.376 units remaining) + - 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 (remaining gas: 1039834.366 units remaining) + - 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 (remaining gas: 1039834.341 units remaining) + - 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 (remaining gas: 1039834.331 units remaining) + - 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 (remaining gas: 1039834.321 units remaining) + - 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 (remaining gas: 1039834.321 units remaining) + - 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 (remaining gas: 1039834.321 units remaining) + - 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 (remaining gas: 1039834.311 units remaining) + - 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 (remaining gas: 1039834.286 units remaining) + - 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 (remaining gas: 1039834.276 units remaining) + - 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 (remaining gas: 1039834.276 units remaining) + - 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 (remaining gas: 1039834.276 units remaining) + - 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 (remaining gas: 1039834.266 units remaining) + - 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 (remaining gas: 1039834.241 units remaining) + - 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 (remaining gas: 1039834.231 units remaining) + - 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 (remaining gas: 1039833.476 units remaining) + - location: 218 (just consumed gas: 0.755) [ 0 ] - - location: 219 (remaining gas: 1039833.466 units remaining) + - location: 219 (just consumed gas: 0.010) [ True ] - - location: 220 (remaining gas: 1039833.466 units remaining) + - location: 220 (just consumed gas: 0) [ ] - - location: 220 (remaining gas: 1039833.451 units remaining) + - location: 220 (just consumed gas: 0.015) [ ] - - location: 226 (remaining gas: 1039833.441 units remaining) + - location: 226 (just consumed gas: 0.010) [ Unit ] - - location: 227 (remaining gas: 1039833.431 units remaining) + - location: 227 (just consumed gas: 0.010) [ {} Unit ] - - location: 229 (remaining gas: 1039833.421 units remaining) + - location: 229 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out index 38fda574b226dc84ab25b9224f820fb12edd3936..3b69fbc80661b8c670fb68a426b20d0931eb4285 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out @@ -7,55 +7,55 @@ emitted operations big_map diff trace - - location: 15 (remaining gas: 1039988.045 units remaining) + - location: 15 (just consumed gas: 11.955) [ (Pair (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) 0) ] - - location: 15 (remaining gas: 1039988.035 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (remaining gas: 1039988.025 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (remaining gas: 1039988.015 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (remaining gas: 1039988.005 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair 1 2) 3 4 5 ] - - location: 19 (remaining gas: 1039987.995 units remaining) + - location: 19 (just consumed gas: 0.010) [ 1 2 3 4 5 ] - - location: 20 (remaining gas: 1039987.938 units remaining) + - location: 20 (just consumed gas: 0.057) [ 5 1 2 3 4 ] - - location: 22 (remaining gas: 1039987.938 units remaining) + - location: 22 (just consumed gas: 0) [ 1 2 3 4 ] - - location: 24 (remaining gas: 1039987.928 units remaining) + - location: 24 (just consumed gas: 0.010) [ 2 3 4 ] - - location: 25 (remaining gas: 1039987.918 units remaining) + - location: 25 (just consumed gas: 0.010) [ 3 4 ] - - location: 26 (remaining gas: 1039987.908 units remaining) + - location: 26 (just consumed gas: 0.010) [ 4 ] - - location: 27 (remaining gas: 1039987.898 units remaining) + - location: 27 (just consumed gas: 0.010) [ ] - - location: 22 (remaining gas: 1039987.873 units remaining) + - location: 22 (just consumed gas: 0.025) [ 5 ] - - location: 28 (remaining gas: 1039987.863 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} 5 ] - - location: 30 (remaining gas: 1039987.853 units remaining) + - location: 30 (just consumed gas: 0.010) [ (Pair {} 5) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out index d59d6a06901f48dc76b803627cee72cff559fbc6..78e35addeab5b5c8fc861873231caf18b37c61a0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039992.088 units remaining) + - location: 11 (just consumed gas: 7.912) [ (Pair (Pair 1 1) 0 0) ] - - location: 11 (remaining gas: 1039992.078 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 1 1) ] - - location: 12 (remaining gas: 1039992.068 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 1 ] - - location: 13 (remaining gas: 1039992.058 units remaining) + - location: 13 (just consumed gas: 0.010) [ 1 1 1 ] - - location: 14 (remaining gas: 1039992.058 units remaining) + - location: 14 (just consumed gas: 0) [ 1 1 ] - - location: 16 (remaining gas: 1039992.023 units remaining) + - location: 16 (just consumed gas: 0.035) [ 2 ] - - location: 14 (remaining gas: 1039991.998 units remaining) + - location: 14 (just consumed gas: 0.025) [ 1 2 ] - - location: 17 (remaining gas: 1039991.988 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair 1 2) ] - - location: 18 (remaining gas: 1039991.978 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Pair 1 2) ] - - location: 20 (remaining gas: 1039991.968 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} 1 2) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out index e299e206e6808f1891be1effebd83eb3dadb22d0..477d061bdab9baf4ad743efe744e6cb2210790cb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039992.088 units remaining) + - location: 11 (just consumed gas: 7.912) [ (Pair (Pair 15 9) 0 0) ] - - location: 11 (remaining gas: 1039992.078 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 15 9) ] - - location: 12 (remaining gas: 1039992.068 units remaining) + - location: 12 (just consumed gas: 0.010) [ 15 9 ] - - location: 13 (remaining gas: 1039992.058 units remaining) + - location: 13 (just consumed gas: 0.010) [ 15 15 9 ] - - location: 14 (remaining gas: 1039992.058 units remaining) + - location: 14 (just consumed gas: 0) [ 15 9 ] - - location: 16 (remaining gas: 1039992.023 units remaining) + - location: 16 (just consumed gas: 0.035) [ 24 ] - - location: 14 (remaining gas: 1039991.998 units remaining) + - location: 14 (just consumed gas: 0.025) [ 15 24 ] - - location: 17 (remaining gas: 1039991.988 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair 15 24) ] - - location: 18 (remaining gas: 1039991.978 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Pair 15 24) ] - - location: 20 (remaining gas: 1039991.968 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} 15 24) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out index dce8d8ccd17ef0942e8bf393dfa3c55e99f04176..c95f1d0dd82673fdecf419031ad7252f85041e63 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out @@ -7,87 +7,87 @@ emitted operations big_map diff trace - - location: 15 (remaining gas: 1039986.795 units remaining) + - location: 15 (just consumed gas: 13.205) [ (Pair (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) 0) ] - - location: 15 (remaining gas: 1039986.785 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (remaining gas: 1039986.775 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (remaining gas: 1039986.765 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (remaining gas: 1039986.755 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair 1 2) 3 4 5 ] - - location: 19 (remaining gas: 1039986.745 units remaining) + - location: 19 (just consumed gas: 0.010) [ 1 2 3 4 5 ] - - location: 20 (remaining gas: 1039986.745 units remaining) + - location: 20 (just consumed gas: 0) [ ] - - location: 23 (remaining gas: 1039986.735 units remaining) + - location: 23 (just consumed gas: 0.010) [ 6 ] - - location: 20 (remaining gas: 1039986.710 units remaining) + - location: 20 (just consumed gas: 0.025) [ 5 6 ] - - location: 20 (remaining gas: 1039986.700 units remaining) + - location: 20 (just consumed gas: 0.010) [ 4 5 6 ] - - location: 20 (remaining gas: 1039986.690 units remaining) + - location: 20 (just consumed gas: 0.010) [ 3 4 5 6 ] - - location: 20 (remaining gas: 1039986.680 units remaining) + - location: 20 (just consumed gas: 0.010) [ 2 3 4 5 6 ] - - location: 20 (remaining gas: 1039986.670 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 2 3 4 5 6 ] - - location: 20 (remaining gas: 1039986.670 units remaining) + - location: 20 (just consumed gas: 0) [ 1 2 3 4 5 6 ] - - location: 26 (remaining gas: 1039986.660 units remaining) + - location: 26 (just consumed gas: 0.010) [ 2 3 4 5 6 ] - - location: 27 (remaining gas: 1039986.650 units remaining) + - location: 27 (just consumed gas: 0.010) [ 3 4 5 6 ] - - location: 28 (remaining gas: 1039986.640 units remaining) + - location: 28 (just consumed gas: 0.010) [ 4 5 6 ] - - location: 29 (remaining gas: 1039986.630 units remaining) + - location: 29 (just consumed gas: 0.010) [ 5 6 ] - - location: 30 (remaining gas: 1039986.620 units remaining) + - location: 30 (just consumed gas: 0.010) [ 6 ] - - location: 31 (remaining gas: 1039986.610 units remaining) + - location: 31 (just consumed gas: 0.010) [ {} 6 ] - - location: 33 (remaining gas: 1039986.600 units remaining) + - location: 33 (just consumed gas: 0.010) [ (Pair {} 6) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out index 4ebf7260960b7194777c56ac43ad8455dfaca81a..d6cb92093e2e5b5f79ec47d27340487d5c21e952 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out @@ -7,33 +7,33 @@ emitted operations big_map diff trace - - location: 15 (remaining gas: 1039990.952 units remaining) + - location: 15 (just consumed gas: 9.048) [ (Pair (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) 0) ] - - location: 15 (remaining gas: 1039990.942 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (remaining gas: 1039990.932 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (remaining gas: 1039990.922 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (remaining gas: 1039990.912 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair 1 2) 3 4 5 ] - - location: 19 (remaining gas: 1039990.902 units remaining) + - location: 19 (just consumed gas: 0.010) [ 1 2 3 4 5 ] - - location: 20 (remaining gas: 1039990.862 units remaining) + - location: 20 (just consumed gas: 0.040) [ 5 ] - - location: 22 (remaining gas: 1039990.852 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} 5 ] - - location: 24 (remaining gas: 1039990.842 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} 5) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out index 7ee0f20bcd98f14ef188aed35ad9dacfe7ca0b87..acd75fc14a3bdee529b2f80f1c79515f5e1c9572 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out @@ -7,51 +7,51 @@ emitted operations big_map diff trace - - location: 15 (remaining gas: 1039988.721 units remaining) + - location: 15 (just consumed gas: 11.279) [ (Pair (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) 0) ] - - location: 15 (remaining gas: 1039988.711 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (remaining gas: 1039988.701 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (remaining gas: 1039988.691 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (remaining gas: 1039988.681 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair 1 2) 3 4 5 ] - - location: 19 (remaining gas: 1039988.671 units remaining) + - location: 19 (just consumed gas: 0.010) [ 1 2 3 4 5 ] - - location: 20 (remaining gas: 1039988.609 units remaining) + - location: 20 (just consumed gas: 0.062) [ 2 3 4 5 1 ] - - location: 22 (remaining gas: 1039988.599 units remaining) + - location: 22 (just consumed gas: 0.010) [ 3 4 5 1 ] - - location: 23 (remaining gas: 1039988.589 units remaining) + - location: 23 (just consumed gas: 0.010) [ 4 5 1 ] - - location: 24 (remaining gas: 1039988.579 units remaining) + - location: 24 (just consumed gas: 0.010) [ 5 1 ] - - location: 25 (remaining gas: 1039988.569 units remaining) + - location: 25 (just consumed gas: 0.010) [ 1 ] - - location: 26 (remaining gas: 1039988.559 units remaining) + - location: 26 (just consumed gas: 0.010) [ {} 1 ] - - location: 28 (remaining gas: 1039988.549 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out index 0a08f3ca651a4cb3d96ee29f2f9eada74b542e1b..222be2bb6de1a86abed43f2abef2f67a728a9b68 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out @@ -7,38 +7,38 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039957.772 units remaining) + - location: 7 (just consumed gas: 42.228) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039957.762 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039957.752 units remaining) + - location: 8 (just consumed gas: 0.010) [ 5 ] - - location: 11 (remaining gas: 1039957.742 units remaining) + - location: 11 (just consumed gas: 0.010) [ 4 5 ] - - location: 14 (remaining gas: 1039957.732 units remaining) + - location: 14 (just consumed gas: 0.010) [ 3 4 5 ] - - location: 17 (remaining gas: 1039957.722 units remaining) + - location: 17 (just consumed gas: 0.010) [ 2 3 4 5 ] - - location: 20 (remaining gas: 1039957.712 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 2 3 4 5 ] - - location: 23 (remaining gas: 1039957.691 units remaining) + - location: 23 (just consumed gas: 0.021) [ 1 1 2 3 4 5 ] - - location: 25 (remaining gas: 1039957.681 units remaining) + - location: 25 (just consumed gas: 0.010) [ 1 1 1 @@ -46,40 +46,40 @@ trace 3 4 5 ] - - location: 30 (remaining gas: 1039957.646 units remaining) + - location: 30 (just consumed gas: 0.035) [ 0 1 2 3 4 5 ] - - location: 31 (remaining gas: 1039957.636 units remaining) + - location: 31 (just consumed gas: 0.010) [ True 1 2 3 4 5 ] - - location: 32 (remaining gas: 1039957.636 units remaining) + - location: 32 (just consumed gas: 0) [ 1 2 3 4 5 ] - - location: 32 (remaining gas: 1039957.621 units remaining) + - location: 32 (just consumed gas: 0.015) [ 1 2 3 4 5 ] - - location: 38 (remaining gas: 1039957.599 units remaining) + - location: 38 (just consumed gas: 0.022) [ 2 1 2 3 4 5 ] - - location: 40 (remaining gas: 1039957.589 units remaining) + - location: 40 (just consumed gas: 0.010) [ 2 2 1 @@ -87,40 +87,40 @@ trace 3 4 5 ] - - location: 45 (remaining gas: 1039957.554 units remaining) + - location: 45 (just consumed gas: 0.035) [ 0 1 2 3 4 5 ] - - location: 46 (remaining gas: 1039957.544 units remaining) + - location: 46 (just consumed gas: 0.010) [ True 1 2 3 4 5 ] - - location: 47 (remaining gas: 1039957.544 units remaining) + - location: 47 (just consumed gas: 0) [ 1 2 3 4 5 ] - - location: 47 (remaining gas: 1039957.529 units remaining) + - location: 47 (just consumed gas: 0.015) [ 1 2 3 4 5 ] - - location: 53 (remaining gas: 1039957.506 units remaining) + - location: 53 (just consumed gas: 0.023) [ 3 1 2 3 4 5 ] - - location: 55 (remaining gas: 1039957.496 units remaining) + - location: 55 (just consumed gas: 0.010) [ 3 3 1 @@ -128,40 +128,40 @@ trace 3 4 5 ] - - location: 60 (remaining gas: 1039957.461 units remaining) + - location: 60 (just consumed gas: 0.035) [ 0 1 2 3 4 5 ] - - location: 61 (remaining gas: 1039957.451 units remaining) + - location: 61 (just consumed gas: 0.010) [ True 1 2 3 4 5 ] - - location: 62 (remaining gas: 1039957.451 units remaining) + - location: 62 (just consumed gas: 0) [ 1 2 3 4 5 ] - - location: 62 (remaining gas: 1039957.436 units remaining) + - location: 62 (just consumed gas: 0.015) [ 1 2 3 4 5 ] - - location: 68 (remaining gas: 1039957.411 units remaining) + - location: 68 (just consumed gas: 0.025) [ 4 1 2 3 4 5 ] - - location: 70 (remaining gas: 1039957.401 units remaining) + - location: 70 (just consumed gas: 0.010) [ 4 4 1 @@ -169,40 +169,40 @@ trace 3 4 5 ] - - location: 75 (remaining gas: 1039957.366 units remaining) + - location: 75 (just consumed gas: 0.035) [ 0 1 2 3 4 5 ] - - location: 76 (remaining gas: 1039957.356 units remaining) + - location: 76 (just consumed gas: 0.010) [ True 1 2 3 4 5 ] - - location: 77 (remaining gas: 1039957.356 units remaining) + - location: 77 (just consumed gas: 0) [ 1 2 3 4 5 ] - - location: 77 (remaining gas: 1039957.341 units remaining) + - location: 77 (just consumed gas: 0.015) [ 1 2 3 4 5 ] - - location: 83 (remaining gas: 1039957.315 units remaining) + - location: 83 (just consumed gas: 0.026) [ 5 1 2 3 4 5 ] - - location: 85 (remaining gas: 1039957.305 units remaining) + - location: 85 (just consumed gas: 0.010) [ 5 5 1 @@ -210,39 +210,39 @@ trace 3 4 5 ] - - location: 90 (remaining gas: 1039957.270 units remaining) + - location: 90 (just consumed gas: 0.035) [ 0 1 2 3 4 5 ] - - location: 91 (remaining gas: 1039957.260 units remaining) + - location: 91 (just consumed gas: 0.010) [ True 1 2 3 4 5 ] - - location: 92 (remaining gas: 1039957.260 units remaining) + - location: 92 (just consumed gas: 0) [ 1 2 3 4 5 ] - - location: 92 (remaining gas: 1039957.245 units remaining) + - location: 92 (just consumed gas: 0.015) [ 1 2 3 4 5 ] - - location: 98 (remaining gas: 1039957.203 units remaining) + - location: 98 (just consumed gas: 0.042) [ ] - - location: 100 (remaining gas: 1039957.193 units remaining) + - location: 100 (just consumed gas: 0.010) [ Unit ] - - location: 101 (remaining gas: 1039957.183 units remaining) + - location: 101 (just consumed gas: 0.010) [ {} Unit ] - - location: 103 (remaining gas: 1039957.173 units remaining) + - location: 103 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out index 00e020f71ba48b42c2205d6a5972f8d851d7bdce..2ce9956d65cd6f98040113939878a4fa18dda365 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out @@ -7,136 +7,136 @@ emitted operations big_map diff trace - - location: 25 (remaining gas: 1039974.438 units remaining) + - location: 25 (just consumed gas: 25.562) [ (Pair (Pair -8 2) None None None None) ] - - location: 25 (remaining gas: 1039974.428 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair -8 2) ] - - location: 26 (remaining gas: 1039974.418 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair -8 2) (Pair -8 2) ] - - location: 27 (remaining gas: 1039974.408 units remaining) + - location: 27 (just consumed gas: 0.010) [ -8 2 (Pair -8 2) ] - - location: 28 (remaining gas: 1039974.388 units remaining) + - location: 28 (just consumed gas: 0.020) [ 8 2 (Pair -8 2) ] - - location: 29 (remaining gas: 1039974.388 units remaining) + - location: 29 (just consumed gas: 0) [ 2 (Pair -8 2) ] - - location: 31 (remaining gas: 1039974.368 units remaining) + - location: 31 (just consumed gas: 0.020) [ 2 (Pair -8 2) ] - - location: 29 (remaining gas: 1039974.343 units remaining) + - location: 29 (just consumed gas: 0.025) [ 8 2 (Pair -8 2) ] - - location: 32 (remaining gas: 1039974.238 units remaining) + - location: 32 (just consumed gas: 0.105) [ (Some (Pair 4 0)) (Pair -8 2) ] - - location: 33 (remaining gas: 1039974.228 units remaining) + - location: 33 (just consumed gas: 0.010) [ (Pair -8 2) (Some (Pair 4 0)) ] - - location: 34 (remaining gas: 1039974.218 units remaining) + - location: 34 (just consumed gas: 0.010) [ (Pair -8 2) (Pair -8 2) (Some (Pair 4 0)) ] - - location: 35 (remaining gas: 1039974.208 units remaining) + - location: 35 (just consumed gas: 0.010) [ -8 2 (Pair -8 2) (Some (Pair 4 0)) ] - - location: 36 (remaining gas: 1039974.188 units remaining) + - location: 36 (just consumed gas: 0.020) [ 8 2 (Pair -8 2) (Some (Pair 4 0)) ] - - location: 37 (remaining gas: 1039974.083 units remaining) + - location: 37 (just consumed gas: 0.105) [ (Some (Pair 4 0)) (Pair -8 2) (Some (Pair 4 0)) ] - - location: 38 (remaining gas: 1039974.073 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 39 (remaining gas: 1039974.063 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair -8 2) (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 40 (remaining gas: 1039974.053 units remaining) + - location: 40 (just consumed gas: 0.010) [ -8 2 (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 41 (remaining gas: 1039974.053 units remaining) + - location: 41 (just consumed gas: 0) [ 2 (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 43 (remaining gas: 1039974.033 units remaining) + - location: 43 (just consumed gas: 0.020) [ 2 (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 41 (remaining gas: 1039974.008 units remaining) + - location: 41 (just consumed gas: 0.025) [ -8 2 (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 44 (remaining gas: 1039973.903 units remaining) + - location: 44 (just consumed gas: 0.105) [ (Some (Pair -4 0)) (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 45 (remaining gas: 1039973.893 units remaining) + - location: 45 (just consumed gas: 0.010) [ (Pair -8 2) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 46 (remaining gas: 1039973.883 units remaining) + - location: 46 (just consumed gas: 0.010) [ -8 2 (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 47 (remaining gas: 1039973.778 units remaining) + - 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 (remaining gas: 1039973.778 units remaining) + - location: 49 (just consumed gas: 0) [ (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 52 (remaining gas: 1039973.768 units remaining) + - location: 52 (just consumed gas: 0.010) [ (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 49 (remaining gas: 1039973.743 units remaining) + - location: 49 (just consumed gas: 0.025) [ (Some (Pair -4 0)) (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 49 (remaining gas: 1039973.733 units remaining) + - 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 (remaining gas: 1039973.733 units remaining) + - 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 (remaining gas: 1039973.733 units remaining) + - location: 53 (just consumed gas: 0) [ (Some (Pair -4 0)) (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 55 (remaining gas: 1039973.723 units remaining) + - location: 55 (just consumed gas: 0.010) [ (Pair (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 53 (remaining gas: 1039973.698 units remaining) + - 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 (remaining gas: 1039973.688 units remaining) + - 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 (remaining gas: 1039973.678 units remaining) + - 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 (remaining gas: 1039973.668 units remaining) + - 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/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out index 1953b7a0ef5dd72c16f1f1e5205b0bc0a2873f54..4c948c2402f28bb8cb814a06124556dc1050384b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out @@ -7,136 +7,136 @@ emitted operations big_map diff trace - - location: 25 (remaining gas: 1039974.438 units remaining) + - location: 25 (just consumed gas: 25.562) [ (Pair (Pair 10 -3) None None None None) ] - - location: 25 (remaining gas: 1039974.428 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair 10 -3) ] - - location: 26 (remaining gas: 1039974.418 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair 10 -3) (Pair 10 -3) ] - - location: 27 (remaining gas: 1039974.408 units remaining) + - location: 27 (just consumed gas: 0.010) [ 10 -3 (Pair 10 -3) ] - - location: 28 (remaining gas: 1039974.388 units remaining) + - location: 28 (just consumed gas: 0.020) [ 10 -3 (Pair 10 -3) ] - - location: 29 (remaining gas: 1039974.388 units remaining) + - location: 29 (just consumed gas: 0) [ -3 (Pair 10 -3) ] - - location: 31 (remaining gas: 1039974.368 units remaining) + - location: 31 (just consumed gas: 0.020) [ 3 (Pair 10 -3) ] - - location: 29 (remaining gas: 1039974.343 units remaining) + - location: 29 (just consumed gas: 0.025) [ 10 3 (Pair 10 -3) ] - - location: 32 (remaining gas: 1039974.238 units remaining) + - location: 32 (just consumed gas: 0.105) [ (Some (Pair 3 1)) (Pair 10 -3) ] - - location: 33 (remaining gas: 1039974.228 units remaining) + - location: 33 (just consumed gas: 0.010) [ (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 34 (remaining gas: 1039974.218 units remaining) + - location: 34 (just consumed gas: 0.010) [ (Pair 10 -3) (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 35 (remaining gas: 1039974.208 units remaining) + - location: 35 (just consumed gas: 0.010) [ 10 -3 (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 36 (remaining gas: 1039974.188 units remaining) + - location: 36 (just consumed gas: 0.020) [ 10 -3 (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 37 (remaining gas: 1039974.083 units remaining) + - location: 37 (just consumed gas: 0.105) [ (Some (Pair -3 1)) (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 38 (remaining gas: 1039974.073 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 39 (remaining gas: 1039974.063 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair 10 -3) (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 40 (remaining gas: 1039974.053 units remaining) + - location: 40 (just consumed gas: 0.010) [ 10 -3 (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 41 (remaining gas: 1039974.053 units remaining) + - location: 41 (just consumed gas: 0) [ -3 (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 43 (remaining gas: 1039974.033 units remaining) + - location: 43 (just consumed gas: 0.020) [ 3 (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 41 (remaining gas: 1039974.008 units remaining) + - location: 41 (just consumed gas: 0.025) [ 10 3 (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 44 (remaining gas: 1039973.903 units remaining) + - location: 44 (just consumed gas: 0.105) [ (Some (Pair 3 1)) (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 45 (remaining gas: 1039973.893 units remaining) + - location: 45 (just consumed gas: 0.010) [ (Pair 10 -3) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 46 (remaining gas: 1039973.883 units remaining) + - location: 46 (just consumed gas: 0.010) [ 10 -3 (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 47 (remaining gas: 1039973.778 units remaining) + - 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 (remaining gas: 1039973.778 units remaining) + - location: 49 (just consumed gas: 0) [ (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 52 (remaining gas: 1039973.768 units remaining) + - location: 52 (just consumed gas: 0.010) [ (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 49 (remaining gas: 1039973.743 units remaining) + - location: 49 (just consumed gas: 0.025) [ (Some (Pair 3 1)) (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 49 (remaining gas: 1039973.733 units remaining) + - 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 (remaining gas: 1039973.733 units remaining) + - 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 (remaining gas: 1039973.733 units remaining) + - location: 53 (just consumed gas: 0) [ (Some (Pair 3 1)) (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 55 (remaining gas: 1039973.723 units remaining) + - location: 55 (just consumed gas: 0.010) [ (Pair (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 53 (remaining gas: 1039973.698 units remaining) + - 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 (remaining gas: 1039973.688 units remaining) + - 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 (remaining gas: 1039973.678 units remaining) + - 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 (remaining gas: 1039973.668 units remaining) + - 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/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out index 1613d94798ea1d5605994c1f3edb9f1d7343d1d5..0dba3f010c83b720eaf25e20536bbab01b5f8dca 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out @@ -7,136 +7,136 @@ emitted operations big_map diff trace - - location: 25 (remaining gas: 1039974.438 units remaining) + - location: 25 (just consumed gas: 25.562) [ (Pair (Pair 10 0) None None None None) ] - - location: 25 (remaining gas: 1039974.428 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair 10 0) ] - - location: 26 (remaining gas: 1039974.418 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair 10 0) (Pair 10 0) ] - - location: 27 (remaining gas: 1039974.408 units remaining) + - location: 27 (just consumed gas: 0.010) [ 10 0 (Pair 10 0) ] - - location: 28 (remaining gas: 1039974.388 units remaining) + - location: 28 (just consumed gas: 0.020) [ 10 0 (Pair 10 0) ] - - location: 29 (remaining gas: 1039974.388 units remaining) + - location: 29 (just consumed gas: 0) [ 0 (Pair 10 0) ] - - location: 31 (remaining gas: 1039974.368 units remaining) + - location: 31 (just consumed gas: 0.020) [ 0 (Pair 10 0) ] - - location: 29 (remaining gas: 1039974.343 units remaining) + - location: 29 (just consumed gas: 0.025) [ 10 0 (Pair 10 0) ] - - location: 32 (remaining gas: 1039974.238 units remaining) + - location: 32 (just consumed gas: 0.105) [ None (Pair 10 0) ] - - location: 33 (remaining gas: 1039974.228 units remaining) + - location: 33 (just consumed gas: 0.010) [ (Pair 10 0) None ] - - location: 34 (remaining gas: 1039974.218 units remaining) + - location: 34 (just consumed gas: 0.010) [ (Pair 10 0) (Pair 10 0) None ] - - location: 35 (remaining gas: 1039974.208 units remaining) + - location: 35 (just consumed gas: 0.010) [ 10 0 (Pair 10 0) None ] - - location: 36 (remaining gas: 1039974.188 units remaining) + - location: 36 (just consumed gas: 0.020) [ 10 0 (Pair 10 0) None ] - - location: 37 (remaining gas: 1039974.083 units remaining) + - location: 37 (just consumed gas: 0.105) [ None (Pair 10 0) None ] - - location: 38 (remaining gas: 1039974.073 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair 10 0) None None ] - - location: 39 (remaining gas: 1039974.063 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair 10 0) (Pair 10 0) None None ] - - location: 40 (remaining gas: 1039974.053 units remaining) + - location: 40 (just consumed gas: 0.010) [ 10 0 (Pair 10 0) None None ] - - location: 41 (remaining gas: 1039974.053 units remaining) + - location: 41 (just consumed gas: 0) [ 0 (Pair 10 0) None None ] - - location: 43 (remaining gas: 1039974.033 units remaining) + - location: 43 (just consumed gas: 0.020) [ 0 (Pair 10 0) None None ] - - location: 41 (remaining gas: 1039974.008 units remaining) + - location: 41 (just consumed gas: 0.025) [ 10 0 (Pair 10 0) None None ] - - location: 44 (remaining gas: 1039973.903 units remaining) + - location: 44 (just consumed gas: 0.105) [ None (Pair 10 0) None None ] - - location: 45 (remaining gas: 1039973.893 units remaining) + - location: 45 (just consumed gas: 0.010) [ (Pair 10 0) None None None ] - - location: 46 (remaining gas: 1039973.883 units remaining) + - location: 46 (just consumed gas: 0.010) [ 10 0 None None None ] - - location: 47 (remaining gas: 1039973.778 units remaining) + - location: 47 (just consumed gas: 0.105) [ None None None None ] - - location: 49 (remaining gas: 1039973.778 units remaining) + - location: 49 (just consumed gas: 0) [ None None ] - - location: 52 (remaining gas: 1039973.768 units remaining) + - location: 52 (just consumed gas: 0.010) [ (Pair None None) ] - - location: 49 (remaining gas: 1039973.743 units remaining) + - location: 49 (just consumed gas: 0.025) [ None (Pair None None) ] - - location: 49 (remaining gas: 1039973.733 units remaining) + - location: 49 (just consumed gas: 0.010) [ None None (Pair None None) ] - - location: 49 (remaining gas: 1039973.733 units remaining) + - location: 49 (just consumed gas: 0) [ None None (Pair None None) ] - - location: 53 (remaining gas: 1039973.733 units remaining) + - location: 53 (just consumed gas: 0) [ None (Pair None None) ] - - location: 55 (remaining gas: 1039973.723 units remaining) + - location: 55 (just consumed gas: 0.010) [ (Pair None None None) ] - - location: 53 (remaining gas: 1039973.698 units remaining) + - location: 53 (just consumed gas: 0.025) [ None (Pair None None None) ] - - location: 56 (remaining gas: 1039973.688 units remaining) + - location: 56 (just consumed gas: 0.010) [ (Pair None None None None) ] - - location: 57 (remaining gas: 1039973.678 units remaining) + - location: 57 (just consumed gas: 0.010) [ {} (Pair None None None None) ] - - location: 59 (remaining gas: 1039973.668 units remaining) + - location: 59 (just consumed gas: 0.010) [ (Pair {} None None None None) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out index ae3fca03fd0fa17824bcb863c822ab1a9b86231b..452227cb2b72d7574fd4d92136ea5193a1c0e215 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 10 (Left 0)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 (Left 0)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 (Left 0) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left 0) 10 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 0 10 ] - - location: 24 (remaining gas: 1039985.951 units remaining) + - location: 24 (just consumed gas: 0.010) [ 10 0 ] - - location: 25 (remaining gas: 1039985.871 units remaining) + - location: 25 (just consumed gas: 0.080) [ None ] - - location: 26 (remaining gas: 1039985.861 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Left None) ] - - location: 22 (remaining gas: 1039985.846 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Left None) ] - - location: 39 (remaining gas: 1039985.836 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Left None) ] - - location: 41 (remaining gas: 1039985.826 units remaining) + - location: 41 (just consumed gas: 0.010) [ (Pair {} (Left None)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out index 53e2fc3c085611285f4ba68254d3b96fc89c441f..2fa957bfce5311c25038f46a44252e17394de8b2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 10 (Left 10)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 (Left 10)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 (Left 10) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left 10) 10 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 10 10 ] - - location: 24 (remaining gas: 1039985.951 units remaining) + - location: 24 (just consumed gas: 0.010) [ 10 10 ] - - location: 25 (remaining gas: 1039985.871 units remaining) + - location: 25 (just consumed gas: 0.080) [ (Some (Pair 1 0)) ] - - location: 26 (remaining gas: 1039985.861 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Left (Some (Pair 1 0))) ] - - location: 22 (remaining gas: 1039985.846 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Left (Some (Pair 1 0))) ] - - location: 39 (remaining gas: 1039985.836 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Left (Some (Pair 1 0))) ] - - location: 41 (remaining gas: 1039985.826 units remaining) + - location: 41 (just consumed gas: 0.010) [ (Pair {} (Left (Some (Pair 1 0)))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out index 8b5ef419757f15cd6583412496cedfb8b270da74..13a77fc639d201040aa78d047e80b49dd558ba22 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 10 (Left 3)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 (Left 3)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 (Left 3) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left 3) 10 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 3 10 ] - - location: 24 (remaining gas: 1039985.951 units remaining) + - location: 24 (just consumed gas: 0.010) [ 10 3 ] - - location: 25 (remaining gas: 1039985.871 units remaining) + - location: 25 (just consumed gas: 0.080) [ (Some (Pair 3 1)) ] - - location: 26 (remaining gas: 1039985.861 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Left (Some (Pair 3 1))) ] - - location: 22 (remaining gas: 1039985.846 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Left (Some (Pair 3 1))) ] - - location: 39 (remaining gas: 1039985.836 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Left (Some (Pair 3 1))) ] - - location: 41 (remaining gas: 1039985.826 units remaining) + - location: 41 (just consumed gas: 0.010) [ (Pair {} (Left (Some (Pair 3 1)))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out index 750c2d14a7cd036bce84600ad6ce01c071e8b417..ba4baa1e7a72cfc4722905db78ed9824387f04be 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 10 (Right 0)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 (Right 0)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 (Right 0) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Right 0) 10 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 0 10 ] - - location: 32 (remaining gas: 1039985.951 units remaining) + - location: 32 (just consumed gas: 0.010) [ 10 0 ] - - location: 33 (remaining gas: 1039985.881 units remaining) + - location: 33 (just consumed gas: 0.070) [ None ] - - location: 34 (remaining gas: 1039985.871 units remaining) + - location: 34 (just consumed gas: 0.010) [ (Right None) ] - - location: 22 (remaining gas: 1039985.856 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Right None) ] - - location: 39 (remaining gas: 1039985.846 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Right None) ] - - location: 41 (remaining gas: 1039985.836 units remaining) + - location: 41 (just consumed gas: 0.010) [ (Pair {} (Right None)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out index a49fa18f35483ca2542138d77370bb8539d18d4d..c2d300890aca24f3183ee5220265e3966cc570c4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 10 (Right 10)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 (Right 10)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 (Right 10) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Right 10) 10 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 10 10 ] - - location: 32 (remaining gas: 1039985.951 units remaining) + - location: 32 (just consumed gas: 0.010) [ 10 10 ] - - location: 33 (remaining gas: 1039985.881 units remaining) + - location: 33 (just consumed gas: 0.070) [ (Some (Pair 1 0)) ] - - location: 34 (remaining gas: 1039985.871 units remaining) + - location: 34 (just consumed gas: 0.010) [ (Right (Some (Pair 1 0))) ] - - location: 22 (remaining gas: 1039985.856 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Right (Some (Pair 1 0))) ] - - location: 39 (remaining gas: 1039985.846 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Right (Some (Pair 1 0))) ] - - location: 41 (remaining gas: 1039985.836 units remaining) + - location: 41 (just consumed gas: 0.010) [ (Pair {} (Right (Some (Pair 1 0)))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out index b6221db7ed1e717ca29b5b785b6b247b5fb35da8..fa05fecca258e135bbd4e20be6f46b1b90923c79 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 10 (Right 3)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 (Right 3)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 (Right 3) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Right 3) 10 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 3 10 ] - - location: 32 (remaining gas: 1039985.951 units remaining) + - location: 32 (just consumed gas: 0.010) [ 10 3 ] - - location: 33 (remaining gas: 1039985.881 units remaining) + - location: 33 (just consumed gas: 0.070) [ (Some (Pair 3 1)) ] - - location: 34 (remaining gas: 1039985.871 units remaining) + - location: 34 (just consumed gas: 0.010) [ (Right (Some (Pair 3 1))) ] - - location: 22 (remaining gas: 1039985.856 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Right (Some (Pair 3 1))) ] - - location: 39 (remaining gas: 1039985.846 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Right (Some (Pair 3 1))) ] - - location: 41 (remaining gas: 1039985.836 units remaining) + - location: 41 (just consumed gas: 0.010) [ (Pair {} (Right (Some (Pair 3 1)))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out index dd8f1a4a9c976fed52e600a12894fa638388e8e6..fe75ab5685b12eb8640af36a3bd3a18775ac4e34 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 5 (Right 10)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 5 (Right 10)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 5 (Right 10) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Right 10) 5 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 10 5 ] - - location: 32 (remaining gas: 1039985.951 units remaining) + - location: 32 (just consumed gas: 0.010) [ 5 10 ] - - location: 33 (remaining gas: 1039985.881 units remaining) + - location: 33 (just consumed gas: 0.070) [ (Some (Pair 0 5)) ] - - location: 34 (remaining gas: 1039985.871 units remaining) + - location: 34 (just consumed gas: 0.010) [ (Right (Some (Pair 0 5))) ] - - location: 22 (remaining gas: 1039985.856 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Right (Some (Pair 0 5))) ] - - location: 39 (remaining gas: 1039985.846 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Right (Some (Pair 0 5))) ] - - location: 41 (remaining gas: 1039985.836 units remaining) + - location: 41 (just consumed gas: 0.010) [ (Pair {} (Right (Some (Pair 0 5)))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out index 476819485d733b331687c12497d452aede5ba427..acf5babae6da113411f86897465632c481e7d027 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out @@ -16,56 +16,56 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039986.865 units remaining) + - location: 7 (just consumed gas: 13.135) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039986.855 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039986.845 units remaining) + - location: 8 (just consumed gas: 0.010) [ Unit ] - - location: 9 (remaining gas: 1039986.835 units remaining) + - location: 9 (just consumed gas: 0.010) [ 10 Unit ] - - location: 12 (remaining gas: 1039986.825 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Left 10) Unit ] - - location: 14 (remaining gas: 1039986.338 units remaining) + - location: 14 (just consumed gas: 0.487) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 15 (remaining gas: 1039986.328 units remaining) + - location: 15 (just consumed gas: 0.010) [ "lorem ipsum" 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 18 (remaining gas: 1039986.318 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Right "lorem ipsum") 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 20 (remaining gas: 1039985.746 units remaining) + - location: 20 (just consumed gas: 0.572) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 24 (remaining gas: 1039985.736 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 26 (remaining gas: 1039985.726 units remaining) + - location: 26 (just consumed gas: 0.010) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d {} 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 27 (remaining gas: 1039985.716 units remaining) + - location: 27 (just consumed gas: 0.010) [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 28 (remaining gas: 1039985.706 units remaining) + - location: 28 (just consumed gas: 0.010) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } Unit ] - - location: 29 (remaining gas: 1039985.696 units remaining) + - location: 29 (just consumed gas: 0.010) [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a ; 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } Unit ] - - location: 30 (remaining gas: 1039985.686 units remaining) + - location: 30 (just consumed gas: 0.010) [ (Pair { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a ; 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" index 4cd059a3cfb36970ab6ffe1d0c5c722325bf8742..0d8ca1e99fdcc558310191c92071a5bb52824811 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" @@ -7,27 +7,27 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039991.621 units remaining) + - location: 9 (just consumed gas: 8.379) [ (Pair Unit {}) ] - - location: 9 (remaining gas: 1039991.611 units remaining) + - location: 9 (just consumed gas: 0.010) [ ] - - location: 10 (remaining gas: 1039991.311 units remaining) + - location: 10 (just consumed gas: 0.300) [ {} ] - - location: 13 (remaining gas: 1039991.301 units remaining) + - location: 13 (just consumed gas: 0.010) [ "world" {} ] - - location: 16 (remaining gas: 1039991.291 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some "world") {} ] - - location: 17 (remaining gas: 1039991.281 units remaining) + - location: 17 (just consumed gas: 0.010) [ "hello" (Some "world") {} ] - - location: 20 (remaining gas: 1039991.191 units remaining) + - location: 20 (just consumed gas: 0.090) [ { Elt "hello" "world" } ] - - location: 21 (remaining gas: 1039991.181 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} { Elt "hello" "world" } ] - - location: 23 (remaining gas: 1039991.171 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt "hello" "world" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" index a77441bee4e7ca231d3d90bec9812dda25d29ac1..cfbf228d2e36cd6885dd3128f8a5d021fca406f3 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" @@ -7,42 +7,42 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039989.099 units remaining) + - location: 7 (just consumed gas: 10.901) [ (Pair "" "?") ] - - location: 7 (remaining gas: 1039989.089 units remaining) + - location: 7 (just consumed gas: 0.010) [ "" ] - - location: 8 (remaining gas: 1039989.079 units remaining) + - location: 8 (just consumed gas: 0.010) [ { PUSH string "_abc" ; NIL string ; SWAP ; CONS ; SWAP ; CONS ; CONCAT } "" ] - - location: 22 (remaining gas: 1039989.069 units remaining) + - location: 22 (just consumed gas: 0.010) [ "" { PUSH string "_abc" ; NIL string ; SWAP ; CONS ; SWAP ; CONS ; CONCAT } ] - - location: 12 (remaining gas: 1039989.059 units remaining) + - location: 12 (just consumed gas: 0.010) [ "_abc" "" ] - - location: 15 (remaining gas: 1039989.049 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} "_abc" "" ] - - location: 17 (remaining gas: 1039989.039 units remaining) + - location: 17 (just consumed gas: 0.010) [ "_abc" {} "" ] - - location: 18 (remaining gas: 1039989.029 units remaining) + - location: 18 (just consumed gas: 0.010) [ { "_abc" } "" ] - - location: 19 (remaining gas: 1039989.019 units remaining) + - location: 19 (just consumed gas: 0.010) [ "" { "_abc" } ] - - location: 20 (remaining gas: 1039989.009 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "" ; "_abc" } ] - - location: 21 (remaining gas: 1039988.887 units remaining) + - location: 21 (just consumed gas: 0.122) [ "_abc" ] - - location: 23 (remaining gas: 1039988.862 units remaining) + - location: 23 (just consumed gas: 0.025) [ "_abc" ] - - location: 24 (remaining gas: 1039988.852 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} "_abc" ] - - location: 26 (remaining gas: 1039988.842 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair {} "_abc") ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" index caeccaefb8d9a3e45d4ef1b124b861c25f659141..9a32035667876caa37a312771c0e1e082e7499c1 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" @@ -7,42 +7,42 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039989.059 units remaining) + - location: 7 (just consumed gas: 10.941) [ (Pair "test" "?") ] - - location: 7 (remaining gas: 1039989.049 units remaining) + - location: 7 (just consumed gas: 0.010) [ "test" ] - - location: 8 (remaining gas: 1039989.039 units remaining) + - location: 8 (just consumed gas: 0.010) [ { PUSH string "_abc" ; NIL string ; SWAP ; CONS ; SWAP ; CONS ; CONCAT } "test" ] - - location: 22 (remaining gas: 1039989.029 units remaining) + - location: 22 (just consumed gas: 0.010) [ "test" { PUSH string "_abc" ; NIL string ; SWAP ; CONS ; SWAP ; CONS ; CONCAT } ] - - location: 12 (remaining gas: 1039989.019 units remaining) + - location: 12 (just consumed gas: 0.010) [ "_abc" "test" ] - - location: 15 (remaining gas: 1039989.009 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} "_abc" "test" ] - - location: 17 (remaining gas: 1039988.999 units remaining) + - location: 17 (just consumed gas: 0.010) [ "_abc" {} "test" ] - - location: 18 (remaining gas: 1039988.989 units remaining) + - location: 18 (just consumed gas: 0.010) [ { "_abc" } "test" ] - - location: 19 (remaining gas: 1039988.979 units remaining) + - location: 19 (just consumed gas: 0.010) [ "test" { "_abc" } ] - - location: 20 (remaining gas: 1039988.969 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "test" ; "_abc" } ] - - location: 21 (remaining gas: 1039988.845 units remaining) + - location: 21 (just consumed gas: 0.124) [ "test_abc" ] - - location: 23 (remaining gas: 1039988.820 units remaining) + - location: 23 (just consumed gas: 0.025) [ "test_abc" ] - - location: 24 (remaining gas: 1039988.810 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} "test_abc" ] - - location: 26 (remaining gas: 1039988.800 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair {} "test_abc") ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out index 1d078c94ef0b4af30f39bdf4086777e47e8414df..2ad44203cbc43a41f5215379c917f11d816314f7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039992.178 units remaining) + - location: 8 (just consumed gas: 7.822) [ (Pair { 1 ; 2 ; 3 ; 4 } 111) ] - - location: 8 (remaining gas: 1039992.168 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 ; 4 } ] - - location: 9 (remaining gas: 1039992.168 units remaining) + - location: 9 (just consumed gas: 0) [ 1 { 2 ; 3 ; 4 } ] - - location: 11 (remaining gas: 1039992.168 units remaining) + - location: 11 (just consumed gas: 0) [ { 2 ; 3 ; 4 } ] - - location: 13 (remaining gas: 1039992.158 units remaining) + - location: 13 (just consumed gas: 0.010) [ ] - - location: 11 (remaining gas: 1039992.133 units remaining) + - location: 11 (just consumed gas: 0.025) [ 1 ] - - location: 9 (remaining gas: 1039992.118 units remaining) + - location: 9 (just consumed gas: 0.015) [ 1 ] - - location: 18 (remaining gas: 1039992.108 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} 1 ] - - location: 20 (remaining gas: 1039992.098 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out index 85b4d1df418e837cd9d5caa19b4cb00119d72f85..d31b2ce2019a97576fedb33da15431f30de83cd1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039992.478 units remaining) + - location: 8 (just consumed gas: 7.522) [ (Pair { 4 } 111) ] - - location: 8 (remaining gas: 1039992.468 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 4 } ] - - location: 9 (remaining gas: 1039992.468 units remaining) + - location: 9 (just consumed gas: 0) [ 4 {} ] - - location: 11 (remaining gas: 1039992.468 units remaining) + - location: 11 (just consumed gas: 0) [ {} ] - - location: 13 (remaining gas: 1039992.458 units remaining) + - location: 13 (just consumed gas: 0.010) [ ] - - location: 11 (remaining gas: 1039992.433 units remaining) + - location: 11 (just consumed gas: 0.025) [ 4 ] - - location: 9 (remaining gas: 1039992.418 units remaining) + - location: 9 (just consumed gas: 0.015) [ 4 ] - - location: 18 (remaining gas: 1039992.408 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} 4 ] - - location: 20 (remaining gas: 1039992.398 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} 4) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" index 81e2ffbcef26fc228014fdfd80d37e096ddf3c95..2db900d6ec5c340f144b949a7a58565adbfdec7f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039991.921 units remaining) + - location: 13 (just consumed gas: 8.079) [ (Pair "hello" (Some 4) {}) ] - - location: 13 (remaining gas: 1039991.911 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair (Some 4) {}) ] - - location: 14 (remaining gas: 1039991.911 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair (Some 4) {}) ] - - location: 16 (remaining gas: 1039991.901 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 4) {} ] - - location: 14 (remaining gas: 1039991.876 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" (Some 4) {} ] - - location: 17 (remaining gas: 1039991.781 units remaining) + - location: 17 (just consumed gas: 0.095) [ None { Elt "hello" 4 } ] - - location: 18 (remaining gas: 1039991.771 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair None { Elt "hello" 4 }) ] - - location: 19 (remaining gas: 1039991.761 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair None { Elt "hello" 4 }) ] - - location: 21 (remaining gas: 1039991.751 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} None { Elt "hello" 4 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" index b517ef8f3eedde6a835b101be78123c657772d2d..14e03047a21450efdb20e03fcd7cc7d64687274a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039991.597 units remaining) + - location: 13 (just consumed gas: 8.403) [ (Pair "hi" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039991.587 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hi" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039991.587 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039991.577 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039991.552 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hi" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039991.460 units remaining) + - location: 17 (just consumed gas: 0.092) [ None { Elt "hello" 4 ; Elt "hi" 5 } ] - - location: 18 (remaining gas: 1039991.450 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 19 (remaining gas: 1039991.440 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 21 (remaining gas: 1039991.430 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} None { Elt "hello" 4 ; Elt "hi" 5 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" index eec6208f50f4ce731aa507020594e03e76fe111b..dee8f1025d7cc391c6799c953567e20d6cf9c450 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039991.567 units remaining) + - location: 13 (just consumed gas: 8.433) [ (Pair "hello" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039991.557 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039991.557 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039991.547 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039991.522 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039991.412 units remaining) + - location: 17 (just consumed gas: 0.110) [ (Some 4) { Elt "hello" 5 } ] - - location: 18 (remaining gas: 1039991.402 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 19 (remaining gas: 1039991.392 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 21 (remaining gas: 1039991.382 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} (Some 4) { Elt "hello" 5 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" index 31b00c27ce7717dd2dacfd5871cc5e4caad69192..622b2279e60ed24a1f4aa74278d6fe3f3d76f967 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039991.412 units remaining) + - location: 13 (just consumed gas: 8.588) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039991.402 units remaining) + - location: 13 (just consumed gas: 0.010) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039991.402 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039991.392 units remaining) + - location: 16 (just consumed gas: 0.010) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039991.367 units remaining) + - location: 14 (just consumed gas: 0.025) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039991.278 units remaining) + - location: 17 (just consumed gas: 0.089) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039991.268 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039991.258 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039991.248 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} (Some 1) { Elt "2" 2 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" index c42ecb1e50a5421c1003c4d0112c91e269512dc0..4395e478bf74448cbf896640a9f266f5e4430704 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039991.412 units remaining) + - location: 13 (just consumed gas: 8.588) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039991.402 units remaining) + - location: 13 (just consumed gas: 0.010) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039991.402 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039991.392 units remaining) + - location: 16 (just consumed gas: 0.010) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039991.367 units remaining) + - location: 14 (just consumed gas: 0.025) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039991.278 units remaining) + - location: 17 (just consumed gas: 0.089) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039991.268 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039991.258 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039991.248 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} (Some 1) { Elt "2" 2 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" index ed5352a20c2df5dd84b4bb8d8471e498e846fb2c..9a07f3eecbee4f083e7015574f0f9c4198e9ed26 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039991.667 units remaining) + - location: 13 (just consumed gas: 8.333) [ (Pair "hello" None { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039991.657 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair None { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039991.657 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039991.647 units remaining) + - location: 16 (just consumed gas: 0.010) [ None { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039991.622 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" None { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039991.512 units remaining) + - location: 17 (just consumed gas: 0.110) [ (Some 4) {} ] - - location: 18 (remaining gas: 1039991.502 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 4) {}) ] - - location: 19 (remaining gas: 1039991.492 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 4) {}) ] - - location: 21 (remaining gas: 1039991.482 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} (Some 4) {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" index 8172e6bb8353ec72fe85c09d81c2ba3fbb3966f6..c2f9be951e0cca57b83f34f66d781ab4278bf456 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039992.021 units remaining) + - location: 13 (just consumed gas: 7.979) [ (Pair "hello" None {}) ] - - location: 13 (remaining gas: 1039992.011 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair None {}) ] - - location: 14 (remaining gas: 1039992.011 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None {}) ] - - location: 16 (remaining gas: 1039992.001 units remaining) + - location: 16 (just consumed gas: 0.010) [ None {} ] - - location: 14 (remaining gas: 1039991.976 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" None {} ] - - location: 17 (remaining gas: 1039991.881 units remaining) + - location: 17 (just consumed gas: 0.095) [ None {} ] - - location: 18 (remaining gas: 1039991.871 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair None {}) ] - - location: 19 (remaining gas: 1039991.861 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair None {}) ] - - location: 21 (remaining gas: 1039991.851 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} None {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" index cb09030f04ced0bdd8921427eb44f6ef8e7bba80..d5414f778bb53c6739918396401fb3d708dd59c9 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" @@ -7,35 +7,35 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039988.811 units remaining) + - location: 12 (just consumed gas: 11.189) [ (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 12 (remaining gas: 1039988.801 units remaining) + - 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 (remaining gas: 1039988.791 units remaining) + - location: 13 (just consumed gas: 0.010) [ "1" (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 14 (remaining gas: 1039988.791 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 17 (remaining gas: 1039988.781 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 18 (remaining gas: 1039988.771 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } ] - - location: 19 (remaining gas: 1039988.761 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } { Elt "1" "one" ; Elt "2" "two" } ] - - location: 14 (remaining gas: 1039988.736 units remaining) + - location: 14 (just consumed gas: 0.025) [ "1" { Elt "1" "one" ; Elt "2" "two" } { Elt "1" "one" ; Elt "2" "two" } ] - - location: 20 (remaining gas: 1039988.653 units remaining) + - location: 20 (just consumed gas: 0.083) [ (Some "one") { Elt "1" "one" ; Elt "2" "two" } ] - - location: 21 (remaining gas: 1039988.643 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 22 (remaining gas: 1039988.633 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 24 (remaining gas: 1039988.623 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" index 730d90ae5e577bf6dc4b1a28f4888f23e6c43e3c..181c9bad636b3e9f7e617c8d1c57b693b1504d1b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" @@ -7,35 +7,35 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039989.170 units remaining) + - location: 12 (just consumed gas: 10.830) [ (Pair "" None { Elt "hello" "hi" }) ] - - location: 12 (remaining gas: 1039989.160 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair "" None { Elt "hello" "hi" }) (Pair "" None { Elt "hello" "hi" }) ] - - location: 13 (remaining gas: 1039989.150 units remaining) + - location: 13 (just consumed gas: 0.010) [ "" (Pair "" None { Elt "hello" "hi" }) ] - - location: 14 (remaining gas: 1039989.150 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "" None { Elt "hello" "hi" }) ] - - location: 17 (remaining gas: 1039989.140 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair None { Elt "hello" "hi" }) ] - - location: 18 (remaining gas: 1039989.130 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039989.120 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039989.095 units remaining) + - location: 14 (just consumed gas: 0.025) [ "" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039989.015 units remaining) + - location: 20 (just consumed gas: 0.080) [ None { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039989.005 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair None { Elt "hello" "hi" }) ] - - location: 22 (remaining gas: 1039988.995 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Pair None { Elt "hello" "hi" }) ] - - location: 24 (remaining gas: 1039988.985 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} None { Elt "hello" "hi" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" index 3d01bada321f12fe97e1231cc51a0459ccfb399e..f085941c3e80f49ab95a0a4eb03be346628d3c2a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" @@ -7,35 +7,35 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039989.120 units remaining) + - location: 12 (just consumed gas: 10.880) [ (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 12 (remaining gas: 1039989.110 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair "hello" None { Elt "hello" "hi" }) (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 13 (remaining gas: 1039989.100 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 14 (remaining gas: 1039989.100 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 17 (remaining gas: 1039989.090 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair None { Elt "hello" "hi" }) ] - - location: 18 (remaining gas: 1039989.080 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039989.070 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039989.045 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039988.955 units remaining) + - location: 20 (just consumed gas: 0.090) [ (Some "hi") { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039988.945 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair (Some "hi") { Elt "hello" "hi" }) ] - - location: 22 (remaining gas: 1039988.935 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Pair (Some "hi") { Elt "hello" "hi" }) ] - - location: 24 (remaining gas: 1039988.925 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} (Some "hi") { Elt "hello" "hi" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" index 13210cf9a3de990c5c4bc72423002a98abf90d90..8281de4b77a3719022888324dd59874210ec35dc 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039669.947 units remaining) + - location: 8 (just consumed gas: 330.053) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" None) ] - - location: 8 (remaining gas: 1039669.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" ] - - location: 9 (remaining gas: 1039669.332 units remaining) + - location: 9 (just consumed gas: 0.605) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 10 (remaining gas: 1039669.322 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") ] - - location: 11 (remaining gas: 1039669.312 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") ] - - location: 13 (remaining gas: 1039669.302 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" index 3bacacb8f0b37b9c134b0a7f2060844c3fb45b7d..4463ec2b76801643f7be121848736c1dafc61076 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039669.947 units remaining) + - location: 8 (just consumed gas: 330.053) [ (Pair "edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES" None) ] - - location: 8 (remaining gas: 1039669.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ "edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES" ] - - location: 9 (remaining gas: 1039669.332 units remaining) + - location: 9 (just consumed gas: 0.605) [ "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k" ] - - location: 10 (remaining gas: 1039669.322 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") ] - - location: 11 (remaining gas: 1039669.312 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") ] - - location: 13 (remaining gas: 1039669.302 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" index 6ff38a758e72e2261d232361e800ff2186011b30..aaeee48e17cc3693a3efc264d0e5ec55f9538b70 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.071 units remaining) + - location: 7 (just consumed gas: 4.929) [ (Pair "12345" 0x00) ] - - location: 7 (remaining gas: 1039995.061 units remaining) + - location: 7 (just consumed gas: 0.010) [ "12345" ] - - location: 8 (remaining gas: 1039994.795 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0x0501000000053132333435 ] - - location: 9 (remaining gas: 1039994.353 units remaining) + - location: 9 (just consumed gas: 0.442) [ 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f ] - - location: 10 (remaining gas: 1039994.343 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f ] - - location: 12 (remaining gas: 1039994.333 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" index c05b7f5d1c18391dc6e57cc0e36b7071ee2cb9c8..4b693dc0b6580fec7c89ef19fcf1af9950d19658 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.051 units remaining) + - location: 7 (just consumed gas: 4.949) [ (Pair "abcdefg" 0x00) ] - - location: 7 (remaining gas: 1039995.041 units remaining) + - location: 7 (just consumed gas: 0.010) [ "abcdefg" ] - - location: 8 (remaining gas: 1039994.755 units remaining) + - location: 8 (just consumed gas: 0.286) [ 0x05010000000761626364656667 ] - - location: 9 (remaining gas: 1039994.311 units remaining) + - location: 9 (just consumed gas: 0.444) [ 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e ] - - location: 10 (remaining gas: 1039994.301 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e ] - - location: 12 (remaining gas: 1039994.291 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out index 4647611158c037ac98d1946b48b354829c2c3c2e..8b1e209944d68cc1d38fcbf52ff913a604403790 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039992.680 units remaining) + - location: 8 (just consumed gas: 7.320) [ (Pair False None) ] - - location: 8 (remaining gas: 1039992.670 units remaining) + - location: 8 (just consumed gas: 0.010) [ False ] - - location: 9 (remaining gas: 1039992.670 units remaining) + - location: 9 (just consumed gas: 0) [ ] - - location: 15 (remaining gas: 1039992.660 units remaining) + - location: 15 (just consumed gas: 0.010) [ False ] - - location: 9 (remaining gas: 1039992.645 units remaining) + - location: 9 (just consumed gas: 0.015) [ False ] - - location: 18 (remaining gas: 1039992.635 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) ] - - location: 19 (remaining gas: 1039992.625 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 21 (remaining gas: 1039992.615 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out index 5b055e7ff3b3f9261f224ba7a982e43cfc33a1e1..0b5e0ae39f4a076fad809eeca805857574998555 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039992.680 units remaining) + - location: 8 (just consumed gas: 7.320) [ (Pair True None) ] - - location: 8 (remaining gas: 1039992.670 units remaining) + - location: 8 (just consumed gas: 0.010) [ True ] - - location: 9 (remaining gas: 1039992.670 units remaining) + - location: 9 (just consumed gas: 0) [ ] - - location: 11 (remaining gas: 1039992.660 units remaining) + - location: 11 (just consumed gas: 0.010) [ True ] - - location: 9 (remaining gas: 1039992.645 units remaining) + - location: 9 (just consumed gas: 0.015) [ True ] - - location: 18 (remaining gas: 1039992.635 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) ] - - location: 19 (remaining gas: 1039992.625 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 21 (remaining gas: 1039992.615 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" index 3153a1f29020e48a8177353c6b307eae1c3e3eb4..9a86f38a57a1b402faeb925ae7562c968f9f981d 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.581 units remaining) + - location: 8 (just consumed gas: 6.419) [ (Pair (Some "hello") "?") ] - - location: 8 (remaining gas: 1039993.571 units remaining) + - location: 8 (just consumed gas: 0.010) [ (Some "hello") ] - - location: 10 (remaining gas: 1039993.571 units remaining) + - location: 10 (just consumed gas: 0) [ "hello" ] - - location: 10 (remaining gas: 1039993.556 units remaining) + - location: 10 (just consumed gas: 0.015) [ "hello" ] - - location: 16 (remaining gas: 1039993.546 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} "hello" ] - - location: 18 (remaining gas: 1039993.536 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} "hello") ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" index b3589386862e000989a670f2405422625ffefd8b..f162bb1dd7b86ae3acba62132b8272e535ffb500 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.745 units remaining) + - location: 8 (just consumed gas: 6.255) [ (Pair None "?") ] - - location: 8 (remaining gas: 1039993.735 units remaining) + - location: 8 (just consumed gas: 0.010) [ None ] - - location: 10 (remaining gas: 1039993.735 units remaining) + - location: 10 (just consumed gas: 0) [ ] - - location: 12 (remaining gas: 1039993.725 units remaining) + - location: 12 (just consumed gas: 0.010) [ "" ] - - location: 10 (remaining gas: 1039993.710 units remaining) + - location: 10 (just consumed gas: 0.015) [ "" ] - - location: 16 (remaining gas: 1039993.700 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} "" ] - - location: 18 (remaining gas: 1039993.690 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} "") ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out index 528b7f0cdd3f7fd2479e302f6fb83325e6635a3d..9fcdc0d2ab45aeb7ebba5ba592c0854fafae3640 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair 0 None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0 ] - - location: 9 (remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0 ] - - location: 10 (remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some 0) ] - - location: 11 (remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some 0) ] - - location: 13 (remaining gas: 1039994.897 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out index f98dbdaf73e83ff31c2d3eca050a3e873f46cada..5b5b34a16f5d0aa56ff59e8b860a6f42a64c0d7a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair 1 None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1 ] - - location: 9 (remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010) [ 1 ] - - location: 10 (remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some 1) ] - - location: 11 (remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some 1) ] - - location: 13 (remaining gas: 1039994.897 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} (Some 1)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out index 5bc234f45062fadbf0f5de37b1cd394113646c8b..9c29db7e61b93f9fda2d3ceace7fe2d885846409 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair 9999 None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ 9999 ] - - location: 9 (remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010) [ 9999 ] - - location: 10 (remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some 9999) ] - - location: 11 (remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some 9999) ] - - location: 13 (remaining gas: 1039994.897 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} (Some 9999)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out index 2dcbb2e84fcfd9aa2a063217731606a471d906e2..3179bd13658573b8002c9b5474a3aaec577b0514 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair 0x48656c6c6f2c20776f726c6421 None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x48656c6c6f2c20776f726c6421 ] - - location: 9 (remaining gas: 1039993.480 units remaining) + - location: 9 (just consumed gas: 1.457) [ 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4 ] - - location: 10 (remaining gas: 1039993.470 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) ] - - location: 11 (remaining gas: 1039993.460 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) ] - - location: 13 (remaining gas: 1039993.450 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" index 0880b5d620f2056850b8e16b3aee4a96a9866522..88d13d37ddb9393b7d65aca3583d1e3ee9a09ce8 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039992.756 units remaining) + - location: 11 (just consumed gas: 7.244) [ (Pair (Left True) (Left "X")) ] - - location: 11 (remaining gas: 1039992.746 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Left True) ] - - location: 12 (remaining gas: 1039992.746 units remaining) + - location: 12 (just consumed gas: 0) [ True ] - - location: 14 (remaining gas: 1039992.736 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right True) ] - - location: 12 (remaining gas: 1039992.721 units remaining) + - location: 12 (just consumed gas: 0.015) [ (Right True) ] - - location: 19 (remaining gas: 1039992.711 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Right True) ] - - location: 21 (remaining gas: 1039992.701 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} (Right True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" index 40df8b2bddcece320f4d1ba05afa37b963d88965..0c89399b653ac8d063d018324fd77964a63a2500 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039992.732 units remaining) + - location: 11 (just consumed gas: 7.268) [ (Pair (Right "a") (Left "X")) ] - - location: 11 (remaining gas: 1039992.722 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Right "a") ] - - location: 12 (remaining gas: 1039992.722 units remaining) + - location: 12 (just consumed gas: 0) [ "a" ] - - location: 17 (remaining gas: 1039992.712 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Left "a") ] - - location: 12 (remaining gas: 1039992.697 units remaining) + - location: 12 (just consumed gas: 0.015) [ (Left "a") ] - - location: 19 (remaining gas: 1039992.687 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Left "a") ] - - location: 21 (remaining gas: 1039992.677 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair {} (Left "a")) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out index f51d352461b56119f345e7b971ce04df56a57255..a1a6c4e96bfcc50562a12315e42ec2dd33048d45 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 111) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 1 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 1) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" index 4bc5be46f15d2cb3870fc1a9124525e1f4ad7851..38d080a909508a1bb44d03cd3ef72fab7434502b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.023 units remaining) + - location: 8 (just consumed gas: 5.977) [ (Pair { "d" ; "e" ; "f" } "abc") ] - - location: 8 (remaining gas: 1039994.013 units remaining) + - location: 8 (just consumed gas: 0.010) [ { "d" ; "e" ; "f" } "abc" ] - - location: 9 (remaining gas: 1039994.003 units remaining) + - location: 9 (just consumed gas: 0.010) [ "abc" { "d" ; "e" ; "f" } ] - - location: 10 (remaining gas: 1039993.993 units remaining) + - location: 10 (just consumed gas: 0.010) [ { "abc" ; "d" ; "e" ; "f" } ] - - location: 11 (remaining gas: 1039993.850 units remaining) + - location: 11 (just consumed gas: 0.143) [ "abcdef" ] - - location: 12 (remaining gas: 1039993.840 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} "abcdef" ] - - location: 14 (remaining gas: 1039993.830 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} "abcdef") ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" index 420b3c3416087e56f50cc50a8abe213937bb20f8..3a055e635ef004d32f565358cde872f4609433cb 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.395 units remaining) + - location: 8 (just consumed gas: 5.605) [ (Pair {} "abc") ] - - location: 8 (remaining gas: 1039994.385 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} "abc" ] - - location: 9 (remaining gas: 1039994.375 units remaining) + - location: 9 (just consumed gas: 0.010) [ "abc" {} ] - - location: 10 (remaining gas: 1039994.365 units remaining) + - location: 10 (just consumed gas: 0.010) [ { "abc" } ] - - location: 11 (remaining gas: 1039994.254 units remaining) + - location: 11 (just consumed gas: 0.111) [ "abc" ] - - location: 12 (remaining gas: 1039994.244 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} "abc" ] - - location: 14 (remaining gas: 1039994.234 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} "abc") ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out index 64452c23fedf228d60388fdc0bc1fa5bf52136df..30cee6651bd374fb3d3d4a14ef3137670f174a26 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.139 units remaining) + - location: 8 (just consumed gas: 5.861) [ (Pair { 0x00 ; 0x11 ; 0x00 } 0x) ] - - location: 8 (remaining gas: 1039994.129 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 0x00 ; 0x11 ; 0x00 } 0x ] - - location: 9 (remaining gas: 1039994.119 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0x { 0x00 ; 0x11 ; 0x00 } ] - - location: 10 (remaining gas: 1039994.109 units remaining) + - location: 10 (just consumed gas: 0.010) [ { 0x ; 0x00 ; 0x11 ; 0x00 } ] - - location: 11 (remaining gas: 1039993.968 units remaining) + - location: 11 (just consumed gas: 0.141) [ 0x001100 ] - - location: 12 (remaining gas: 1039993.958 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} 0x001100 ] - - location: 14 (remaining gas: 1039993.948 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} 0x001100) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out index 3ce3207614fa88855e064fb8a6d9d4f70eba1e21..8bb6fc88f180bbbeb2c008d127545a50374db6fc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.439 units remaining) + - location: 8 (just consumed gas: 5.561) [ (Pair {} 0x) ] - - location: 8 (remaining gas: 1039994.429 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} 0x ] - - location: 9 (remaining gas: 1039994.419 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0x {} ] - - location: 10 (remaining gas: 1039994.409 units remaining) + - location: 10 (just consumed gas: 0.010) [ { 0x } ] - - location: 11 (remaining gas: 1039994.299 units remaining) + - location: 11 (just consumed gas: 0.110) [ 0x ] - - location: 12 (remaining gas: 1039994.289 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} 0x ] - - location: 14 (remaining gas: 1039994.279 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} 0x) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out index e9918e4a3906eaca93499ab26732cd50406dc1fb..88d16ace0fc98461994d32bad1b8c281fa659eb3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.139 units remaining) + - location: 8 (just consumed gas: 5.861) [ (Pair { 0xcd ; 0xef ; 0x00 } 0x00ab) ] - - location: 8 (remaining gas: 1039994.129 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 0xcd ; 0xef ; 0x00 } 0x00ab ] - - location: 9 (remaining gas: 1039994.119 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0x00ab { 0xcd ; 0xef ; 0x00 } ] - - location: 10 (remaining gas: 1039994.109 units remaining) + - location: 10 (just consumed gas: 0.010) [ { 0x00ab ; 0xcd ; 0xef ; 0x00 } ] - - location: 11 (remaining gas: 1039993.967 units remaining) + - location: 11 (just consumed gas: 0.142) [ 0x00abcdef00 ] - - location: 12 (remaining gas: 1039993.957 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} 0x00abcdef00 ] - - location: 14 (remaining gas: 1039993.947 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} 0x00abcdef00) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out index db5a8e45a7e56d750f8f8e6d91aa51a290ec5335..0db79c4aa39a4c3e6da5615fc4d4da6c7f202634 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.439 units remaining) + - location: 8 (just consumed gas: 5.561) [ (Pair {} 0xabcd) ] - - location: 8 (remaining gas: 1039994.429 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} 0xabcd ] - - location: 9 (remaining gas: 1039994.419 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0xabcd {} ] - - location: 10 (remaining gas: 1039994.409 units remaining) + - location: 10 (just consumed gas: 0.010) [ { 0xabcd } ] - - location: 11 (remaining gas: 1039994.298 units remaining) + - location: 11 (just consumed gas: 0.111) [ 0xabcd ] - - location: 12 (remaining gas: 1039994.288 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} 0xabcd ] - - location: 14 (remaining gas: 1039994.278 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} 0xabcd) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" index 11bff77493c7bd31dcd9d750a9a4fe69da08df5e..141e0e3156b38fcb412acb9cdc4bf2a5759faf8f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039995.439 units remaining) + - location: 9 (just consumed gas: 4.561) [ (Pair { "1" ; "2" ; "3" } { "" }) ] - - location: 9 (remaining gas: 1039995.429 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "1" ; "2" ; "3" } ] - - location: 10 (remaining gas: 1039995.419 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "1" ; "2" ; "3" } ] - - location: 12 (remaining gas: 1039995.409 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} { "1" ; "2" ; "3" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" index 18438064e4eeb501dcd8214017430e0efe2660f8..43409809a18796e796d05c419e0543de384cda81 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039995.439 units remaining) + - location: 9 (just consumed gas: 4.561) [ (Pair { "a" ; "b" ; "c" } { "" }) ] - - location: 9 (remaining gas: 1039995.429 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 10 (remaining gas: 1039995.419 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 12 (remaining gas: 1039995.409 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} { "a" ; "b" ; "c" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" index 00e458064f205e5805e148393345a5b3d66ce829..843552e5328679dce8761727fc8a0a87004e92ef 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039995.811 units remaining) + - location: 9 (just consumed gas: 4.189) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039995.801 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (remaining gas: 1039995.791 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} {} ] - - location: 12 (remaining gas: 1039995.781 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" index 74b96fdcddc2a1ad6f7923f2a2c01601625678f2..bdb3bd311cfea99457e51cf65524c971b5edbfb3 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.553 units remaining) + - location: 9 (just consumed gas: 5.447) [ (Pair { "1" ; "2" ; "3" } { "" }) ] - - location: 9 (remaining gas: 1039994.543 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "1" ; "2" ; "3" } ] - - location: 10 (remaining gas: 1039994.543 units remaining) + - location: 10 (just consumed gas: 0) [ "1" ] - - location: 10 (remaining gas: 1039994.528 units remaining) + - location: 10 (just consumed gas: 0.015) [ "2" ] - - location: 10 (remaining gas: 1039994.513 units remaining) + - location: 10 (just consumed gas: 0.015) [ "3" ] - - location: 10 (remaining gas: 1039994.498 units remaining) + - location: 10 (just consumed gas: 0.015) [ { "1" ; "2" ; "3" } ] - - location: 12 (remaining gas: 1039994.488 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} { "1" ; "2" ; "3" } ] - - location: 14 (remaining gas: 1039994.478 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} { "1" ; "2" ; "3" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" index 9c79d0a4a03b948274d10f0ccadcd868b86bc9c3..00e84f873593b9c976d391ac67d79b4a0b82d5e1 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.553 units remaining) + - location: 9 (just consumed gas: 5.447) [ (Pair { "a" ; "b" ; "c" } { "" }) ] - - location: 9 (remaining gas: 1039994.543 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 10 (remaining gas: 1039994.543 units remaining) + - location: 10 (just consumed gas: 0) [ "a" ] - - location: 10 (remaining gas: 1039994.528 units remaining) + - location: 10 (just consumed gas: 0.015) [ "b" ] - - location: 10 (remaining gas: 1039994.513 units remaining) + - location: 10 (just consumed gas: 0.015) [ "c" ] - - location: 10 (remaining gas: 1039994.498 units remaining) + - location: 10 (just consumed gas: 0.015) [ { "a" ; "b" ; "c" } ] - - location: 12 (remaining gas: 1039994.488 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 14 (remaining gas: 1039994.478 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} { "a" ; "b" ; "c" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" index fd3c7d637bc9453e46aee5981f81d985f866179d..ecaa7068eaa00110d2b44db9a350d3d756226c08 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.925 units remaining) + - location: 9 (just consumed gas: 5.075) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039994.915 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (remaining gas: 1039994.915 units remaining) + - location: 10 (just consumed gas: 0) [ {} ] - - location: 12 (remaining gas: 1039994.905 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} {} ] - - location: 14 (remaining gas: 1039994.895 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out index d9079641a59ba68571afd8904c6c5710d35de0be..cdc39e590acc790b2137d18df2a9d61e8835bc3f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039992.998 units remaining) + - location: 8 (just consumed gas: 7.002) [ (Pair { 10 ; 2 ; 1 } 0) ] - - location: 8 (remaining gas: 1039992.988 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 10 ; 2 ; 1 } ] - - location: 9 (remaining gas: 1039992.978 units remaining) + - location: 9 (just consumed gas: 0.010) [ 1 { 10 ; 2 ; 1 } ] - - location: 12 (remaining gas: 1039992.968 units remaining) + - location: 12 (just consumed gas: 0.010) [ { 10 ; 2 ; 1 } 1 ] - - location: 13 (remaining gas: 1039992.968 units remaining) + - location: 13 (just consumed gas: 0) [ 10 1 ] - - location: 15 (remaining gas: 1039992.909 units remaining) + - location: 15 (just consumed gas: 0.059) [ 10 ] - - location: 13 (remaining gas: 1039992.894 units remaining) + - location: 13 (just consumed gas: 0.015) [ 2 10 ] - - location: 15 (remaining gas: 1039992.835 units remaining) + - location: 15 (just consumed gas: 0.059) [ 20 ] - - location: 13 (remaining gas: 1039992.820 units remaining) + - location: 13 (just consumed gas: 0.015) [ 1 20 ] - - location: 15 (remaining gas: 1039992.761 units remaining) + - location: 15 (just consumed gas: 0.059) [ 20 ] - - location: 13 (remaining gas: 1039992.746 units remaining) + - location: 13 (just consumed gas: 0.015) [ 20 ] - - location: 16 (remaining gas: 1039992.736 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 20 ] - - location: 18 (remaining gas: 1039992.726 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} 20) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out index 4640acf7c0af3d0227c0249e46eacbb27693502d..8daf72c03eeeb91cf3d851d26fd5b27b900594a4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039992.998 units remaining) + - location: 8 (just consumed gas: 7.002) [ (Pair { 3 ; 6 ; 9 } 0) ] - - location: 8 (remaining gas: 1039992.988 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 3 ; 6 ; 9 } ] - - location: 9 (remaining gas: 1039992.978 units remaining) + - location: 9 (just consumed gas: 0.010) [ 1 { 3 ; 6 ; 9 } ] - - location: 12 (remaining gas: 1039992.968 units remaining) + - location: 12 (just consumed gas: 0.010) [ { 3 ; 6 ; 9 } 1 ] - - location: 13 (remaining gas: 1039992.968 units remaining) + - location: 13 (just consumed gas: 0) [ 3 1 ] - - location: 15 (remaining gas: 1039992.909 units remaining) + - location: 15 (just consumed gas: 0.059) [ 3 ] - - location: 13 (remaining gas: 1039992.894 units remaining) + - location: 13 (just consumed gas: 0.015) [ 6 3 ] - - location: 15 (remaining gas: 1039992.835 units remaining) + - location: 15 (just consumed gas: 0.059) [ 18 ] - - location: 13 (remaining gas: 1039992.820 units remaining) + - location: 13 (just consumed gas: 0.015) [ 9 18 ] - - location: 15 (remaining gas: 1039992.761 units remaining) + - location: 15 (just consumed gas: 0.059) [ 162 ] - - location: 13 (remaining gas: 1039992.746 units remaining) + - location: 13 (just consumed gas: 0.015) [ 162 ] - - location: 16 (remaining gas: 1039992.736 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 162 ] - - location: 18 (remaining gas: 1039992.726 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} 162) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out index 9dbc5fc218c2142874c55577bfe377be8368e25c..74d7e06f9c732f5c7c61a9cbc31acad1ec0090cf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out @@ -7,130 +7,130 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039987.659 units remaining) + - location: 9 (just consumed gas: 12.341) [ (Pair { 1 ; 1 ; 1 ; 1 } { 0 }) ] - - location: 9 (remaining gas: 1039987.649 units remaining) + - location: 9 (just consumed gas: 0.010) [ { 1 ; 1 ; 1 ; 1 } ] - - location: 10 (remaining gas: 1039987.639 units remaining) + - location: 10 (just consumed gas: 0.010) [ 0 { 1 ; 1 ; 1 ; 1 } ] - - location: 13 (remaining gas: 1039987.629 units remaining) + - location: 13 (just consumed gas: 0.010) [ { 1 ; 1 ; 1 ; 1 } 0 ] - - location: 14 (remaining gas: 1039987.629 units remaining) + - location: 14 (just consumed gas: 0) [ 1 0 ] - - location: 16 (remaining gas: 1039987.629 units remaining) + - location: 16 (just consumed gas: 0) [ 0 ] - - location: 18 (remaining gas: 1039987.619 units remaining) + - location: 18 (just consumed gas: 0.010) [ 0 0 ] - - location: 16 (remaining gas: 1039987.594 units remaining) + - location: 16 (just consumed gas: 0.025) [ 1 0 0 ] - - location: 19 (remaining gas: 1039987.559 units remaining) + - location: 19 (just consumed gas: 0.035) [ 1 0 ] - - location: 20 (remaining gas: 1039987.559 units remaining) + - location: 20 (just consumed gas: 0) [ 0 ] - - location: 22 (remaining gas: 1039987.549 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 0 ] - - location: 25 (remaining gas: 1039987.514 units remaining) + - location: 25 (just consumed gas: 0.035) [ 1 ] - - location: 20 (remaining gas: 1039987.489 units remaining) + - location: 20 (just consumed gas: 0.025) [ 1 1 ] - - location: 14 (remaining gas: 1039987.474 units remaining) + - location: 14 (just consumed gas: 0.015) [ 1 1 ] - - location: 16 (remaining gas: 1039987.474 units remaining) + - location: 16 (just consumed gas: 0) [ 1 ] - - location: 18 (remaining gas: 1039987.464 units remaining) + - location: 18 (just consumed gas: 0.010) [ 1 1 ] - - location: 16 (remaining gas: 1039987.439 units remaining) + - location: 16 (just consumed gas: 0.025) [ 1 1 1 ] - - location: 19 (remaining gas: 1039987.404 units remaining) + - location: 19 (just consumed gas: 0.035) [ 2 1 ] - - location: 20 (remaining gas: 1039987.404 units remaining) + - location: 20 (just consumed gas: 0) [ 1 ] - - location: 22 (remaining gas: 1039987.394 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 1 ] - - location: 25 (remaining gas: 1039987.359 units remaining) + - location: 25 (just consumed gas: 0.035) [ 2 ] - - location: 20 (remaining gas: 1039987.334 units remaining) + - location: 20 (just consumed gas: 0.025) [ 2 2 ] - - location: 14 (remaining gas: 1039987.319 units remaining) + - location: 14 (just consumed gas: 0.015) [ 1 2 ] - - location: 16 (remaining gas: 1039987.319 units remaining) + - location: 16 (just consumed gas: 0) [ 2 ] - - location: 18 (remaining gas: 1039987.309 units remaining) + - location: 18 (just consumed gas: 0.010) [ 2 2 ] - - location: 16 (remaining gas: 1039987.284 units remaining) + - location: 16 (just consumed gas: 0.025) [ 1 2 2 ] - - location: 19 (remaining gas: 1039987.249 units remaining) + - location: 19 (just consumed gas: 0.035) [ 3 2 ] - - location: 20 (remaining gas: 1039987.249 units remaining) + - location: 20 (just consumed gas: 0) [ 2 ] - - location: 22 (remaining gas: 1039987.239 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 2 ] - - location: 25 (remaining gas: 1039987.204 units remaining) + - location: 25 (just consumed gas: 0.035) [ 3 ] - - location: 20 (remaining gas: 1039987.179 units remaining) + - location: 20 (just consumed gas: 0.025) [ 3 3 ] - - location: 14 (remaining gas: 1039987.164 units remaining) + - location: 14 (just consumed gas: 0.015) [ 1 3 ] - - location: 16 (remaining gas: 1039987.164 units remaining) + - location: 16 (just consumed gas: 0) [ 3 ] - - location: 18 (remaining gas: 1039987.154 units remaining) + - location: 18 (just consumed gas: 0.010) [ 3 3 ] - - location: 16 (remaining gas: 1039987.129 units remaining) + - location: 16 (just consumed gas: 0.025) [ 1 3 3 ] - - location: 19 (remaining gas: 1039987.094 units remaining) + - location: 19 (just consumed gas: 0.035) [ 4 3 ] - - location: 20 (remaining gas: 1039987.094 units remaining) + - location: 20 (just consumed gas: 0) [ 3 ] - - location: 22 (remaining gas: 1039987.084 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 3 ] - - location: 25 (remaining gas: 1039987.049 units remaining) + - location: 25 (just consumed gas: 0.035) [ 4 ] - - location: 20 (remaining gas: 1039987.024 units remaining) + - location: 20 (just consumed gas: 0.025) [ 4 4 ] - - location: 14 (remaining gas: 1039987.009 units remaining) + - location: 14 (just consumed gas: 0.015) [ { 1 ; 2 ; 3 ; 4 } 4 ] - - location: 26 (remaining gas: 1039986.999 units remaining) + - location: 26 (just consumed gas: 0.010) [ {} { 1 ; 2 ; 3 ; 4 } 4 ] - - location: 28 (remaining gas: 1039986.989 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Pair {} { 1 ; 2 ; 3 ; 4 }) 4 ] - - location: 29 (remaining gas: 1039986.989 units remaining) + - location: 29 (just consumed gas: 0) [ 4 ] - - location: 31 (remaining gas: 1039986.979 units remaining) + - location: 31 (just consumed gas: 0.010) [ ] - - location: 29 (remaining gas: 1039986.954 units remaining) + - location: 29 (just consumed gas: 0.025) [ (Pair {} { 1 ; 2 ; 3 ; 4 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out index 50fb72f0496e75d256359ebd21b6675801b5d0fa..fe21998b56bd8957264d8c19f43b17e5e55d9cca 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out @@ -7,130 +7,130 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039987.659 units remaining) + - location: 9 (just consumed gas: 12.341) [ (Pair { 1 ; 2 ; 3 ; 0 } { 0 }) ] - - location: 9 (remaining gas: 1039987.649 units remaining) + - location: 9 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 ; 0 } ] - - location: 10 (remaining gas: 1039987.639 units remaining) + - location: 10 (just consumed gas: 0.010) [ 0 { 1 ; 2 ; 3 ; 0 } ] - - location: 13 (remaining gas: 1039987.629 units remaining) + - location: 13 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 ; 0 } 0 ] - - location: 14 (remaining gas: 1039987.629 units remaining) + - location: 14 (just consumed gas: 0) [ 1 0 ] - - location: 16 (remaining gas: 1039987.629 units remaining) + - location: 16 (just consumed gas: 0) [ 0 ] - - location: 18 (remaining gas: 1039987.619 units remaining) + - location: 18 (just consumed gas: 0.010) [ 0 0 ] - - location: 16 (remaining gas: 1039987.594 units remaining) + - location: 16 (just consumed gas: 0.025) [ 1 0 0 ] - - location: 19 (remaining gas: 1039987.559 units remaining) + - location: 19 (just consumed gas: 0.035) [ 1 0 ] - - location: 20 (remaining gas: 1039987.559 units remaining) + - location: 20 (just consumed gas: 0) [ 0 ] - - location: 22 (remaining gas: 1039987.549 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 0 ] - - location: 25 (remaining gas: 1039987.514 units remaining) + - location: 25 (just consumed gas: 0.035) [ 1 ] - - location: 20 (remaining gas: 1039987.489 units remaining) + - location: 20 (just consumed gas: 0.025) [ 1 1 ] - - location: 14 (remaining gas: 1039987.474 units remaining) + - location: 14 (just consumed gas: 0.015) [ 2 1 ] - - location: 16 (remaining gas: 1039987.474 units remaining) + - location: 16 (just consumed gas: 0) [ 1 ] - - location: 18 (remaining gas: 1039987.464 units remaining) + - location: 18 (just consumed gas: 0.010) [ 1 1 ] - - location: 16 (remaining gas: 1039987.439 units remaining) + - location: 16 (just consumed gas: 0.025) [ 2 1 1 ] - - location: 19 (remaining gas: 1039987.404 units remaining) + - location: 19 (just consumed gas: 0.035) [ 3 1 ] - - location: 20 (remaining gas: 1039987.404 units remaining) + - location: 20 (just consumed gas: 0) [ 1 ] - - location: 22 (remaining gas: 1039987.394 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 1 ] - - location: 25 (remaining gas: 1039987.359 units remaining) + - location: 25 (just consumed gas: 0.035) [ 2 ] - - location: 20 (remaining gas: 1039987.334 units remaining) + - location: 20 (just consumed gas: 0.025) [ 3 2 ] - - location: 14 (remaining gas: 1039987.319 units remaining) + - location: 14 (just consumed gas: 0.015) [ 3 2 ] - - location: 16 (remaining gas: 1039987.319 units remaining) + - location: 16 (just consumed gas: 0) [ 2 ] - - location: 18 (remaining gas: 1039987.309 units remaining) + - location: 18 (just consumed gas: 0.010) [ 2 2 ] - - location: 16 (remaining gas: 1039987.284 units remaining) + - location: 16 (just consumed gas: 0.025) [ 3 2 2 ] - - location: 19 (remaining gas: 1039987.249 units remaining) + - location: 19 (just consumed gas: 0.035) [ 5 2 ] - - location: 20 (remaining gas: 1039987.249 units remaining) + - location: 20 (just consumed gas: 0) [ 2 ] - - location: 22 (remaining gas: 1039987.239 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 2 ] - - location: 25 (remaining gas: 1039987.204 units remaining) + - location: 25 (just consumed gas: 0.035) [ 3 ] - - location: 20 (remaining gas: 1039987.179 units remaining) + - location: 20 (just consumed gas: 0.025) [ 5 3 ] - - location: 14 (remaining gas: 1039987.164 units remaining) + - location: 14 (just consumed gas: 0.015) [ 0 3 ] - - location: 16 (remaining gas: 1039987.164 units remaining) + - location: 16 (just consumed gas: 0) [ 3 ] - - location: 18 (remaining gas: 1039987.154 units remaining) + - location: 18 (just consumed gas: 0.010) [ 3 3 ] - - location: 16 (remaining gas: 1039987.129 units remaining) + - location: 16 (just consumed gas: 0.025) [ 0 3 3 ] - - location: 19 (remaining gas: 1039987.094 units remaining) + - location: 19 (just consumed gas: 0.035) [ 3 3 ] - - location: 20 (remaining gas: 1039987.094 units remaining) + - location: 20 (just consumed gas: 0) [ 3 ] - - location: 22 (remaining gas: 1039987.084 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 3 ] - - location: 25 (remaining gas: 1039987.049 units remaining) + - location: 25 (just consumed gas: 0.035) [ 4 ] - - location: 20 (remaining gas: 1039987.024 units remaining) + - location: 20 (just consumed gas: 0.025) [ 3 4 ] - - location: 14 (remaining gas: 1039987.009 units remaining) + - location: 14 (just consumed gas: 0.015) [ { 1 ; 3 ; 5 ; 3 } 4 ] - - location: 26 (remaining gas: 1039986.999 units remaining) + - location: 26 (just consumed gas: 0.010) [ {} { 1 ; 3 ; 5 ; 3 } 4 ] - - location: 28 (remaining gas: 1039986.989 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Pair {} { 1 ; 3 ; 5 ; 3 }) 4 ] - - location: 29 (remaining gas: 1039986.989 units remaining) + - location: 29 (just consumed gas: 0) [ 4 ] - - location: 31 (remaining gas: 1039986.979 units remaining) + - location: 31 (just consumed gas: 0.010) [ ] - - location: 29 (remaining gas: 1039986.954 units remaining) + - location: 29 (just consumed gas: 0.025) [ (Pair {} { 1 ; 3 ; 5 ; 3 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out index b7840145e91ef13697f5165fedb008f0343e83da..adeb6050727f4f0593199f2a36dc46fb9192afcd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039988.059 units remaining) + - location: 9 (just consumed gas: 11.941) [ (Pair {} { 0 }) ] - - location: 9 (remaining gas: 1039988.049 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (remaining gas: 1039988.039 units remaining) + - location: 10 (just consumed gas: 0.010) [ 0 {} ] - - location: 13 (remaining gas: 1039988.029 units remaining) + - location: 13 (just consumed gas: 0.010) [ {} 0 ] - - location: 14 (remaining gas: 1039988.029 units remaining) + - location: 14 (just consumed gas: 0) [ {} 0 ] - - location: 26 (remaining gas: 1039988.019 units remaining) + - location: 26 (just consumed gas: 0.010) [ {} {} 0 ] - - location: 28 (remaining gas: 1039988.009 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Pair {} {}) 0 ] - - location: 29 (remaining gas: 1039988.009 units remaining) + - location: 29 (just consumed gas: 0) [ 0 ] - - location: 31 (remaining gas: 1039987.999 units remaining) + - location: 31 (just consumed gas: 0.010) [ ] - - location: 29 (remaining gas: 1039987.974 units remaining) + - location: 29 (just consumed gas: 0.025) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out index 0a37ca66348cfd6b81d79a3de9f4a7d3bbb7b322..04d1e99a473581a5583e21a9acbbbc1ecb3e4cde 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039995.005 units remaining) + - location: 8 (just consumed gas: 4.995) [ (Pair { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } 111) ] - - location: 8 (remaining gas: 1039994.995 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } ] - - location: 9 (remaining gas: 1039994.985 units remaining) + - location: 9 (just consumed gas: 0.010) [ 6 ] - - location: 10 (remaining gas: 1039994.975 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 6 ] - - location: 12 (remaining gas: 1039994.965 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 6) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out index f31a205d55141254ded522e2a1674c9d1be03efb..addd24cd9df83d7cafc0d6afd059b4186569463b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039995.305 units remaining) + - location: 8 (just consumed gas: 4.695) [ (Pair { 1 ; 2 ; 3 } 111) ] - - location: 8 (remaining gas: 1039995.295 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 } ] - - location: 9 (remaining gas: 1039995.285 units remaining) + - location: 9 (just consumed gas: 0.010) [ 3 ] - - location: 10 (remaining gas: 1039995.275 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 3 ] - - location: 12 (remaining gas: 1039995.265 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 3) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out index eaece68b2f2629c71a98043db40c8ca12fc4cd12..a38efff17cda113d3b7b5978c5d994c3cd9c8edd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039995.505 units remaining) + - location: 8 (just consumed gas: 4.495) [ (Pair { 1 } 111) ] - - location: 8 (remaining gas: 1039995.495 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 } ] - - location: 9 (remaining gas: 1039995.485 units remaining) + - location: 9 (just consumed gas: 0.010) [ 1 ] - - location: 10 (remaining gas: 1039995.475 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 1 ] - - location: 12 (remaining gas: 1039995.465 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out index efbc5ee6f8d4ef1f702f7d29c67fad8be28b8e4d..37691321729927850ec1b8ad73021a6fa8d6ed27 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039995.605 units remaining) + - location: 8 (just consumed gas: 4.395) [ (Pair {} 111) ] - - location: 8 (remaining gas: 1039995.595 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} ] - - location: 9 (remaining gas: 1039995.585 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0 ] - - location: 10 (remaining gas: 1039995.575 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0 ] - - location: 12 (remaining gas: 1039995.565 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" index b204aae5b07003e46da66696b29d2383e62da4dd..f15eab118523f5a42e294d4dec3b9d3742654aed 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" @@ -7,157 +7,157 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039982.365 units remaining) + - location: 9 (just consumed gas: 17.635) [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (remaining gas: 1039982.355 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } ] - - location: 10 (remaining gas: 1039982.345 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "c" ; "b" ; "a" } ] - - location: 12 (remaining gas: 1039982.335 units remaining) + - location: 12 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } {} ] - - location: 13 (remaining gas: 1039982.325 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 14 (remaining gas: 1039982.315 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair { "c" ; "b" ; "a" } {})) ] - - location: 41 (remaining gas: 1039982.315 units remaining) + - location: 41 (just consumed gas: 0) [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 19 (remaining gas: 1039982.305 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair { "c" ; "b" ; "a" } {}) (Pair { "c" ; "b" ; "a" } {}) ] - - location: 20 (remaining gas: 1039982.295 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } (Pair { "c" ; "b" ; "a" } {}) ] - - location: 21 (remaining gas: 1039982.295 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 23 (remaining gas: 1039982.285 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} ] - - location: 21 (remaining gas: 1039982.260 units remaining) + - location: 21 (just consumed gas: 0.025) [ { "c" ; "b" ; "a" } {} ] - - location: 24 (remaining gas: 1039982.260 units remaining) + - location: 24 (just consumed gas: 0) [ "c" { "b" ; "a" } {} ] - - location: 26 (remaining gas: 1039982.250 units remaining) + - location: 26 (just consumed gas: 0.010) [ { "b" ; "a" } "c" {} ] - - location: 27 (remaining gas: 1039982.250 units remaining) + - location: 27 (just consumed gas: 0) [ "c" {} ] - - location: 29 (remaining gas: 1039982.240 units remaining) + - location: 29 (just consumed gas: 0.010) [ { "c" } ] - - location: 27 (remaining gas: 1039982.215 units remaining) + - location: 27 (just consumed gas: 0.025) [ { "b" ; "a" } { "c" } ] - - location: 30 (remaining gas: 1039982.205 units remaining) + - location: 30 (just consumed gas: 0.010) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 31 (remaining gas: 1039982.195 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Left (Pair { "b" ; "a" } { "c" })) ] - - location: 24 (remaining gas: 1039982.180 units remaining) + - location: 24 (just consumed gas: 0.015) [ (Left (Pair { "b" ; "a" } { "c" })) ] - - location: 41 (remaining gas: 1039982.165 units remaining) + - location: 41 (just consumed gas: 0.015) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 19 (remaining gas: 1039982.155 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair { "b" ; "a" } { "c" }) (Pair { "b" ; "a" } { "c" }) ] - - location: 20 (remaining gas: 1039982.145 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "b" ; "a" } (Pair { "b" ; "a" } { "c" }) ] - - location: 21 (remaining gas: 1039982.145 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 23 (remaining gas: 1039982.135 units remaining) + - location: 23 (just consumed gas: 0.010) [ { "c" } ] - - location: 21 (remaining gas: 1039982.110 units remaining) + - location: 21 (just consumed gas: 0.025) [ { "b" ; "a" } { "c" } ] - - location: 24 (remaining gas: 1039982.110 units remaining) + - location: 24 (just consumed gas: 0) [ "b" { "a" } { "c" } ] - - location: 26 (remaining gas: 1039982.100 units remaining) + - location: 26 (just consumed gas: 0.010) [ { "a" } "b" { "c" } ] - - location: 27 (remaining gas: 1039982.100 units remaining) + - location: 27 (just consumed gas: 0) [ "b" { "c" } ] - - location: 29 (remaining gas: 1039982.090 units remaining) + - location: 29 (just consumed gas: 0.010) [ { "b" ; "c" } ] - - location: 27 (remaining gas: 1039982.065 units remaining) + - location: 27 (just consumed gas: 0.025) [ { "a" } { "b" ; "c" } ] - - location: 30 (remaining gas: 1039982.055 units remaining) + - location: 30 (just consumed gas: 0.010) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 31 (remaining gas: 1039982.045 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Left (Pair { "a" } { "b" ; "c" })) ] - - location: 24 (remaining gas: 1039982.030 units remaining) + - location: 24 (just consumed gas: 0.015) [ (Left (Pair { "a" } { "b" ; "c" })) ] - - location: 41 (remaining gas: 1039982.015 units remaining) + - location: 41 (just consumed gas: 0.015) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 19 (remaining gas: 1039982.005 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair { "a" } { "b" ; "c" }) (Pair { "a" } { "b" ; "c" }) ] - - location: 20 (remaining gas: 1039981.995 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "a" } (Pair { "a" } { "b" ; "c" }) ] - - location: 21 (remaining gas: 1039981.995 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 23 (remaining gas: 1039981.985 units remaining) + - location: 23 (just consumed gas: 0.010) [ { "b" ; "c" } ] - - location: 21 (remaining gas: 1039981.960 units remaining) + - location: 21 (just consumed gas: 0.025) [ { "a" } { "b" ; "c" } ] - - location: 24 (remaining gas: 1039981.960 units remaining) + - location: 24 (just consumed gas: 0) [ "a" {} { "b" ; "c" } ] - - location: 26 (remaining gas: 1039981.950 units remaining) + - location: 26 (just consumed gas: 0.010) [ {} "a" { "b" ; "c" } ] - - location: 27 (remaining gas: 1039981.950 units remaining) + - location: 27 (just consumed gas: 0) [ "a" { "b" ; "c" } ] - - location: 29 (remaining gas: 1039981.940 units remaining) + - location: 29 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 27 (remaining gas: 1039981.915 units remaining) + - location: 27 (just consumed gas: 0.025) [ {} { "a" ; "b" ; "c" } ] - - location: 30 (remaining gas: 1039981.905 units remaining) + - location: 30 (just consumed gas: 0.010) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 31 (remaining gas: 1039981.895 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Left (Pair {} { "a" ; "b" ; "c" })) ] - - location: 24 (remaining gas: 1039981.880 units remaining) + - location: 24 (just consumed gas: 0.015) [ (Left (Pair {} { "a" ; "b" ; "c" })) ] - - location: 41 (remaining gas: 1039981.865 units remaining) + - location: 41 (just consumed gas: 0.015) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 19 (remaining gas: 1039981.855 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} { "a" ; "b" ; "c" }) (Pair {} { "a" ; "b" ; "c" }) ] - - location: 20 (remaining gas: 1039981.845 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} (Pair {} { "a" ; "b" ; "c" }) ] - - location: 21 (remaining gas: 1039981.845 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 23 (remaining gas: 1039981.835 units remaining) + - location: 23 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 21 (remaining gas: 1039981.810 units remaining) + - location: 21 (just consumed gas: 0.025) [ {} { "a" ; "b" ; "c" } ] - - location: 24 (remaining gas: 1039981.810 units remaining) + - location: 24 (just consumed gas: 0) [ { "a" ; "b" ; "c" } ] - - location: 35 (remaining gas: 1039981.800 units remaining) + - location: 35 (just consumed gas: 0.010) [ (Right { "a" ; "b" ; "c" }) ] - - location: 24 (remaining gas: 1039981.785 units remaining) + - location: 24 (just consumed gas: 0.015) [ (Right { "a" ; "b" ; "c" }) ] - - location: 41 (remaining gas: 1039981.770 units remaining) + - location: 41 (just consumed gas: 0.015) [ { "a" ; "b" ; "c" } ] - - location: 41 (remaining gas: 1039981.760 units remaining) + - location: 41 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 43 (remaining gas: 1039981.750 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair {} { "a" ; "b" ; "c" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" index 21f748b2691c70b29a7ad268e7b43dca8abfdb6b..b900e4f848e8b330724ac1ea402129b6778a27c1 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" @@ -7,46 +7,46 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039982.737 units remaining) + - location: 9 (just consumed gas: 17.263) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039982.727 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (remaining gas: 1039982.717 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} {} ] - - location: 12 (remaining gas: 1039982.707 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (remaining gas: 1039982.697 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} {}) ] - - location: 14 (remaining gas: 1039982.687 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair {} {})) ] - - location: 41 (remaining gas: 1039982.687 units remaining) + - location: 41 (just consumed gas: 0) [ (Pair {} {}) ] - - location: 19 (remaining gas: 1039982.677 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} {}) (Pair {} {}) ] - - location: 20 (remaining gas: 1039982.667 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} (Pair {} {}) ] - - location: 21 (remaining gas: 1039982.667 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair {} {}) ] - - location: 23 (remaining gas: 1039982.657 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} ] - - location: 21 (remaining gas: 1039982.632 units remaining) + - location: 21 (just consumed gas: 0.025) [ {} {} ] - - location: 24 (remaining gas: 1039982.632 units remaining) + - location: 24 (just consumed gas: 0) [ {} ] - - location: 35 (remaining gas: 1039982.622 units remaining) + - location: 35 (just consumed gas: 0.010) [ (Right {}) ] - - location: 24 (remaining gas: 1039982.607 units remaining) + - location: 24 (just consumed gas: 0.015) [ (Right {}) ] - - location: 41 (remaining gas: 1039982.592 units remaining) + - location: 41 (just consumed gas: 0.015) [ {} ] - - location: 41 (remaining gas: 1039982.582 units remaining) + - location: 41 (just consumed gas: 0.010) [ {} {} ] - - location: 43 (remaining gas: 1039982.572 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out index 5031c8a46a2ba419f64ef7aa10bed05c4cd9ecd9..6ce68c403e6b7f2e8b8f18861a9ad42202cb2ee6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039994.969 units remaining) + - location: 11 (just consumed gas: 5.031) [ (Pair { Elt 0 0 ; Elt 3 4 } {}) ] - - location: 11 (remaining gas: 1039994.959 units remaining) + - location: 11 (just consumed gas: 0.010) [ { Elt 0 0 ; Elt 3 4 } ] - - location: 12 (remaining gas: 1039994.949 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} { Elt 0 0 ; Elt 3 4 } ] - - location: 14 (remaining gas: 1039994.939 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} { Elt 0 0 ; Elt 3 4 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out index 3a89e03bfc44a4eee078ef96e8ece309da9e2d05..05c642fed8def43e127cc8cd2d89c15a5fe58d25 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 4.716) [ (Pair { Elt 0 0 } {}) ] - - location: 11 (remaining gas: 1039995.274 units remaining) + - location: 11 (just consumed gas: 0.010) [ { Elt 0 0 } ] - - location: 12 (remaining gas: 1039995.264 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} { Elt 0 0 } ] - - location: 14 (remaining gas: 1039995.254 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} { Elt 0 0 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out index 2a083aa4058ab23d86fccc09e954ed00e694aec4..8930bc2ad07627104d979db0ff911b350cfdbd1f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 4.716) [ (Pair { Elt 0 1 } {}) ] - - location: 11 (remaining gas: 1039995.274 units remaining) + - location: 11 (just consumed gas: 0.010) [ { Elt 0 1 } ] - - location: 12 (remaining gas: 1039995.264 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} { Elt 0 1 } ] - - location: 14 (remaining gas: 1039995.254 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair {} { Elt 0 1 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out index 63f2dff238a6cb1caacb7400a3a5475d596a7e67..6df2c978b2ba871ba8284a6182a634fd034ac097 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out @@ -7,146 +7,146 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039981.384 units remaining) + - location: 11 (just consumed gas: 18.616) [ (Pair { Elt 0 100 ; Elt 2 100 } 0 0) ] - - location: 11 (remaining gas: 1039981.374 units remaining) + - location: 11 (just consumed gas: 0.010) [ { Elt 0 100 ; Elt 2 100 } ] - - location: 12 (remaining gas: 1039981.364 units remaining) + - location: 12 (just consumed gas: 0.010) [ 0 { Elt 0 100 ; Elt 2 100 } ] - - location: 15 (remaining gas: 1039981.354 units remaining) + - location: 15 (just consumed gas: 0.010) [ 0 0 { Elt 0 100 ; Elt 2 100 } ] - - location: 18 (remaining gas: 1039981.344 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair 0 0) { Elt 0 100 ; Elt 2 100 } ] - - location: 19 (remaining gas: 1039981.334 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 0 100 ; Elt 2 100 } (Pair 0 0) ] - - location: 20 (remaining gas: 1039981.334 units remaining) + - location: 20 (just consumed gas: 0) [ (Pair 0 100) (Pair 0 0) ] - - location: 22 (remaining gas: 1039981.334 units remaining) + - location: 22 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 24 (remaining gas: 1039981.324 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair 0 0) (Pair 0 0) ] - - location: 25 (remaining gas: 1039981.314 units remaining) + - location: 25 (just consumed gas: 0.010) [ 0 (Pair 0 0) ] - - location: 26 (remaining gas: 1039981.314 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 28 (remaining gas: 1039981.304 units remaining) + - location: 28 (just consumed gas: 0.010) [ 0 ] - - location: 26 (remaining gas: 1039981.279 units remaining) + - location: 26 (just consumed gas: 0.025) [ 0 0 ] - - location: 22 (remaining gas: 1039981.254 units remaining) + - location: 22 (just consumed gas: 0.025) [ (Pair 0 100) 0 0 ] - - location: 29 (remaining gas: 1039981.244 units remaining) + - location: 29 (just consumed gas: 0.010) [ (Pair 0 100) (Pair 0 100) 0 0 ] - - location: 30 (remaining gas: 1039981.244 units remaining) + - location: 30 (just consumed gas: 0) [ (Pair 0 100) 0 0 ] - - location: 32 (remaining gas: 1039981.234 units remaining) + - location: 32 (just consumed gas: 0.010) [ 0 0 0 ] - - location: 33 (remaining gas: 1039981.199 units remaining) + - location: 33 (just consumed gas: 0.035) [ 0 0 ] - - location: 30 (remaining gas: 1039981.174 units remaining) + - location: 30 (just consumed gas: 0.025) [ (Pair 0 100) 0 0 ] - - location: 34 (remaining gas: 1039981.164 units remaining) + - location: 34 (just consumed gas: 0.010) [ 0 (Pair 0 100) 0 ] - - location: 35 (remaining gas: 1039981.164 units remaining) + - location: 35 (just consumed gas: 0) [ (Pair 0 100) 0 ] - - location: 37 (remaining gas: 1039981.154 units remaining) + - location: 37 (just consumed gas: 0.010) [ 100 0 ] - - location: 38 (remaining gas: 1039981.119 units remaining) + - location: 38 (just consumed gas: 0.035) [ 100 ] - - location: 35 (remaining gas: 1039981.094 units remaining) + - location: 35 (just consumed gas: 0.025) [ 0 100 ] - - location: 39 (remaining gas: 1039981.084 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair 0 100) ] - - location: 20 (remaining gas: 1039981.069 units remaining) + - location: 20 (just consumed gas: 0.015) [ (Pair 2 100) (Pair 0 100) ] - - location: 22 (remaining gas: 1039981.069 units remaining) + - location: 22 (just consumed gas: 0) [ (Pair 0 100) ] - - location: 24 (remaining gas: 1039981.059 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair 0 100) (Pair 0 100) ] - - location: 25 (remaining gas: 1039981.049 units remaining) + - location: 25 (just consumed gas: 0.010) [ 0 (Pair 0 100) ] - - location: 26 (remaining gas: 1039981.049 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair 0 100) ] - - location: 28 (remaining gas: 1039981.039 units remaining) + - location: 28 (just consumed gas: 0.010) [ 100 ] - - location: 26 (remaining gas: 1039981.014 units remaining) + - location: 26 (just consumed gas: 0.025) [ 0 100 ] - - location: 22 (remaining gas: 1039980.989 units remaining) + - location: 22 (just consumed gas: 0.025) [ (Pair 2 100) 0 100 ] - - location: 29 (remaining gas: 1039980.979 units remaining) + - location: 29 (just consumed gas: 0.010) [ (Pair 2 100) (Pair 2 100) 0 100 ] - - location: 30 (remaining gas: 1039980.979 units remaining) + - location: 30 (just consumed gas: 0) [ (Pair 2 100) 0 100 ] - - location: 32 (remaining gas: 1039980.969 units remaining) + - location: 32 (just consumed gas: 0.010) [ 2 0 100 ] - - location: 33 (remaining gas: 1039980.934 units remaining) + - location: 33 (just consumed gas: 0.035) [ 2 100 ] - - location: 30 (remaining gas: 1039980.909 units remaining) + - location: 30 (just consumed gas: 0.025) [ (Pair 2 100) 2 100 ] - - location: 34 (remaining gas: 1039980.899 units remaining) + - location: 34 (just consumed gas: 0.010) [ 2 (Pair 2 100) 100 ] - - location: 35 (remaining gas: 1039980.899 units remaining) + - location: 35 (just consumed gas: 0) [ (Pair 2 100) 100 ] - - location: 37 (remaining gas: 1039980.889 units remaining) + - location: 37 (just consumed gas: 0.010) [ 100 100 ] - - location: 38 (remaining gas: 1039980.854 units remaining) + - location: 38 (just consumed gas: 0.035) [ 200 ] - - location: 35 (remaining gas: 1039980.829 units remaining) + - location: 35 (just consumed gas: 0.025) [ 2 200 ] - - location: 39 (remaining gas: 1039980.819 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair 2 200) ] - - location: 20 (remaining gas: 1039980.804 units remaining) + - location: 20 (just consumed gas: 0.015) [ (Pair 2 200) ] - - location: 40 (remaining gas: 1039980.794 units remaining) + - location: 40 (just consumed gas: 0.010) [ {} (Pair 2 200) ] - - location: 42 (remaining gas: 1039980.784 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair {} 2 200) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out index e6d7e861616e573ab05afecde2ec5f9d0e4f9242..07b2a5143565cc7349814430f1e704da6e465279 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out @@ -7,146 +7,146 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039981.384 units remaining) + - location: 11 (just consumed gas: 18.616) [ (Pair { Elt 1 1 ; Elt 2 100 } 0 0) ] - - location: 11 (remaining gas: 1039981.374 units remaining) + - location: 11 (just consumed gas: 0.010) [ { Elt 1 1 ; Elt 2 100 } ] - - location: 12 (remaining gas: 1039981.364 units remaining) + - location: 12 (just consumed gas: 0.010) [ 0 { Elt 1 1 ; Elt 2 100 } ] - - location: 15 (remaining gas: 1039981.354 units remaining) + - location: 15 (just consumed gas: 0.010) [ 0 0 { Elt 1 1 ; Elt 2 100 } ] - - location: 18 (remaining gas: 1039981.344 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair 0 0) { Elt 1 1 ; Elt 2 100 } ] - - location: 19 (remaining gas: 1039981.334 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 1 ; Elt 2 100 } (Pair 0 0) ] - - location: 20 (remaining gas: 1039981.334 units remaining) + - location: 20 (just consumed gas: 0) [ (Pair 1 1) (Pair 0 0) ] - - location: 22 (remaining gas: 1039981.334 units remaining) + - location: 22 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 24 (remaining gas: 1039981.324 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair 0 0) (Pair 0 0) ] - - location: 25 (remaining gas: 1039981.314 units remaining) + - location: 25 (just consumed gas: 0.010) [ 0 (Pair 0 0) ] - - location: 26 (remaining gas: 1039981.314 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 28 (remaining gas: 1039981.304 units remaining) + - location: 28 (just consumed gas: 0.010) [ 0 ] - - location: 26 (remaining gas: 1039981.279 units remaining) + - location: 26 (just consumed gas: 0.025) [ 0 0 ] - - location: 22 (remaining gas: 1039981.254 units remaining) + - location: 22 (just consumed gas: 0.025) [ (Pair 1 1) 0 0 ] - - location: 29 (remaining gas: 1039981.244 units remaining) + - location: 29 (just consumed gas: 0.010) [ (Pair 1 1) (Pair 1 1) 0 0 ] - - location: 30 (remaining gas: 1039981.244 units remaining) + - location: 30 (just consumed gas: 0) [ (Pair 1 1) 0 0 ] - - location: 32 (remaining gas: 1039981.234 units remaining) + - location: 32 (just consumed gas: 0.010) [ 1 0 0 ] - - location: 33 (remaining gas: 1039981.199 units remaining) + - location: 33 (just consumed gas: 0.035) [ 1 0 ] - - location: 30 (remaining gas: 1039981.174 units remaining) + - location: 30 (just consumed gas: 0.025) [ (Pair 1 1) 1 0 ] - - location: 34 (remaining gas: 1039981.164 units remaining) + - location: 34 (just consumed gas: 0.010) [ 1 (Pair 1 1) 0 ] - - location: 35 (remaining gas: 1039981.164 units remaining) + - location: 35 (just consumed gas: 0) [ (Pair 1 1) 0 ] - - location: 37 (remaining gas: 1039981.154 units remaining) + - location: 37 (just consumed gas: 0.010) [ 1 0 ] - - location: 38 (remaining gas: 1039981.119 units remaining) + - location: 38 (just consumed gas: 0.035) [ 1 ] - - location: 35 (remaining gas: 1039981.094 units remaining) + - location: 35 (just consumed gas: 0.025) [ 1 1 ] - - location: 39 (remaining gas: 1039981.084 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair 1 1) ] - - location: 20 (remaining gas: 1039981.069 units remaining) + - location: 20 (just consumed gas: 0.015) [ (Pair 2 100) (Pair 1 1) ] - - location: 22 (remaining gas: 1039981.069 units remaining) + - location: 22 (just consumed gas: 0) [ (Pair 1 1) ] - - location: 24 (remaining gas: 1039981.059 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair 1 1) (Pair 1 1) ] - - location: 25 (remaining gas: 1039981.049 units remaining) + - location: 25 (just consumed gas: 0.010) [ 1 (Pair 1 1) ] - - location: 26 (remaining gas: 1039981.049 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair 1 1) ] - - location: 28 (remaining gas: 1039981.039 units remaining) + - location: 28 (just consumed gas: 0.010) [ 1 ] - - location: 26 (remaining gas: 1039981.014 units remaining) + - location: 26 (just consumed gas: 0.025) [ 1 1 ] - - location: 22 (remaining gas: 1039980.989 units remaining) + - location: 22 (just consumed gas: 0.025) [ (Pair 2 100) 1 1 ] - - location: 29 (remaining gas: 1039980.979 units remaining) + - location: 29 (just consumed gas: 0.010) [ (Pair 2 100) (Pair 2 100) 1 1 ] - - location: 30 (remaining gas: 1039980.979 units remaining) + - location: 30 (just consumed gas: 0) [ (Pair 2 100) 1 1 ] - - location: 32 (remaining gas: 1039980.969 units remaining) + - location: 32 (just consumed gas: 0.010) [ 2 1 1 ] - - location: 33 (remaining gas: 1039980.934 units remaining) + - location: 33 (just consumed gas: 0.035) [ 3 1 ] - - location: 30 (remaining gas: 1039980.909 units remaining) + - location: 30 (just consumed gas: 0.025) [ (Pair 2 100) 3 1 ] - - location: 34 (remaining gas: 1039980.899 units remaining) + - location: 34 (just consumed gas: 0.010) [ 3 (Pair 2 100) 1 ] - - location: 35 (remaining gas: 1039980.899 units remaining) + - location: 35 (just consumed gas: 0) [ (Pair 2 100) 1 ] - - location: 37 (remaining gas: 1039980.889 units remaining) + - location: 37 (just consumed gas: 0.010) [ 100 1 ] - - location: 38 (remaining gas: 1039980.854 units remaining) + - location: 38 (just consumed gas: 0.035) [ 101 ] - - location: 35 (remaining gas: 1039980.829 units remaining) + - location: 35 (just consumed gas: 0.025) [ 3 101 ] - - location: 39 (remaining gas: 1039980.819 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair 3 101) ] - - location: 20 (remaining gas: 1039980.804 units remaining) + - location: 20 (just consumed gas: 0.015) [ (Pair 3 101) ] - - location: 40 (remaining gas: 1039980.794 units remaining) + - location: 40 (just consumed gas: 0.010) [ {} (Pair 3 101) ] - - location: 42 (remaining gas: 1039980.784 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair {} 3 101) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" index 74d9aed0778ec00eabc2db542f37dbaa614b65b6..2e8217e9e97ac3f378796aa7c27c22c0a7ae1199 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" @@ -7,62 +7,62 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039990.083 units remaining) + - location: 9 (just consumed gas: 9.917) [ (Pair 15 { Elt "bar" 5 ; Elt "foo" 1 }) ] - - location: 9 (remaining gas: 1039990.073 units remaining) + - location: 9 (just consumed gas: 0.010) [ 15 { Elt "bar" 5 ; Elt "foo" 1 } ] - - location: 10 (remaining gas: 1039990.063 units remaining) + - location: 10 (just consumed gas: 0.010) [ { Elt "bar" 5 ; Elt "foo" 1 } 15 ] - - location: 11 (remaining gas: 1039990.063 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "bar" 5) 15 ] - - location: 13 (remaining gas: 1039990.053 units remaining) + - location: 13 (just consumed gas: 0.010) [ 5 15 ] - - location: 14 (remaining gas: 1039990.053 units remaining) + - location: 14 (just consumed gas: 0) [ 15 ] - - location: 16 (remaining gas: 1039990.043 units remaining) + - location: 16 (just consumed gas: 0.010) [ 15 15 ] - - location: 14 (remaining gas: 1039990.018 units remaining) + - location: 14 (just consumed gas: 0.025) [ 5 15 15 ] - - location: 17 (remaining gas: 1039989.983 units remaining) + - location: 17 (just consumed gas: 0.035) [ 20 15 ] - - location: 11 (remaining gas: 1039989.968 units remaining) + - location: 11 (just consumed gas: 0.015) [ (Pair "foo" 1) 15 ] - - location: 13 (remaining gas: 1039989.958 units remaining) + - location: 13 (just consumed gas: 0.010) [ 1 15 ] - - location: 14 (remaining gas: 1039989.958 units remaining) + - location: 14 (just consumed gas: 0) [ 15 ] - - location: 16 (remaining gas: 1039989.948 units remaining) + - location: 16 (just consumed gas: 0.010) [ 15 15 ] - - location: 14 (remaining gas: 1039989.923 units remaining) + - location: 14 (just consumed gas: 0.025) [ 1 15 15 ] - - location: 17 (remaining gas: 1039989.888 units remaining) + - location: 17 (just consumed gas: 0.035) [ 16 15 ] - - location: 11 (remaining gas: 1039989.873 units remaining) + - location: 11 (just consumed gas: 0.015) [ { Elt "bar" 20 ; Elt "foo" 16 } 15 ] - - location: 18 (remaining gas: 1039989.873 units remaining) + - location: 18 (just consumed gas: 0) [ 15 ] - - location: 20 (remaining gas: 1039989.863 units remaining) + - location: 20 (just consumed gas: 0.010) [ ] - - location: 18 (remaining gas: 1039989.838 units remaining) + - location: 18 (just consumed gas: 0.025) [ { Elt "bar" 20 ; Elt "foo" 16 } ] - - location: 21 (remaining gas: 1039989.828 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} { Elt "bar" 20 ; Elt "foo" 16 } ] - - location: 23 (remaining gas: 1039989.818 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt "bar" 20 ; Elt "foo" 16 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" index 204221d443b62df0db7b8d8a57fbd7e46f59a274..5899f4b30dd91265cf80d425f6bb1b9f1df51481 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" @@ -7,44 +7,44 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039990.454 units remaining) + - location: 9 (just consumed gas: 9.546) [ (Pair 10 { Elt "foo" 1 }) ] - - location: 9 (remaining gas: 1039990.444 units remaining) + - location: 9 (just consumed gas: 0.010) [ 10 { Elt "foo" 1 } ] - - location: 10 (remaining gas: 1039990.434 units remaining) + - location: 10 (just consumed gas: 0.010) [ { Elt "foo" 1 } 10 ] - - location: 11 (remaining gas: 1039990.434 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "foo" 1) 10 ] - - location: 13 (remaining gas: 1039990.424 units remaining) + - location: 13 (just consumed gas: 0.010) [ 1 10 ] - - location: 14 (remaining gas: 1039990.424 units remaining) + - location: 14 (just consumed gas: 0) [ 10 ] - - location: 16 (remaining gas: 1039990.414 units remaining) + - location: 16 (just consumed gas: 0.010) [ 10 10 ] - - location: 14 (remaining gas: 1039990.389 units remaining) + - location: 14 (just consumed gas: 0.025) [ 1 10 10 ] - - location: 17 (remaining gas: 1039990.354 units remaining) + - location: 17 (just consumed gas: 0.035) [ 11 10 ] - - location: 11 (remaining gas: 1039990.339 units remaining) + - location: 11 (just consumed gas: 0.015) [ { Elt "foo" 11 } 10 ] - - location: 18 (remaining gas: 1039990.339 units remaining) + - location: 18 (just consumed gas: 0) [ 10 ] - - location: 20 (remaining gas: 1039990.329 units remaining) + - location: 20 (just consumed gas: 0.010) [ ] - - location: 18 (remaining gas: 1039990.304 units remaining) + - location: 18 (just consumed gas: 0.025) [ { Elt "foo" 11 } ] - - location: 21 (remaining gas: 1039990.294 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} { Elt "foo" 11 } ] - - location: 23 (remaining gas: 1039990.284 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt "foo" 11 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out index 30a877c6cbcf794d7eda9cd5b583e75475b7e88b..265232d7c5bc0dce6500cc61c0a6dc530a7371b2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039990.784 units remaining) + - location: 9 (just consumed gas: 9.216) [ (Pair 10 {}) ] - - location: 9 (remaining gas: 1039990.774 units remaining) + - location: 9 (just consumed gas: 0.010) [ 10 {} ] - - location: 10 (remaining gas: 1039990.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 10 ] - - location: 11 (remaining gas: 1039990.764 units remaining) + - location: 11 (just consumed gas: 0) [ {} 10 ] - - location: 18 (remaining gas: 1039990.764 units remaining) + - location: 18 (just consumed gas: 0) [ 10 ] - - location: 20 (remaining gas: 1039990.754 units remaining) + - location: 20 (just consumed gas: 0.010) [ ] - - location: 18 (remaining gas: 1039990.729 units remaining) + - location: 18 (just consumed gas: 0.025) [ {} ] - - location: 21 (remaining gas: 1039990.719 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} {} ] - - location: 23 (remaining gas: 1039990.709 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out index c67f5f625ee2e1d56e4308aba46dc100de5c6c8c..6239da283a3fc92518f103186bf708835a068b09 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039990.284 units remaining) + - location: 12 (just consumed gas: 9.716) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (remaining gas: 1039990.274 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (remaining gas: 1039990.274 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 0 1 } None) ] - - location: 15 (remaining gas: 1039990.264 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 0 1 } ] - - location: 16 (remaining gas: 1039990.254 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (remaining gas: 1039990.229 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (remaining gas: 1039990.149 units remaining) + - location: 17 (just consumed gas: 0.080) [ False { Elt 0 1 } ] - - location: 18 (remaining gas: 1039990.139 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt 0 1 } ] - - location: 19 (remaining gas: 1039990.129 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 0 1 } (Some False) ] - - location: 20 (remaining gas: 1039990.119 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039990.109 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039990.099 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 0 1 } (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out index 4b737f886893a6916bd75e42d39a70ffb5e50e6b..1a6354f7140ac2d01abecd1fc3313c6af97709a1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039990.284 units remaining) + - location: 12 (just consumed gas: 9.716) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (remaining gas: 1039990.274 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (remaining gas: 1039990.274 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 0 } None) ] - - location: 15 (remaining gas: 1039990.264 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 0 } ] - - location: 16 (remaining gas: 1039990.254 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (remaining gas: 1039990.229 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (remaining gas: 1039990.149 units remaining) + - location: 17 (just consumed gas: 0.080) [ True { Elt 1 0 } ] - - location: 18 (remaining gas: 1039990.139 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 0 } ] - - location: 19 (remaining gas: 1039990.129 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 0 } (Some True) ] - - location: 20 (remaining gas: 1039990.119 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039990.109 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039990.099 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 1 0 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out index 52de74fc3aae9de3c4ba653f0c9f29fdea16a537..d9e2e8766bc6700bec91b3227baef34dbf0f7d4f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039989.969 units remaining) + - location: 12 (just consumed gas: 10.031) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039989.959 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039989.959 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039989.949 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039989.939 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039989.914 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039989.834 units remaining) + - location: 17 (just consumed gas: 0.080) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039989.824 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039989.814 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039989.804 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039989.794 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039989.784 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out index 56e8f57438d54a8af02d57ff1c3a485ff91a9811..686746e554b9aa19ce4cf85732ff9adcd74d4788 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039989.969 units remaining) + - location: 12 (just consumed gas: 10.031) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039989.959 units remaining) + - location: 12 (just consumed gas: 0.010) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039989.959 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039989.949 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039989.939 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039989.914 units remaining) + - location: 13 (just consumed gas: 0.025) [ 2 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039989.834 units remaining) + - location: 17 (just consumed gas: 0.080) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039989.824 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039989.814 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039989.804 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039989.794 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039989.784 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out index b308b20ace4ada58bb2d987f78ec25872e3000a3..005bbe85dd9b325d2c8b28f0ae0646c91ad5e02d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039989.969 units remaining) + - location: 12 (just consumed gas: 10.031) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039989.959 units remaining) + - location: 12 (just consumed gas: 0.010) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039989.959 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039989.949 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039989.939 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039989.914 units remaining) + - location: 13 (just consumed gas: 0.025) [ 3 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039989.834 units remaining) + - location: 17 (just consumed gas: 0.080) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039989.824 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039989.814 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (remaining gas: 1039989.804 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039989.794 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039989.784 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out index e9da23ac69e3899739a47d38567076f73bf318c2..96f37ba0d7cf82008a85e4ef55d6ea93ebb6f5cf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039990.564 units remaining) + - location: 12 (just consumed gas: 9.436) [ (Pair 1 {} None) ] - - location: 12 (remaining gas: 1039990.554 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair {} None) ] - - location: 13 (remaining gas: 1039990.554 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039990.544 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} ] - - location: 16 (remaining gas: 1039990.534 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (remaining gas: 1039990.509 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 {} {} ] - - location: 17 (remaining gas: 1039990.429 units remaining) + - location: 17 (just consumed gas: 0.080) [ False {} ] - - location: 18 (remaining gas: 1039990.419 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) {} ] - - location: 19 (remaining gas: 1039990.409 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 20 (remaining gas: 1039990.399 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039990.389 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039990.379 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} {} (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" index 9ceadd37ffe2e0649136eb2cea2878e4e9b69975..dbb89ff2cd38a3c5e049d48f4c8c92891619f243 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039989.819 units remaining) + - location: 12 (just consumed gas: 10.181) [ (Pair "bar" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039989.809 units remaining) + - location: 12 (just consumed gas: 0.010) [ "bar" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039989.809 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039989.799 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039989.789 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039989.764 units remaining) + - location: 13 (just consumed gas: 0.025) [ "bar" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039989.675 units remaining) + - location: 17 (just consumed gas: 0.089) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039989.665 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039989.655 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039989.645 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039989.635 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039989.625 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" index 8f7814c98977e945d04b35b61d354f38eb74326f..d0837258e5c7c2553dabc527e8f46524bb7922d0 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039989.819 units remaining) + - location: 12 (just consumed gas: 10.181) [ (Pair "foo" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039989.809 units remaining) + - location: 12 (just consumed gas: 0.010) [ "foo" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039989.809 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039989.799 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039989.789 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039989.764 units remaining) + - location: 13 (just consumed gas: 0.025) [ "foo" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039989.675 units remaining) + - location: 17 (just consumed gas: 0.089) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039989.665 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039989.655 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039989.645 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039989.635 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039989.625 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" index ccabc3c552d280d0698e752de2d1a1a775cf0ef9..43f04e7ade8130df4621c2c5499e1d9bbefd0d34 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039989.819 units remaining) + - location: 12 (just consumed gas: 10.181) [ (Pair "baz" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039989.809 units remaining) + - location: 12 (just consumed gas: 0.010) [ "baz" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039989.809 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039989.799 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039989.789 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039989.764 units remaining) + - location: 13 (just consumed gas: 0.025) [ "baz" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039989.675 units remaining) + - location: 17 (just consumed gas: 0.089) [ False { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039989.665 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039989.655 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some False) ] - - location: 20 (remaining gas: 1039989.645 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 21 (remaining gas: 1039989.635 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 23 (remaining gas: 1039989.625 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" index 95320ea2295fa4e0fba0a152f1ef35fdcf62485a..b3b12c320cf125b399ce8b51c112e6ef26ac46e8 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039990.190 units remaining) + - location: 12 (just consumed gas: 9.810) [ (Pair "foo" { Elt "foo" 0 } None) ] - - location: 12 (remaining gas: 1039990.180 units remaining) + - location: 12 (just consumed gas: 0.010) [ "foo" (Pair { Elt "foo" 0 } None) ] - - location: 13 (remaining gas: 1039990.180 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "foo" 0 } None) ] - - location: 15 (remaining gas: 1039990.170 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "foo" 0 } ] - - location: 16 (remaining gas: 1039990.160 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 13 (remaining gas: 1039990.135 units remaining) + - location: 13 (just consumed gas: 0.025) [ "foo" { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 17 (remaining gas: 1039990.049 units remaining) + - location: 17 (just consumed gas: 0.086) [ True { Elt "foo" 0 } ] - - location: 18 (remaining gas: 1039990.039 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt "foo" 0 } ] - - location: 19 (remaining gas: 1039990.029 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "foo" 0 } (Some True) ] - - location: 20 (remaining gas: 1039990.019 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "foo" 0 } (Some True)) ] - - location: 21 (remaining gas: 1039990.009 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "foo" 0 } (Some True)) ] - - location: 23 (remaining gas: 1039989.999 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt "foo" 0 } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" index 4d554cfd9140668c0fd5e1e93a1d95522a16b199..659ce09635651f90c409d02985db89cba06b93e8 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039990.190 units remaining) + - location: 12 (just consumed gas: 9.810) [ (Pair "bar" { Elt "foo" 1 } None) ] - - location: 12 (remaining gas: 1039990.180 units remaining) + - location: 12 (just consumed gas: 0.010) [ "bar" (Pair { Elt "foo" 1 } None) ] - - location: 13 (remaining gas: 1039990.180 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "foo" 1 } None) ] - - location: 15 (remaining gas: 1039990.170 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "foo" 1 } ] - - location: 16 (remaining gas: 1039990.160 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 13 (remaining gas: 1039990.135 units remaining) + - location: 13 (just consumed gas: 0.025) [ "bar" { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 17 (remaining gas: 1039990.049 units remaining) + - location: 17 (just consumed gas: 0.086) [ False { Elt "foo" 1 } ] - - location: 18 (remaining gas: 1039990.039 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt "foo" 1 } ] - - location: 19 (remaining gas: 1039990.029 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "foo" 1 } (Some False) ] - - location: 20 (remaining gas: 1039990.019 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "foo" 1 } (Some False)) ] - - location: 21 (remaining gas: 1039990.009 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "foo" 1 } (Some False)) ] - - location: 23 (remaining gas: 1039989.999 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} { Elt "foo" 1 } (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" index dd1a90c27c5d6cea15e8c542da5f68a8e9825656..7c2b0dcecf909464a7be2adc431a90c6b3399cc1 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039990.520 units remaining) + - location: 12 (just consumed gas: 9.480) [ (Pair "bar" {} None) ] - - location: 12 (remaining gas: 1039990.510 units remaining) + - location: 12 (just consumed gas: 0.010) [ "bar" (Pair {} None) ] - - location: 13 (remaining gas: 1039990.510 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039990.500 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} ] - - location: 16 (remaining gas: 1039990.490 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (remaining gas: 1039990.465 units remaining) + - location: 13 (just consumed gas: 0.025) [ "bar" {} {} ] - - location: 17 (remaining gas: 1039990.382 units remaining) + - location: 17 (just consumed gas: 0.083) [ False {} ] - - location: 18 (remaining gas: 1039990.372 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) {} ] - - location: 19 (remaining gas: 1039990.362 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 20 (remaining gas: 1039990.352 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039990.342 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039990.332 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} {} (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" index 6646f0c7b6d171e3036f08a72fea3769a7ba89ae..191d3907ba8441f86f3ba993e09216eb1d0bd22e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.444 units remaining) + - 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 (remaining gas: 1039993.434 units remaining) + - 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 (remaining gas: 1039993.424 units remaining) + - location: 10 (just consumed gas: 0.010) [ 6 ] - - location: 11 (remaining gas: 1039993.414 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} 6 ] - - location: 13 (remaining gas: 1039993.404 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} 6) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" index 502d121b09d563067f9523a6a71bd752d1404201..506422a23325919ad2d63dc8fc6702a645bf4f47 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.483 units remaining) + - location: 9 (just consumed gas: 5.517) [ (Pair { Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 } 111) ] - - location: 9 (remaining gas: 1039994.473 units remaining) + - location: 9 (just consumed gas: 0.010) [ { Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 } ] - - location: 10 (remaining gas: 1039994.463 units remaining) + - location: 10 (just consumed gas: 0.010) [ 3 ] - - location: 11 (remaining gas: 1039994.453 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} 3 ] - - location: 13 (remaining gas: 1039994.443 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} 3) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" index 0a1cea6ecc97f319d64f7d2f639c0f4f6e6ed3ea..24da2cbeb85ad319a5c68a964d09a82851f14f87 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039995.171 units remaining) + - location: 9 (just consumed gas: 4.829) [ (Pair { Elt "a" 1 } 111) ] - - location: 9 (remaining gas: 1039995.161 units remaining) + - location: 9 (just consumed gas: 0.010) [ { Elt "a" 1 } ] - - location: 10 (remaining gas: 1039995.151 units remaining) + - location: 10 (just consumed gas: 0.010) [ 1 ] - - location: 11 (remaining gas: 1039995.141 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} 1 ] - - location: 13 (remaining gas: 1039995.131 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out index 7ff70c59c6a9bb3133c6c4b9bf6f64b586efea60..fbfe9a0febd3eb91e7aea6d7f579ab21af62a7b1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039995.477 units remaining) + - location: 9 (just consumed gas: 4.523) [ (Pair {} 111) ] - - location: 9 (remaining gas: 1039995.467 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (remaining gas: 1039995.457 units remaining) + - location: 10 (just consumed gas: 0.010) [ 0 ] - - location: 11 (remaining gas: 1039995.447 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} 0 ] - - location: 13 (remaining gas: 1039995.437 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out index 5ea0b2ac04f74498a5af68911e8228c6e6e2560e..c728313a8223fa7a7d100d3c2b500fa59fc43263 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out @@ -7,125 +7,125 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039949.201 units remaining) + - location: 7 (just consumed gas: 50.799) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039949.191 units remaining) + - location: 7 (just consumed gas: 0.010) [ Unit ] - - location: 8 (remaining gas: 1039949.181 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (remaining gas: 1039949.171 units remaining) + - location: 9 (just consumed gas: 0.010) [ 7987 ] - - location: 12 (remaining gas: 1039949.161 units remaining) + - location: 12 (just consumed gas: 0.010) [ 10 7987 ] - - location: 15 (remaining gas: 1039949.161 units remaining) + - location: 15 (just consumed gas: 0) [ 79870 ] - - location: 16 (remaining gas: 1039949.151 units remaining) + - location: 16 (just consumed gas: 0.010) [ 79870 79870 ] - - location: 19 (remaining gas: 1039949.116 units remaining) + - location: 19 (just consumed gas: 0.035) [ 0 ] - - location: 21 (remaining gas: 1039949.106 units remaining) + - location: 21 (just consumed gas: 0.010) [ True ] - - location: 22 (remaining gas: 1039949.106 units remaining) + - location: 22 (just consumed gas: 0) [ ] - - location: 22 (remaining gas: 1039949.091 units remaining) + - location: 22 (just consumed gas: 0.015) [ ] - - location: 28 (remaining gas: 1039949.081 units remaining) + - location: 28 (just consumed gas: 0.010) [ 10 ] - - location: 31 (remaining gas: 1039949.071 units remaining) + - location: 31 (just consumed gas: 0.010) [ 7987 10 ] - - location: 34 (remaining gas: 1039949.071 units remaining) + - location: 34 (just consumed gas: 0) [ 79870 ] - - location: 35 (remaining gas: 1039949.061 units remaining) + - location: 35 (just consumed gas: 0.010) [ 79870 79870 ] - - location: 38 (remaining gas: 1039949.026 units remaining) + - location: 38 (just consumed gas: 0.035) [ 0 ] - - location: 40 (remaining gas: 1039949.016 units remaining) + - location: 40 (just consumed gas: 0.010) [ True ] - - location: 41 (remaining gas: 1039949.016 units remaining) + - location: 41 (just consumed gas: 0) [ ] - - location: 41 (remaining gas: 1039949.001 units remaining) + - location: 41 (just consumed gas: 0.015) [ ] - - location: 47 (remaining gas: 1039948.991 units remaining) + - location: 47 (just consumed gas: 0.010) [ 10 ] - - location: 50 (remaining gas: 1039948.981 units remaining) + - location: 50 (just consumed gas: 0.010) [ -7987 10 ] - - location: 53 (remaining gas: 1039948.920 units remaining) + - location: 53 (just consumed gas: 0.061) [ -79870 ] - - location: 54 (remaining gas: 1039948.910 units remaining) + - location: 54 (just consumed gas: 0.010) [ -79870 -79870 ] - - location: 57 (remaining gas: 1039948.875 units remaining) + - location: 57 (just consumed gas: 0.035) [ 0 ] - - location: 59 (remaining gas: 1039948.865 units remaining) + - location: 59 (just consumed gas: 0.010) [ True ] - - location: 60 (remaining gas: 1039948.865 units remaining) + - location: 60 (just consumed gas: 0) [ ] - - location: 60 (remaining gas: 1039948.850 units remaining) + - location: 60 (just consumed gas: 0.015) [ ] - - location: 66 (remaining gas: 1039948.840 units remaining) + - location: 66 (just consumed gas: 0.010) [ 10 ] - - location: 69 (remaining gas: 1039948.830 units remaining) + - location: 69 (just consumed gas: 0.010) [ -7987 10 ] - - location: 72 (remaining gas: 1039948.769 units remaining) + - location: 72 (just consumed gas: 0.061) [ -79870 ] - - location: 73 (remaining gas: 1039948.759 units remaining) + - location: 73 (just consumed gas: 0.010) [ -79870 -79870 ] - - location: 76 (remaining gas: 1039948.724 units remaining) + - location: 76 (just consumed gas: 0.035) [ 0 ] - - location: 78 (remaining gas: 1039948.714 units remaining) + - location: 78 (just consumed gas: 0.010) [ True ] - - location: 79 (remaining gas: 1039948.714 units remaining) + - location: 79 (just consumed gas: 0) [ ] - - location: 79 (remaining gas: 1039948.699 units remaining) + - location: 79 (just consumed gas: 0.015) [ ] - - location: 85 (remaining gas: 1039948.689 units remaining) + - location: 85 (just consumed gas: 0.010) [ -10 ] - - location: 88 (remaining gas: 1039948.679 units remaining) + - location: 88 (just consumed gas: 0.010) [ 7987 -10 ] - - location: 91 (remaining gas: 1039948.618 units remaining) + - location: 91 (just consumed gas: 0.061) [ -79870 ] - - location: 92 (remaining gas: 1039948.608 units remaining) + - location: 92 (just consumed gas: 0.010) [ -79870 -79870 ] - - location: 95 (remaining gas: 1039948.573 units remaining) + - location: 95 (just consumed gas: 0.035) [ 0 ] - - location: 97 (remaining gas: 1039948.563 units remaining) + - location: 97 (just consumed gas: 0.010) [ True ] - - location: 98 (remaining gas: 1039948.563 units remaining) + - location: 98 (just consumed gas: 0) [ ] - - location: 98 (remaining gas: 1039948.548 units remaining) + - location: 98 (just consumed gas: 0.015) [ ] - - location: 104 (remaining gas: 1039948.538 units remaining) + - location: 104 (just consumed gas: 0.010) [ 10 ] - - location: 107 (remaining gas: 1039948.528 units remaining) + - location: 107 (just consumed gas: 0.010) [ 7987 10 ] - - location: 110 (remaining gas: 1039948.467 units remaining) + - location: 110 (just consumed gas: 0.061) [ 79870 ] - - location: 111 (remaining gas: 1039948.457 units remaining) + - location: 111 (just consumed gas: 0.010) [ 79870 79870 ] - - location: 114 (remaining gas: 1039948.422 units remaining) + - location: 114 (just consumed gas: 0.035) [ 0 ] - - location: 116 (remaining gas: 1039948.412 units remaining) + - location: 116 (just consumed gas: 0.010) [ True ] - - location: 117 (remaining gas: 1039948.412 units remaining) + - location: 117 (just consumed gas: 0) [ ] - - location: 117 (remaining gas: 1039948.397 units remaining) + - location: 117 (just consumed gas: 0.015) [ ] - - location: 123 (remaining gas: 1039948.387 units remaining) + - location: 123 (just consumed gas: 0.010) [ Unit ] - - location: 124 (remaining gas: 1039948.377 units remaining) + - location: 124 (just consumed gas: 0.010) [ {} Unit ] - - location: 126 (remaining gas: 1039948.367 units remaining) + - location: 126 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out index b9735ea7c404beefd9cc3c79ec96dea34c87cb13..b1c9df3080a3a9eedc77edc6109b518ab5078589 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039989.053 units remaining) + - location: 7 (just consumed gas: 10.947) [ (Pair 257 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039989.043 units remaining) + - location: 7 (just consumed gas: 0.010) [ 257 ] - - location: 8 (remaining gas: 1039989.033 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1 257 ] - - location: 11 (remaining gas: 1039989.023 units remaining) + - location: 11 (just consumed gas: 0.010) [ 257 1 ] - - location: 12 (remaining gas: 1039988.943 units remaining) + - location: 12 (just consumed gas: 0.080) [ (Some (Pair 257 0)) ] - - location: 14 (remaining gas: 1039988.943 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair 257 0) ] - - location: 14 (remaining gas: 1039988.928 units remaining) + - location: 14 (just consumed gas: 0.015) [ (Pair 257 0) ] - - location: 20 (remaining gas: 1039988.918 units remaining) + - location: 20 (just consumed gas: 0.010) [ 257 ] - - location: 21 (remaining gas: 1039988.908 units remaining) + - location: 21 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 257 ] - - location: 24 (remaining gas: 1039988.641 units remaining) + - location: 24 (just consumed gas: 0.267) [ 0x0101000000000000000000000000000000000000000000000000000000000000 ] - - location: 25 (remaining gas: 1039988.631 units remaining) + - location: 25 (just consumed gas: 0.010) [ {} 0x0101000000000000000000000000000000000000000000000000000000000000 ] - - location: 27 (remaining gas: 1039988.621 units remaining) + - location: 27 (just consumed gas: 0.010) [ (Pair {} 0x0101000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out index 6f015bbcddfd2679870ac2298f085b3f3611d73a..99325d4f9816cb63f6d8654b92c2555db43f3115 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039989.053 units remaining) + - location: 7 (just consumed gas: 10.947) [ (Pair 16 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039989.043 units remaining) + - location: 7 (just consumed gas: 0.010) [ 16 ] - - location: 8 (remaining gas: 1039989.033 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1 16 ] - - location: 11 (remaining gas: 1039989.023 units remaining) + - location: 11 (just consumed gas: 0.010) [ 16 1 ] - - location: 12 (remaining gas: 1039988.943 units remaining) + - location: 12 (just consumed gas: 0.080) [ (Some (Pair 16 0)) ] - - location: 14 (remaining gas: 1039988.943 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair 16 0) ] - - location: 14 (remaining gas: 1039988.928 units remaining) + - location: 14 (just consumed gas: 0.015) [ (Pair 16 0) ] - - location: 20 (remaining gas: 1039988.918 units remaining) + - location: 20 (just consumed gas: 0.010) [ 16 ] - - location: 21 (remaining gas: 1039988.908 units remaining) + - location: 21 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 16 ] - - location: 24 (remaining gas: 1039988.642 units remaining) + - location: 24 (just consumed gas: 0.266) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 25 (remaining gas: 1039988.632 units remaining) + - location: 25 (just consumed gas: 0.010) [ {} 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 27 (remaining gas: 1039988.622 units remaining) + - location: 27 (just consumed gas: 0.010) [ (Pair {} 0x1000000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out index 7a4c4d6ec1f94251e3b3c6c44f4b9de4d1728d93..b3f33a6bef9fca9b637424e3a705cbaddb621bae 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.831 units remaining) + - location: 9 (just consumed gas: 6.169) [ (Pair (Left -2) 0) ] - - location: 9 (remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Left -2) ] - - location: 10 (remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0) [ -2 ] - - location: 12 (remaining gas: 1039993.796 units remaining) + - location: 12 (just consumed gas: 0.025) [ 2 ] - - location: 10 (remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015) [ 2 ] - - location: 15 (remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} 2 ] - - location: 17 (remaining gas: 1039993.761 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair {} 2) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out index b8025a233eddb9570ef80f4d759ebae15f6de165..80e65466029d156d80c41adfc3ce34fceb8c6bf5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.831 units remaining) + - location: 9 (just consumed gas: 6.169) [ (Pair (Left 0) 0) ] - - location: 9 (remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Left 0) ] - - location: 10 (remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0) [ 0 ] - - location: 12 (remaining gas: 1039993.796 units remaining) + - location: 12 (just consumed gas: 0.025) [ 0 ] - - location: 10 (remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015) [ 0 ] - - location: 15 (remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} 0 ] - - location: 17 (remaining gas: 1039993.761 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out index 7ef3788ee6a3b45e98821d12696119f90d923a10..1bb90f76cc926775dfcddcc8b14c1fdefa2db682 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.831 units remaining) + - location: 9 (just consumed gas: 6.169) [ (Pair (Left 2) 0) ] - - location: 9 (remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Left 2) ] - - location: 10 (remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0) [ 2 ] - - location: 12 (remaining gas: 1039993.796 units remaining) + - location: 12 (just consumed gas: 0.025) [ -2 ] - - location: 10 (remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015) [ -2 ] - - location: 15 (remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} -2 ] - - location: 17 (remaining gas: 1039993.761 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair {} -2) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out index b9326e586c117596b110ee73f03044ccf5061738..ab11281df88f4d097d41ef244b92e986e2a06127 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.831 units remaining) + - location: 9 (just consumed gas: 6.169) [ (Pair (Right 0) 0) ] - - location: 9 (remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Right 0) ] - - location: 10 (remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0) [ 0 ] - - location: 14 (remaining gas: 1039993.796 units remaining) + - location: 14 (just consumed gas: 0.025) [ 0 ] - - location: 10 (remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015) [ 0 ] - - location: 15 (remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} 0 ] - - location: 17 (remaining gas: 1039993.761 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out index d30a47997111453d95523f6ba7d5a95689d58eca..62f3d61d8ffe6864d37a6fe7e5853e95685c0269 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.831 units remaining) + - location: 9 (just consumed gas: 6.169) [ (Pair (Right 2) 0) ] - - location: 9 (remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Right 2) ] - - location: 10 (remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0) [ 2 ] - - location: 14 (remaining gas: 1039993.796 units remaining) + - location: 14 (just consumed gas: 0.025) [ -2 ] - - location: 10 (remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015) [ -2 ] - - location: 15 (remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} -2 ] - - location: 17 (remaining gas: 1039993.761 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair {} -2) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out index aea607726d9f5f6c8558ecd7e6ab53246140bc97..d96b3c23254fbfc4f664702adc620b5560aee532 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039995.227 units remaining) + - location: 8 (just consumed gas: 4.773) [ (Pair Unit (Some 10)) ] - - location: 8 (remaining gas: 1039995.217 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (remaining gas: 1039995.207 units remaining) + - location: 9 (just consumed gas: 0.010) [ None ] - - location: 11 (remaining gas: 1039995.197 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} None ] - - location: 13 (remaining gas: 1039995.187 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} None) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out index 280ba34de8023b1536e0a748de96ae8be90f1d3c..44bdbef04f2143221f5a159bac9f00d6ef00df4d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair False None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ False ] - - location: 9 (remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010) [ True ] - - location: 10 (remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some True) ] - - location: 11 (remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 13 (remaining gas: 1039994.897 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out index 287ae820ecb0f37ffde2192200b44e53c863b1fc..3f1d2714d6f803b5921a69c830f9149fea91fbfe 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair True None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ True ] - - location: 9 (remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010) [ False ] - - location: 10 (remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some False) ] - - location: 11 (remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 13 (remaining gas: 1039994.897 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out index 14a6f34a21935f276c67e2f40a456c6dda7e76d9..ffb1daf73b3cefb432366610e2ae7521d0a0fb15 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Left -8) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Left -8) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ -8 ] - - location: 13 (remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025) [ 7 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ 7 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 7) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some 7) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} (Some 7)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out index 0692f83607a1fd64f21d67a1bd54488a2860bbc8..669ae32128155119320491da00d28269225626b3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Left -9) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Left -9) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ -9 ] - - location: 13 (remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025) [ 8 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ 8 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 8) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some 8) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} (Some 8)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out index 4e3deaa32a2a5ac1be2f2dd1dc5097c42d77bea1..3a15b67170b574e62de9adda3cbb69bb5b6f4b49 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Left 0) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Left 0) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ 0 ] - - location: 13 (remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025) [ -1 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ -1 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some -1) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some -1) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} (Some -1)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out index 0429db07ae33e046fc61ed4079e60b6699629097..5b8249cf7701ea9edd6610a4e59c3e41c87183e3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Left 7) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Left 7) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ 7 ] - - location: 13 (remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025) [ -8 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ -8 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some -8) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some -8) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} (Some -8)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out index 394ca276b913e5cc2fab2c877ab5104315f1ba5b..0059a5afc9cba1bf286b1a40aa963968228b55c3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Left 8) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Left 8) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ 8 ] - - location: 13 (remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025) [ -9 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ -9 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some -9) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some -9) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} (Some -9)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out index f495c59805bd72742bbbd549d82b259dfff61329..1a9b9a71b1af0c33c611c2b0ac7107468bdadae2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Right 0) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Right 0) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ 0 ] - - location: 15 (remaining gas: 1039993 units remaining) + - location: 15 (just consumed gas: 0.025) [ -1 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ -1 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some -1) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some -1) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} (Some -1)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out index 37b65b6feebeac63c89752d3888b160d65f47f85..12a05c406effe72662d2268a6ddf0f3efa727741 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Right 7) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Right 7) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ 7 ] - - location: 15 (remaining gas: 1039993 units remaining) + - location: 15 (just consumed gas: 0.025) [ -8 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ -8 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some -8) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some -8) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} (Some -8)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out index a0f8035d76b4428420d81e44fc25b72e6310a009..0831fccb72af8e881705ead451dd0c0f74760987 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Right 8) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Right 8) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ 8 ] - - location: 15 (remaining gas: 1039993 units remaining) + - location: 15 (just consumed gas: 0.025) [ -9 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ -9 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some -9) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some -9) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} (Some -9)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out index eac6d6a9d954f9fbd1bd932b4f4f7059280651ab..c6c15f9689492072d4b0de556875ed0e296f98dc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.885 units remaining) + - location: 10 (just consumed gas: 8.115) [ (Pair (Pair False False) None) ] - - location: 10 (remaining gas: 1039991.875 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair False False) ] - - location: 11 (remaining gas: 1039991.865 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair False False) (Pair False False) ] - - location: 12 (remaining gas: 1039991.855 units remaining) + - location: 12 (just consumed gas: 0.010) [ False (Pair False False) ] - - location: 13 (remaining gas: 1039991.845 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair False False) False ] - - location: 14 (remaining gas: 1039991.835 units remaining) + - location: 14 (just consumed gas: 0.010) [ False False ] - - location: 15 (remaining gas: 1039991.825 units remaining) + - location: 15 (just consumed gas: 0.010) [ False ] - - location: 16 (remaining gas: 1039991.815 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some False) ] - - location: 17 (remaining gas: 1039991.805 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 19 (remaining gas: 1039991.795 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out index 1aab2abc6fd8725a864c2a6b3d3801146ebe2176..0ad8a53c92085106d593c2411c67ed35ec82daf0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.885 units remaining) + - location: 10 (just consumed gas: 8.115) [ (Pair (Pair False True) None) ] - - location: 10 (remaining gas: 1039991.875 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair False True) ] - - location: 11 (remaining gas: 1039991.865 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair False True) (Pair False True) ] - - location: 12 (remaining gas: 1039991.855 units remaining) + - location: 12 (just consumed gas: 0.010) [ False (Pair False True) ] - - location: 13 (remaining gas: 1039991.845 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair False True) False ] - - location: 14 (remaining gas: 1039991.835 units remaining) + - location: 14 (just consumed gas: 0.010) [ True False ] - - location: 15 (remaining gas: 1039991.825 units remaining) + - location: 15 (just consumed gas: 0.010) [ True ] - - location: 16 (remaining gas: 1039991.815 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some True) ] - - location: 17 (remaining gas: 1039991.805 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 19 (remaining gas: 1039991.795 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out index 7066c1b6e5835e211ebe53809710c321f144b98f..72aacca7555f024ea29fdd1d471c68542cecfb9e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.885 units remaining) + - location: 10 (just consumed gas: 8.115) [ (Pair (Pair True False) None) ] - - location: 10 (remaining gas: 1039991.875 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair True False) ] - - location: 11 (remaining gas: 1039991.865 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair True False) (Pair True False) ] - - location: 12 (remaining gas: 1039991.855 units remaining) + - location: 12 (just consumed gas: 0.010) [ True (Pair True False) ] - - location: 13 (remaining gas: 1039991.845 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair True False) True ] - - location: 14 (remaining gas: 1039991.835 units remaining) + - location: 14 (just consumed gas: 0.010) [ False True ] - - location: 15 (remaining gas: 1039991.825 units remaining) + - location: 15 (just consumed gas: 0.010) [ True ] - - location: 16 (remaining gas: 1039991.815 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some True) ] - - location: 17 (remaining gas: 1039991.805 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 19 (remaining gas: 1039991.795 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out index a0d50231329f172fb884dcfdfd3d50444cfe282c..d06ca90ea6d2c89ba99efa93d60264bbfff40e1a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.885 units remaining) + - location: 10 (just consumed gas: 8.115) [ (Pair (Pair True True) None) ] - - location: 10 (remaining gas: 1039991.875 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair True True) ] - - location: 11 (remaining gas: 1039991.865 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair True True) (Pair True True) ] - - location: 12 (remaining gas: 1039991.855 units remaining) + - location: 12 (just consumed gas: 0.010) [ True (Pair True True) ] - - location: 13 (remaining gas: 1039991.845 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair True True) True ] - - location: 14 (remaining gas: 1039991.835 units remaining) + - location: 14 (just consumed gas: 0.010) [ True True ] - - location: 15 (remaining gas: 1039991.825 units remaining) + - location: 15 (just consumed gas: 0.010) [ True ] - - location: 16 (remaining gas: 1039991.815 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some True) ] - - location: 17 (remaining gas: 1039991.805 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 19 (remaining gas: 1039991.795 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out index 7134a024f0695018b8f49c0cf9b94641d4560455..13f20f87b0c02be1a774646d2cd9d27cf330ea64 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.859 units remaining) + - location: 10 (just consumed gas: 6.141) [ (Pair (Pair 0 8) None) ] - - location: 10 (remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 8) ] - - location: 11 (remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010) [ 0 8 ] - - location: 12 (remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035) [ 8 ] - - location: 13 (remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 8) ] - - location: 14 (remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 8) ] - - location: 16 (remaining gas: 1039993.774 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some 8)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out index 5b231716c634a36b003951a9fed9e57415763e48..ee65d43e28d8a18295b8acd4060e79d5bd345e83 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.859 units remaining) + - location: 10 (just consumed gas: 6.141) [ (Pair (Pair 14 1) None) ] - - location: 10 (remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 14 1) ] - - location: 11 (remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010) [ 14 1 ] - - location: 12 (remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035) [ 15 ] - - location: 13 (remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 15) ] - - location: 14 (remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 15) ] - - location: 16 (remaining gas: 1039993.774 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some 15)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out index 936d4717dee7508aea993bbcebf35635bac711d3..9b82d80f3e3f9c8030b3d6883d0f4272c71f5d05 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.859 units remaining) + - location: 10 (just consumed gas: 6.141) [ (Pair (Pair 15 4) None) ] - - location: 10 (remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 15 4) ] - - location: 11 (remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010) [ 15 4 ] - - location: 12 (remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035) [ 15 ] - - location: 13 (remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 15) ] - - location: 14 (remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 15) ] - - location: 16 (remaining gas: 1039993.774 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some 15)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out index 1b62cc25988eac121973318cad1568f2379491f9..6365697764f7227cc33243058633384917ac4b97 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.859 units remaining) + - location: 10 (just consumed gas: 6.141) [ (Pair (Pair 4 8) None) ] - - location: 10 (remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 4 8) ] - - location: 11 (remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010) [ 4 8 ] - - location: 12 (remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035) [ 12 ] - - location: 13 (remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 12) ] - - location: 14 (remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 12) ] - - location: 16 (remaining gas: 1039993.774 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some 12)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out index 6f0477f2a8f02ff381015c61bd5c8df689ba941d..e45c4409cd81bf56935b25572f8aa79e8547296d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.859 units remaining) + - location: 10 (just consumed gas: 6.141) [ (Pair (Pair 7 7) None) ] - - location: 10 (remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 7 7) ] - - location: 11 (remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010) [ 7 7 ] - - location: 12 (remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035) [ 7 ] - - location: 13 (remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 7) ] - - location: 14 (remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 7) ] - - location: 16 (remaining gas: 1039993.774 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some 7)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out index a80b14a9830c683abc4cdcb232a74fb3db112b24..b67908e4e21215ebaf75c03b6e5a5a33ce3925d1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039993.859 units remaining) + - location: 10 (just consumed gas: 6.141) [ (Pair (Pair 8 0) None) ] - - location: 10 (remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 8 0) ] - - location: 11 (remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010) [ 8 0 ] - - location: 12 (remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035) [ 8 ] - - location: 13 (remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 8) ] - - location: 14 (remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 8) ] - - location: 16 (remaining gas: 1039993.774 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some 8)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" index 147ad9ea25eb337e7d29a9a2f3202180cb60a31e..60d731031ca6ea25c70b966fcb9a1ce1c7ca3d83 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039851.817 units remaining) + - location: 16 (just consumed gas: 148.183) [ (Pair (Pair -1 1 "foobar" @@ -18,7 +18,7 @@ trace "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") Unit) ] - - location: 16 (remaining gas: 1039851.807 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair -1 1 "foobar" @@ -28,7 +28,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 17 (remaining gas: 1039851.797 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair -1 1 "foobar" @@ -47,7 +47,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 18 (remaining gas: 1039851.787 units remaining) + - location: 18 (just consumed gas: 0.010) [ -1 (Pair -1 1 @@ -58,7 +58,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (remaining gas: 1039851.787 units remaining) + - location: 19 (just consumed gas: 0) [ (Pair -1 1 "foobar" @@ -68,7 +68,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 21 (remaining gas: 1039851.777 units remaining) + - location: 21 (just consumed gas: 0.010) [ -1 (Pair 1 "foobar" @@ -78,7 +78,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (remaining gas: 1039851.752 units remaining) + - location: 19 (just consumed gas: 0.025) [ -1 -1 (Pair 1 @@ -89,7 +89,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 22 (remaining gas: 1039851.511 units remaining) + - location: 22 (just consumed gas: 0.241) [ 0x050041 -1 (Pair 1 @@ -100,7 +100,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 23 (remaining gas: 1039851.090 units remaining) + - location: 23 (just consumed gas: 0.421) [ (Some -1) -1 (Pair 1 @@ -111,7 +111,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (remaining gas: 1039851.090 units remaining) + - location: 26 (just consumed gas: 0) [ -1 -1 (Pair 1 @@ -122,7 +122,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (remaining gas: 1039851.075 units remaining) + - location: 26 (just consumed gas: 0.015) [ -1 -1 (Pair 1 @@ -133,7 +133,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 34 (remaining gas: 1039851.040 units remaining) + - location: 34 (just consumed gas: 0.035) [ 0 (Pair 1 "foobar" @@ -143,7 +143,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 35 (remaining gas: 1039851.030 units remaining) + - location: 35 (just consumed gas: 0.010) [ True (Pair 1 "foobar" @@ -153,7 +153,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (remaining gas: 1039851.030 units remaining) + - location: 36 (just consumed gas: 0) [ (Pair 1 "foobar" 0x00aabbcc @@ -162,7 +162,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (remaining gas: 1039851.015 units remaining) + - location: 36 (just consumed gas: 0.015) [ (Pair 1 "foobar" 0x00aabbcc @@ -171,7 +171,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 42 (remaining gas: 1039851.005 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair 1 "foobar" 0x00aabbcc @@ -188,7 +188,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 43 (remaining gas: 1039850.995 units remaining) + - location: 43 (just consumed gas: 0.010) [ 1 (Pair 1 "foobar" @@ -198,7 +198,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (remaining gas: 1039850.995 units remaining) + - location: 44 (just consumed gas: 0) [ (Pair 1 "foobar" 0x00aabbcc @@ -207,7 +207,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 46 (remaining gas: 1039850.985 units remaining) + - location: 46 (just consumed gas: 0.010) [ 1 (Pair "foobar" 0x00aabbcc @@ -216,7 +216,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (remaining gas: 1039850.960 units remaining) + - location: 44 (just consumed gas: 0.025) [ 1 1 (Pair "foobar" @@ -226,7 +226,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 47 (remaining gas: 1039850.719 units remaining) + - location: 47 (just consumed gas: 0.241) [ 0x050001 1 (Pair "foobar" @@ -236,7 +236,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 48 (remaining gas: 1039850.298 units remaining) + - location: 48 (just consumed gas: 0.421) [ (Some 1) 1 (Pair "foobar" @@ -246,7 +246,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (remaining gas: 1039850.298 units remaining) + - location: 51 (just consumed gas: 0) [ 1 1 (Pair "foobar" @@ -256,7 +256,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (remaining gas: 1039850.283 units remaining) + - location: 51 (just consumed gas: 0.015) [ 1 1 (Pair "foobar" @@ -266,7 +266,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 59 (remaining gas: 1039850.248 units remaining) + - location: 59 (just consumed gas: 0.035) [ 0 (Pair "foobar" 0x00aabbcc @@ -275,7 +275,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 60 (remaining gas: 1039850.238 units remaining) + - location: 60 (just consumed gas: 0.010) [ True (Pair "foobar" 0x00aabbcc @@ -284,7 +284,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (remaining gas: 1039850.238 units remaining) + - location: 61 (just consumed gas: 0) [ (Pair "foobar" 0x00aabbcc 1000 @@ -292,7 +292,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (remaining gas: 1039850.223 units remaining) + - location: 61 (just consumed gas: 0.015) [ (Pair "foobar" 0x00aabbcc 1000 @@ -300,7 +300,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 67 (remaining gas: 1039850.213 units remaining) + - location: 67 (just consumed gas: 0.010) [ (Pair "foobar" 0x00aabbcc 1000 @@ -315,7 +315,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 68 (remaining gas: 1039850.203 units remaining) + - location: 68 (just consumed gas: 0.010) [ "foobar" (Pair "foobar" 0x00aabbcc @@ -324,7 +324,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (remaining gas: 1039850.203 units remaining) + - location: 69 (just consumed gas: 0) [ (Pair "foobar" 0x00aabbcc 1000 @@ -332,7 +332,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 71 (remaining gas: 1039850.193 units remaining) + - location: 71 (just consumed gas: 0.010) [ "foobar" (Pair 0x00aabbcc 1000 @@ -340,7 +340,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (remaining gas: 1039850.168 units remaining) + - location: 69 (just consumed gas: 0.025) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -349,7 +349,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 72 (remaining gas: 1039849.892 units remaining) + - location: 72 (just consumed gas: 0.276) [ 0x050100000006666f6f626172 "foobar" (Pair 0x00aabbcc @@ -358,7 +358,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 73 (remaining gas: 1039849.212 units remaining) + - location: 73 (just consumed gas: 0.680) [ (Some "foobar") "foobar" (Pair 0x00aabbcc @@ -367,7 +367,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (remaining gas: 1039849.212 units remaining) + - location: 76 (just consumed gas: 0) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -376,7 +376,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (remaining gas: 1039849.197 units remaining) + - location: 76 (just consumed gas: 0.015) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -385,7 +385,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 84 (remaining gas: 1039849.162 units remaining) + - location: 84 (just consumed gas: 0.035) [ 0 (Pair 0x00aabbcc 1000 @@ -393,7 +393,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 85 (remaining gas: 1039849.152 units remaining) + - location: 85 (just consumed gas: 0.010) [ True (Pair 0x00aabbcc 1000 @@ -401,21 +401,21 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (remaining gas: 1039849.152 units remaining) + - location: 86 (just consumed gas: 0) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (remaining gas: 1039849.137 units remaining) + - location: 86 (just consumed gas: 0.015) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 92 (remaining gas: 1039849.127 units remaining) + - location: 92 (just consumed gas: 0.010) [ (Pair 0x00aabbcc 1000 False @@ -428,7 +428,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 93 (remaining gas: 1039849.117 units remaining) + - location: 93 (just consumed gas: 0.010) [ 0x00aabbcc (Pair 0x00aabbcc 1000 @@ -436,21 +436,21 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (remaining gas: 1039849.117 units remaining) + - location: 94 (just consumed gas: 0) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 96 (remaining gas: 1039849.107 units remaining) + - location: 96 (just consumed gas: 0.010) [ 0x00aabbcc (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (remaining gas: 1039849.082 units remaining) + - location: 94 (just consumed gas: 0.025) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -458,7 +458,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 97 (remaining gas: 1039848.826 units remaining) + - location: 97 (just consumed gas: 0.256) [ 0x050a0000000400aabbcc 0x00aabbcc (Pair 1000 @@ -466,7 +466,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 98 (remaining gas: 1039848.261 units remaining) + - location: 98 (just consumed gas: 0.565) [ (Some 0x00aabbcc) 0x00aabbcc (Pair 1000 @@ -474,7 +474,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (remaining gas: 1039848.261 units remaining) + - location: 101 (just consumed gas: 0) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -482,7 +482,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (remaining gas: 1039848.246 units remaining) + - location: 101 (just consumed gas: 0.015) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -490,33 +490,33 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 109 (remaining gas: 1039848.211 units remaining) + - location: 109 (just consumed gas: 0.035) [ 0 (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 110 (remaining gas: 1039848.201 units remaining) + - location: 110 (just consumed gas: 0.010) [ True (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (remaining gas: 1039848.201 units remaining) + - location: 111 (just consumed gas: 0) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (remaining gas: 1039848.186 units remaining) + - location: 111 (just consumed gas: 0.015) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 117 (remaining gas: 1039848.176 units remaining) + - location: 117 (just consumed gas: 0.010) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" @@ -527,83 +527,83 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 118 (remaining gas: 1039848.166 units remaining) + - location: 118 (just consumed gas: 0.010) [ 1000 (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (remaining gas: 1039848.166 units remaining) + - location: 119 (just consumed gas: 0) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 121 (remaining gas: 1039848.156 units remaining) + - location: 121 (just consumed gas: 0.010) [ 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (remaining gas: 1039848.131 units remaining) + - location: 119 (just consumed gas: 0.025) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 122 (remaining gas: 1039847.865 units remaining) + - location: 122 (just consumed gas: 0.266) [ 0x0500a80f 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 123 (remaining gas: 1039847.423 units remaining) + - location: 123 (just consumed gas: 0.442) [ (Some 1000) 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (remaining gas: 1039847.423 units remaining) + - location: 126 (just consumed gas: 0) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (remaining gas: 1039847.408 units remaining) + - location: 126 (just consumed gas: 0.015) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 134 (remaining gas: 1039847.373 units remaining) + - location: 134 (just consumed gas: 0.035) [ 0 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 135 (remaining gas: 1039847.363 units remaining) + - location: 135 (just consumed gas: 0.010) [ True (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039847.363 units remaining) + - location: 136 (just consumed gas: 0) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039847.348 units remaining) + - location: 136 (just consumed gas: 0.015) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 142 (remaining gas: 1039847.338 units remaining) + - location: 142 (just consumed gas: 0.010) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" @@ -612,234 +612,234 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 143 (remaining gas: 1039847.328 units remaining) + - location: 143 (just consumed gas: 0.010) [ False (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039847.328 units remaining) + - location: 144 (just consumed gas: 0) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 146 (remaining gas: 1039847.318 units remaining) + - location: 146 (just consumed gas: 0.010) [ False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039847.293 units remaining) + - location: 144 (just consumed gas: 0.025) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 147 (remaining gas: 1039847.077 units remaining) + - location: 147 (just consumed gas: 0.216) [ 0x050303 False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 148 (remaining gas: 1039846.656 units remaining) + - location: 148 (just consumed gas: 0.421) [ (Some False) False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (remaining gas: 1039846.656 units remaining) + - location: 151 (just consumed gas: 0) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (remaining gas: 1039846.641 units remaining) + - location: 151 (just consumed gas: 0.015) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 159 (remaining gas: 1039846.606 units remaining) + - location: 159 (just consumed gas: 0.035) [ 0 (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 160 (remaining gas: 1039846.596 units remaining) + - location: 160 (just consumed gas: 0.010) [ True (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039846.596 units remaining) + - location: 161 (just consumed gas: 0) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039846.581 units remaining) + - location: 161 (just consumed gas: 0.015) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 167 (remaining gas: 1039846.571 units remaining) + - 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 (remaining gas: 1039846.561 units remaining) + - location: 168 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039846.561 units remaining) + - location: 169 (just consumed gas: 0) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 171 (remaining gas: 1039846.551 units remaining) + - location: 171 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039846.526 units remaining) + - location: 169 (just consumed gas: 0.025) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 172 (remaining gas: 1039846.030 units remaining) + - location: 172 (just consumed gas: 0.496) [ 0x050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 173 (remaining gas: 1039845.067 units remaining) + - location: 173 (just consumed gas: 0.963) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039845.067 units remaining) + - location: 176 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039845.052 units remaining) + - location: 176 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 184 (remaining gas: 1039845.016 units remaining) + - location: 184 (just consumed gas: 0.036) [ 0 (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 185 (remaining gas: 1039845.006 units remaining) + - location: 185 (just consumed gas: 0.010) [ True (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039845.006 units remaining) + - location: 186 (just consumed gas: 0) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039844.991 units remaining) + - location: 186 (just consumed gas: 0.015) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 192 (remaining gas: 1039844.981 units remaining) + - location: 192 (just consumed gas: 0.010) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 193 (remaining gas: 1039844.971 units remaining) + - location: 193 (just consumed gas: 0.010) [ "2019-09-09T08:35:33Z" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 194 (remaining gas: 1039844.971 units remaining) + - location: 194 (just consumed gas: 0) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 196 (remaining gas: 1039844.961 units remaining) + - location: 196 (just consumed gas: 0.010) [ "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 194 (remaining gas: 1039844.936 units remaining) + - location: 194 (just consumed gas: 0.025) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 197 (remaining gas: 1039844.620 units remaining) + - location: 197 (just consumed gas: 0.316) [ 0x050095bbb0d70b "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 198 (remaining gas: 1039844.117 units remaining) + - location: 198 (just consumed gas: 0.503) [ (Some "2019-09-09T08:35:33Z") "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (remaining gas: 1039844.117 units remaining) + - location: 201 (just consumed gas: 0) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (remaining gas: 1039844.102 units remaining) + - location: 201 (just consumed gas: 0.015) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 209 (remaining gas: 1039844.067 units remaining) + - location: 209 (just consumed gas: 0.035) [ 0 "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 210 (remaining gas: 1039844.057 units remaining) + - location: 210 (just consumed gas: 0.010) [ True "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039844.057 units remaining) + - location: 211 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039844.042 units remaining) + - location: 211 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 217 (remaining gas: 1039844.032 units remaining) + - location: 217 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 218 (remaining gas: 1039843.526 units remaining) + - location: 218 (just consumed gas: 0.506) [ 0x050a000000160000bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 219 (remaining gas: 1039842.542 units remaining) + - location: 219 (just consumed gas: 0.984) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1039842.542 units remaining) + - location: 222 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1039842.527 units remaining) + - location: 222 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 230 (remaining gas: 1039842.491 units remaining) + - location: 230 (just consumed gas: 0.036) [ 0 ] - - location: 231 (remaining gas: 1039842.481 units remaining) + - location: 231 (just consumed gas: 0.010) [ True ] - - location: 232 (remaining gas: 1039842.481 units remaining) + - location: 232 (just consumed gas: 0) [ ] - - location: 232 (remaining gas: 1039842.466 units remaining) + - location: 232 (just consumed gas: 0.015) [ ] - - location: 238 (remaining gas: 1039842.456 units remaining) + - location: 238 (just consumed gas: 0.010) [ 0 ] - - location: 241 (remaining gas: 1039842.240 units remaining) + - location: 241 (just consumed gas: 0.216) [ 0x050000 ] - - location: 242 (remaining gas: 1039841.819 units remaining) + - location: 242 (just consumed gas: 0.421) [ (Some 0) ] - - location: 245 (remaining gas: 1039841.819 units remaining) + - location: 245 (just consumed gas: 0) [ 0 ] - - location: 245 (remaining gas: 1039841.804 units remaining) + - location: 245 (just consumed gas: 0.015) [ 0 ] - - location: 251 (remaining gas: 1039841.794 units remaining) + - location: 251 (just consumed gas: 0.010) [ ] - - location: 252 (remaining gas: 1039841.784 units remaining) + - location: 252 (just consumed gas: 0.010) [ -1 ] - - location: 255 (remaining gas: 1039841.543 units remaining) + - location: 255 (just consumed gas: 0.241) [ 0x050041 ] - - location: 256 (remaining gas: 1039745.222 units remaining) + - location: 256 (just consumed gas: 96.321) [ None ] - - location: 259 (remaining gas: 1039745.222 units remaining) + - location: 259 (just consumed gas: 0) [ ] - - location: 259 (remaining gas: 1039745.207 units remaining) + - location: 259 (just consumed gas: 0.015) [ ] - - location: 265 (remaining gas: 1039745.197 units remaining) + - location: 265 (just consumed gas: 0.010) [ 0x ] - - location: 268 (remaining gas: 1039744.937 units remaining) + - location: 268 (just consumed gas: 0.260) [ None ] - - location: 271 (remaining gas: 1039744.937 units remaining) + - location: 271 (just consumed gas: 0) [ ] - - location: 271 (remaining gas: 1039744.922 units remaining) + - location: 271 (just consumed gas: 0.015) [ ] - - location: 277 (remaining gas: 1039744.912 units remaining) + - location: 277 (just consumed gas: 0.010) [ 0x04 ] - - location: 280 (remaining gas: 1039744.632 units remaining) + - location: 280 (just consumed gas: 0.280) [ None ] - - location: 283 (remaining gas: 1039744.632 units remaining) + - location: 283 (just consumed gas: 0) [ ] - - location: 283 (remaining gas: 1039744.617 units remaining) + - location: 283 (just consumed gas: 0.015) [ ] - - location: 289 (remaining gas: 1039744.607 units remaining) + - location: 289 (just consumed gas: 0.010) [ 0x05 ] - - location: 292 (remaining gas: 1039744.327 units remaining) + - location: 292 (just consumed gas: 0.280) [ None ] - - location: 295 (remaining gas: 1039744.327 units remaining) + - location: 295 (just consumed gas: 0) [ ] - - location: 295 (remaining gas: 1039744.312 units remaining) + - location: 295 (just consumed gas: 0.015) [ ] - - location: 301 (remaining gas: 1039744.302 units remaining) + - location: 301 (just consumed gas: 0.010) [ Unit ] - - location: 302 (remaining gas: 1039744.292 units remaining) + - location: 302 (just consumed gas: 0.010) [ {} Unit ] - - location: 304 (remaining gas: 1039744.282 units remaining) + - location: 304 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" index 701f595ae5481fe2baa6a9c3e3724f748c3e2169..169386e41e5ed9a9ec7a2f7934d9d0782de4c55d 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039851.817 units remaining) + - location: 16 (just consumed gas: 148.183) [ (Pair (Pair -1 1 "foobar" @@ -18,7 +18,7 @@ trace "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") Unit) ] - - location: 16 (remaining gas: 1039851.807 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair -1 1 "foobar" @@ -28,7 +28,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 17 (remaining gas: 1039851.797 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair -1 1 "foobar" @@ -47,7 +47,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 18 (remaining gas: 1039851.787 units remaining) + - location: 18 (just consumed gas: 0.010) [ -1 (Pair -1 1 @@ -58,7 +58,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (remaining gas: 1039851.787 units remaining) + - location: 19 (just consumed gas: 0) [ (Pair -1 1 "foobar" @@ -68,7 +68,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 21 (remaining gas: 1039851.777 units remaining) + - location: 21 (just consumed gas: 0.010) [ -1 (Pair 1 "foobar" @@ -78,7 +78,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (remaining gas: 1039851.752 units remaining) + - location: 19 (just consumed gas: 0.025) [ -1 -1 (Pair 1 @@ -89,7 +89,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 22 (remaining gas: 1039851.511 units remaining) + - location: 22 (just consumed gas: 0.241) [ 0x050041 -1 (Pair 1 @@ -100,7 +100,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 23 (remaining gas: 1039851.090 units remaining) + - location: 23 (just consumed gas: 0.421) [ (Some -1) -1 (Pair 1 @@ -111,7 +111,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (remaining gas: 1039851.090 units remaining) + - location: 26 (just consumed gas: 0) [ -1 -1 (Pair 1 @@ -122,7 +122,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (remaining gas: 1039851.075 units remaining) + - location: 26 (just consumed gas: 0.015) [ -1 -1 (Pair 1 @@ -133,7 +133,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 34 (remaining gas: 1039851.040 units remaining) + - location: 34 (just consumed gas: 0.035) [ 0 (Pair 1 "foobar" @@ -143,7 +143,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 35 (remaining gas: 1039851.030 units remaining) + - location: 35 (just consumed gas: 0.010) [ True (Pair 1 "foobar" @@ -153,7 +153,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (remaining gas: 1039851.030 units remaining) + - location: 36 (just consumed gas: 0) [ (Pair 1 "foobar" 0x00aabbcc @@ -162,7 +162,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (remaining gas: 1039851.015 units remaining) + - location: 36 (just consumed gas: 0.015) [ (Pair 1 "foobar" 0x00aabbcc @@ -171,7 +171,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 42 (remaining gas: 1039851.005 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair 1 "foobar" 0x00aabbcc @@ -188,7 +188,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 43 (remaining gas: 1039850.995 units remaining) + - location: 43 (just consumed gas: 0.010) [ 1 (Pair 1 "foobar" @@ -198,7 +198,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (remaining gas: 1039850.995 units remaining) + - location: 44 (just consumed gas: 0) [ (Pair 1 "foobar" 0x00aabbcc @@ -207,7 +207,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 46 (remaining gas: 1039850.985 units remaining) + - location: 46 (just consumed gas: 0.010) [ 1 (Pair "foobar" 0x00aabbcc @@ -216,7 +216,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (remaining gas: 1039850.960 units remaining) + - location: 44 (just consumed gas: 0.025) [ 1 1 (Pair "foobar" @@ -226,7 +226,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 47 (remaining gas: 1039850.719 units remaining) + - location: 47 (just consumed gas: 0.241) [ 0x050001 1 (Pair "foobar" @@ -236,7 +236,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 48 (remaining gas: 1039850.298 units remaining) + - location: 48 (just consumed gas: 0.421) [ (Some 1) 1 (Pair "foobar" @@ -246,7 +246,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (remaining gas: 1039850.298 units remaining) + - location: 51 (just consumed gas: 0) [ 1 1 (Pair "foobar" @@ -256,7 +256,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (remaining gas: 1039850.283 units remaining) + - location: 51 (just consumed gas: 0.015) [ 1 1 (Pair "foobar" @@ -266,7 +266,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 59 (remaining gas: 1039850.248 units remaining) + - location: 59 (just consumed gas: 0.035) [ 0 (Pair "foobar" 0x00aabbcc @@ -275,7 +275,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 60 (remaining gas: 1039850.238 units remaining) + - location: 60 (just consumed gas: 0.010) [ True (Pair "foobar" 0x00aabbcc @@ -284,7 +284,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (remaining gas: 1039850.238 units remaining) + - location: 61 (just consumed gas: 0) [ (Pair "foobar" 0x00aabbcc 1000 @@ -292,7 +292,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (remaining gas: 1039850.223 units remaining) + - location: 61 (just consumed gas: 0.015) [ (Pair "foobar" 0x00aabbcc 1000 @@ -300,7 +300,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 67 (remaining gas: 1039850.213 units remaining) + - location: 67 (just consumed gas: 0.010) [ (Pair "foobar" 0x00aabbcc 1000 @@ -315,7 +315,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 68 (remaining gas: 1039850.203 units remaining) + - location: 68 (just consumed gas: 0.010) [ "foobar" (Pair "foobar" 0x00aabbcc @@ -324,7 +324,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (remaining gas: 1039850.203 units remaining) + - location: 69 (just consumed gas: 0) [ (Pair "foobar" 0x00aabbcc 1000 @@ -332,7 +332,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 71 (remaining gas: 1039850.193 units remaining) + - location: 71 (just consumed gas: 0.010) [ "foobar" (Pair 0x00aabbcc 1000 @@ -340,7 +340,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (remaining gas: 1039850.168 units remaining) + - location: 69 (just consumed gas: 0.025) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -349,7 +349,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 72 (remaining gas: 1039849.892 units remaining) + - location: 72 (just consumed gas: 0.276) [ 0x050100000006666f6f626172 "foobar" (Pair 0x00aabbcc @@ -358,7 +358,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 73 (remaining gas: 1039849.212 units remaining) + - location: 73 (just consumed gas: 0.680) [ (Some "foobar") "foobar" (Pair 0x00aabbcc @@ -367,7 +367,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (remaining gas: 1039849.212 units remaining) + - location: 76 (just consumed gas: 0) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -376,7 +376,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (remaining gas: 1039849.197 units remaining) + - location: 76 (just consumed gas: 0.015) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -385,7 +385,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 84 (remaining gas: 1039849.162 units remaining) + - location: 84 (just consumed gas: 0.035) [ 0 (Pair 0x00aabbcc 1000 @@ -393,7 +393,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 85 (remaining gas: 1039849.152 units remaining) + - location: 85 (just consumed gas: 0.010) [ True (Pair 0x00aabbcc 1000 @@ -401,21 +401,21 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (remaining gas: 1039849.152 units remaining) + - location: 86 (just consumed gas: 0) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (remaining gas: 1039849.137 units remaining) + - location: 86 (just consumed gas: 0.015) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 92 (remaining gas: 1039849.127 units remaining) + - location: 92 (just consumed gas: 0.010) [ (Pair 0x00aabbcc 1000 False @@ -428,7 +428,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 93 (remaining gas: 1039849.117 units remaining) + - location: 93 (just consumed gas: 0.010) [ 0x00aabbcc (Pair 0x00aabbcc 1000 @@ -436,21 +436,21 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (remaining gas: 1039849.117 units remaining) + - location: 94 (just consumed gas: 0) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 96 (remaining gas: 1039849.107 units remaining) + - location: 96 (just consumed gas: 0.010) [ 0x00aabbcc (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (remaining gas: 1039849.082 units remaining) + - location: 94 (just consumed gas: 0.025) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -458,7 +458,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 97 (remaining gas: 1039848.826 units remaining) + - location: 97 (just consumed gas: 0.256) [ 0x050a0000000400aabbcc 0x00aabbcc (Pair 1000 @@ -466,7 +466,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 98 (remaining gas: 1039848.261 units remaining) + - location: 98 (just consumed gas: 0.565) [ (Some 0x00aabbcc) 0x00aabbcc (Pair 1000 @@ -474,7 +474,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (remaining gas: 1039848.261 units remaining) + - location: 101 (just consumed gas: 0) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -482,7 +482,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (remaining gas: 1039848.246 units remaining) + - location: 101 (just consumed gas: 0.015) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -490,33 +490,33 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 109 (remaining gas: 1039848.211 units remaining) + - location: 109 (just consumed gas: 0.035) [ 0 (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 110 (remaining gas: 1039848.201 units remaining) + - location: 110 (just consumed gas: 0.010) [ True (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (remaining gas: 1039848.201 units remaining) + - location: 111 (just consumed gas: 0) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (remaining gas: 1039848.186 units remaining) + - location: 111 (just consumed gas: 0.015) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 117 (remaining gas: 1039848.176 units remaining) + - location: 117 (just consumed gas: 0.010) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" @@ -527,83 +527,83 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 118 (remaining gas: 1039848.166 units remaining) + - location: 118 (just consumed gas: 0.010) [ 1000 (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (remaining gas: 1039848.166 units remaining) + - location: 119 (just consumed gas: 0) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 121 (remaining gas: 1039848.156 units remaining) + - location: 121 (just consumed gas: 0.010) [ 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (remaining gas: 1039848.131 units remaining) + - location: 119 (just consumed gas: 0.025) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 122 (remaining gas: 1039847.865 units remaining) + - location: 122 (just consumed gas: 0.266) [ 0x0500a80f 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 123 (remaining gas: 1039847.423 units remaining) + - location: 123 (just consumed gas: 0.442) [ (Some 1000) 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (remaining gas: 1039847.423 units remaining) + - location: 126 (just consumed gas: 0) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (remaining gas: 1039847.408 units remaining) + - location: 126 (just consumed gas: 0.015) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 134 (remaining gas: 1039847.373 units remaining) + - location: 134 (just consumed gas: 0.035) [ 0 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 135 (remaining gas: 1039847.363 units remaining) + - location: 135 (just consumed gas: 0.010) [ True (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039847.363 units remaining) + - location: 136 (just consumed gas: 0) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039847.348 units remaining) + - location: 136 (just consumed gas: 0.015) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 142 (remaining gas: 1039847.338 units remaining) + - location: 142 (just consumed gas: 0.010) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" @@ -612,234 +612,234 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 143 (remaining gas: 1039847.328 units remaining) + - location: 143 (just consumed gas: 0.010) [ False (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039847.328 units remaining) + - location: 144 (just consumed gas: 0) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 146 (remaining gas: 1039847.318 units remaining) + - location: 146 (just consumed gas: 0.010) [ False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039847.293 units remaining) + - location: 144 (just consumed gas: 0.025) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 147 (remaining gas: 1039847.077 units remaining) + - location: 147 (just consumed gas: 0.216) [ 0x050303 False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 148 (remaining gas: 1039846.656 units remaining) + - location: 148 (just consumed gas: 0.421) [ (Some False) False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (remaining gas: 1039846.656 units remaining) + - location: 151 (just consumed gas: 0) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (remaining gas: 1039846.641 units remaining) + - location: 151 (just consumed gas: 0.015) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 159 (remaining gas: 1039846.606 units remaining) + - location: 159 (just consumed gas: 0.035) [ 0 (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 160 (remaining gas: 1039846.596 units remaining) + - location: 160 (just consumed gas: 0.010) [ True (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039846.596 units remaining) + - location: 161 (just consumed gas: 0) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039846.581 units remaining) + - location: 161 (just consumed gas: 0.015) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 167 (remaining gas: 1039846.571 units remaining) + - 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 (remaining gas: 1039846.561 units remaining) + - location: 168 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039846.561 units remaining) + - location: 169 (just consumed gas: 0) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 171 (remaining gas: 1039846.551 units remaining) + - location: 171 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039846.526 units remaining) + - location: 169 (just consumed gas: 0.025) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 172 (remaining gas: 1039846.030 units remaining) + - location: 172 (just consumed gas: 0.496) [ 0x050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 173 (remaining gas: 1039845.067 units remaining) + - location: 173 (just consumed gas: 0.963) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039845.067 units remaining) + - location: 176 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039845.052 units remaining) + - location: 176 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 184 (remaining gas: 1039845.016 units remaining) + - location: 184 (just consumed gas: 0.036) [ 0 (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 185 (remaining gas: 1039845.006 units remaining) + - location: 185 (just consumed gas: 0.010) [ True (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039845.006 units remaining) + - location: 186 (just consumed gas: 0) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039844.991 units remaining) + - location: 186 (just consumed gas: 0.015) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 192 (remaining gas: 1039844.981 units remaining) + - location: 192 (just consumed gas: 0.010) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 193 (remaining gas: 1039844.971 units remaining) + - location: 193 (just consumed gas: 0.010) [ "2019-09-09T08:35:33Z" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 194 (remaining gas: 1039844.971 units remaining) + - location: 194 (just consumed gas: 0) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 196 (remaining gas: 1039844.961 units remaining) + - location: 196 (just consumed gas: 0.010) [ "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 194 (remaining gas: 1039844.936 units remaining) + - location: 194 (just consumed gas: 0.025) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 197 (remaining gas: 1039844.620 units remaining) + - location: 197 (just consumed gas: 0.316) [ 0x050095bbb0d70b "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 198 (remaining gas: 1039844.117 units remaining) + - location: 198 (just consumed gas: 0.503) [ (Some "2019-09-09T08:35:33Z") "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (remaining gas: 1039844.117 units remaining) + - location: 201 (just consumed gas: 0) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (remaining gas: 1039844.102 units remaining) + - location: 201 (just consumed gas: 0.015) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 209 (remaining gas: 1039844.067 units remaining) + - location: 209 (just consumed gas: 0.035) [ 0 "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 210 (remaining gas: 1039844.057 units remaining) + - location: 210 (just consumed gas: 0.010) [ True "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039844.057 units remaining) + - location: 211 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039844.042 units remaining) + - location: 211 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 217 (remaining gas: 1039844.032 units remaining) + - location: 217 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 218 (remaining gas: 1039843.526 units remaining) + - location: 218 (just consumed gas: 0.506) [ 0x050a000000160000bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 219 (remaining gas: 1039842.542 units remaining) + - location: 219 (just consumed gas: 0.984) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1039842.542 units remaining) + - location: 222 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1039842.527 units remaining) + - location: 222 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 230 (remaining gas: 1039842.491 units remaining) + - location: 230 (just consumed gas: 0.036) [ 0 ] - - location: 231 (remaining gas: 1039842.481 units remaining) + - location: 231 (just consumed gas: 0.010) [ True ] - - location: 232 (remaining gas: 1039842.481 units remaining) + - location: 232 (just consumed gas: 0) [ ] - - location: 232 (remaining gas: 1039842.466 units remaining) + - location: 232 (just consumed gas: 0.015) [ ] - - location: 238 (remaining gas: 1039842.456 units remaining) + - location: 238 (just consumed gas: 0.010) [ 0 ] - - location: 241 (remaining gas: 1039842.240 units remaining) + - location: 241 (just consumed gas: 0.216) [ 0x050000 ] - - location: 242 (remaining gas: 1039841.819 units remaining) + - location: 242 (just consumed gas: 0.421) [ (Some 0) ] - - location: 245 (remaining gas: 1039841.819 units remaining) + - location: 245 (just consumed gas: 0) [ 0 ] - - location: 245 (remaining gas: 1039841.804 units remaining) + - location: 245 (just consumed gas: 0.015) [ 0 ] - - location: 251 (remaining gas: 1039841.794 units remaining) + - location: 251 (just consumed gas: 0.010) [ ] - - location: 252 (remaining gas: 1039841.784 units remaining) + - location: 252 (just consumed gas: 0.010) [ -1 ] - - location: 255 (remaining gas: 1039841.543 units remaining) + - location: 255 (just consumed gas: 0.241) [ 0x050041 ] - - location: 256 (remaining gas: 1039745.222 units remaining) + - location: 256 (just consumed gas: 96.321) [ None ] - - location: 259 (remaining gas: 1039745.222 units remaining) + - location: 259 (just consumed gas: 0) [ ] - - location: 259 (remaining gas: 1039745.207 units remaining) + - location: 259 (just consumed gas: 0.015) [ ] - - location: 265 (remaining gas: 1039745.197 units remaining) + - location: 265 (just consumed gas: 0.010) [ 0x ] - - location: 268 (remaining gas: 1039744.937 units remaining) + - location: 268 (just consumed gas: 0.260) [ None ] - - location: 271 (remaining gas: 1039744.937 units remaining) + - location: 271 (just consumed gas: 0) [ ] - - location: 271 (remaining gas: 1039744.922 units remaining) + - location: 271 (just consumed gas: 0.015) [ ] - - location: 277 (remaining gas: 1039744.912 units remaining) + - location: 277 (just consumed gas: 0.010) [ 0x04 ] - - location: 280 (remaining gas: 1039744.632 units remaining) + - location: 280 (just consumed gas: 0.280) [ None ] - - location: 283 (remaining gas: 1039744.632 units remaining) + - location: 283 (just consumed gas: 0) [ ] - - location: 283 (remaining gas: 1039744.617 units remaining) + - location: 283 (just consumed gas: 0.015) [ ] - - location: 289 (remaining gas: 1039744.607 units remaining) + - location: 289 (just consumed gas: 0.010) [ 0x05 ] - - location: 292 (remaining gas: 1039744.327 units remaining) + - location: 292 (just consumed gas: 0.280) [ None ] - - location: 295 (remaining gas: 1039744.327 units remaining) + - location: 295 (just consumed gas: 0) [ ] - - location: 295 (remaining gas: 1039744.312 units remaining) + - location: 295 (just consumed gas: 0.015) [ ] - - location: 301 (remaining gas: 1039744.302 units remaining) + - location: 301 (just consumed gas: 0.010) [ Unit ] - - location: 302 (remaining gas: 1039744.292 units remaining) + - location: 302 (just consumed gas: 0.010) [ {} Unit ] - - location: 304 (remaining gas: 1039744.282 units remaining) + - location: 304 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" index 99b993f0bfd12795ac4519cf36070fae74a6cc09..9de14737686aeca6ad62c62981cdfaead2adc133 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 28 (remaining gas: 1039497.693 units remaining) + - location: 28 (just consumed gas: 502.307) [ (Pair (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -19,7 +19,7 @@ trace { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) Unit) ] - - location: 28 (remaining gas: 1039497.683 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -30,7 +30,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 29 (remaining gas: 1039497.673 units remaining) + - location: 29 (just consumed gas: 0.010) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -51,7 +51,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 30 (remaining gas: 1039497.663 units remaining) + - location: 30 (just consumed gas: 0.010) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit @@ -63,7 +63,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 31 (remaining gas: 1039497.663 units remaining) + - location: 31 (just consumed gas: 0) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -74,7 +74,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 33 (remaining gas: 1039497.653 units remaining) + - location: 33 (just consumed gas: 0.010) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -85,7 +85,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 31 (remaining gas: 1039497.628 units remaining) + - location: 31 (just consumed gas: 0.025) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit @@ -97,7 +97,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 34 (remaining gas: 1039496.627 units remaining) + - location: 34 (just consumed gas: 1.001) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit @@ -109,7 +109,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 35 (remaining gas: 1039496.627 units remaining) + - location: 35 (just consumed gas: 0) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -120,7 +120,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 37 (remaining gas: 1039495.626 units remaining) + - location: 37 (just consumed gas: 1.001) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -131,7 +131,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 38 (remaining gas: 1039174.467 units remaining) + - location: 38 (just consumed gas: 321.159) [ (Some "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav") (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -142,7 +142,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 41 (remaining gas: 1039174.467 units remaining) + - location: 41 (just consumed gas: 0) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -153,7 +153,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 41 (remaining gas: 1039174.452 units remaining) + - location: 41 (just consumed gas: 0.015) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -164,7 +164,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 47 (remaining gas: 1039173.451 units remaining) + - location: 47 (just consumed gas: 1.001) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -175,7 +175,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 35 (remaining gas: 1039173.426 units remaining) + - location: 35 (just consumed gas: 0.025) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit @@ -187,7 +187,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 50 (remaining gas: 1039173.391 units remaining) + - location: 50 (just consumed gas: 0.035) [ 0 (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -198,7 +198,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 51 (remaining gas: 1039173.381 units remaining) + - location: 51 (just consumed gas: 0.010) [ True (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -209,7 +209,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 52 (remaining gas: 1039173.381 units remaining) + - location: 52 (just consumed gas: 0) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -219,7 +219,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 52 (remaining gas: 1039173.366 units remaining) + - location: 52 (just consumed gas: 0.015) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -229,7 +229,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 58 (remaining gas: 1039173.356 units remaining) + - location: 58 (just consumed gas: 0.010) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -248,7 +248,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 59 (remaining gas: 1039173.346 units remaining) + - location: 59 (just consumed gas: 0.010) [ Unit (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -259,7 +259,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 60 (remaining gas: 1039173.346 units remaining) + - location: 60 (just consumed gas: 0) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -269,7 +269,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 62 (remaining gas: 1039173.336 units remaining) + - location: 62 (just consumed gas: 0.010) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -279,7 +279,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 60 (remaining gas: 1039173.311 units remaining) + - location: 60 (just consumed gas: 0.025) [ Unit Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -290,7 +290,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 63 (remaining gas: 1039173.095 units remaining) + - location: 63 (just consumed gas: 0.216) [ 0x05030b Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -301,7 +301,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 64 (remaining gas: 1039173.095 units remaining) + - location: 64 (just consumed gas: 0) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -311,7 +311,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 66 (remaining gas: 1039172.879 units remaining) + - location: 66 (just consumed gas: 0.216) [ 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -321,7 +321,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 67 (remaining gas: 1039172.458 units remaining) + - location: 67 (just consumed gas: 0.421) [ (Some Unit) (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -331,7 +331,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 70 (remaining gas: 1039172.458 units remaining) + - location: 70 (just consumed gas: 0) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -341,7 +341,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 70 (remaining gas: 1039172.443 units remaining) + - location: 70 (just consumed gas: 0.015) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -351,7 +351,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 76 (remaining gas: 1039172.227 units remaining) + - location: 76 (just consumed gas: 0.216) [ 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -361,7 +361,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 64 (remaining gas: 1039172.202 units remaining) + - location: 64 (just consumed gas: 0.025) [ 0x05030b 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -372,7 +372,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 79 (remaining gas: 1039172.167 units remaining) + - location: 79 (just consumed gas: 0.035) [ 0 (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -382,7 +382,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 80 (remaining gas: 1039172.157 units remaining) + - location: 80 (just consumed gas: 0.010) [ True (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -392,7 +392,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 81 (remaining gas: 1039172.157 units remaining) + - location: 81 (just consumed gas: 0) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -401,7 +401,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 81 (remaining gas: 1039172.142 units remaining) + - location: 81 (just consumed gas: 0.015) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -410,7 +410,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 87 (remaining gas: 1039172.132 units remaining) + - location: 87 (just consumed gas: 0.010) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -427,7 +427,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 88 (remaining gas: 1039172.122 units remaining) + - location: 88 (just consumed gas: 0.010) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -437,7 +437,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 89 (remaining gas: 1039172.122 units remaining) + - location: 89 (just consumed gas: 0) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -446,7 +446,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 91 (remaining gas: 1039172.112 units remaining) + - location: 91 (just consumed gas: 0.010) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -455,7 +455,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 89 (remaining gas: 1039172.087 units remaining) + - location: 89 (just consumed gas: 0.025) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -465,7 +465,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 92 (remaining gas: 1039171.186 units remaining) + - location: 92 (just consumed gas: 0.901) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -475,7 +475,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 93 (remaining gas: 1039171.186 units remaining) + - location: 93 (just consumed gas: 0) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -484,7 +484,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 95 (remaining gas: 1039170.285 units remaining) + - location: 95 (just consumed gas: 0.901) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -493,7 +493,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 96 (remaining gas: 1039168.455 units remaining) + - location: 96 (just consumed gas: 1.830) [ (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe") (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -502,7 +502,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 99 (remaining gas: 1039168.455 units remaining) + - location: 99 (just consumed gas: 0) [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -511,7 +511,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 99 (remaining gas: 1039168.440 units remaining) + - location: 99 (just consumed gas: 0.015) [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -520,7 +520,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 105 (remaining gas: 1039167.539 units remaining) + - location: 105 (just consumed gas: 0.901) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -529,7 +529,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 93 (remaining gas: 1039167.514 units remaining) + - location: 93 (just consumed gas: 0.025) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -539,7 +539,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 108 (remaining gas: 1039167.478 units remaining) + - location: 108 (just consumed gas: 0.036) [ 0 (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -548,7 +548,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 109 (remaining gas: 1039167.468 units remaining) + - location: 109 (just consumed gas: 0.010) [ True (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -557,7 +557,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 110 (remaining gas: 1039167.468 units remaining) + - location: 110 (just consumed gas: 0) [ (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } { True } @@ -565,7 +565,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 110 (remaining gas: 1039167.453 units remaining) + - location: 110 (just consumed gas: 0.015) [ (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } { True } @@ -573,7 +573,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 116 (remaining gas: 1039167.443 units remaining) + - location: 116 (just consumed gas: 0.010) [ (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } { True } @@ -588,7 +588,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 117 (remaining gas: 1039167.433 units remaining) + - location: 117 (just consumed gas: 0.010) [ (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -597,7 +597,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 118 (remaining gas: 1039167.433 units remaining) + - location: 118 (just consumed gas: 0) [ (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } { True } @@ -605,7 +605,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 120 (remaining gas: 1039167.423 units remaining) + - location: 120 (just consumed gas: 0.010) [ (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } { True } @@ -613,7 +613,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 118 (remaining gas: 1039167.398 units remaining) + - location: 118 (just consumed gas: 0.025) [ (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } @@ -622,7 +622,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 121 (remaining gas: 1039166.281 units remaining) + - location: 121 (just consumed gas: 1.117) [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } @@ -631,7 +631,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 122 (remaining gas: 1039166.281 units remaining) + - location: 122 (just consumed gas: 0) [ (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } { True } @@ -639,7 +639,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 124 (remaining gas: 1039165.164 units remaining) + - location: 124 (just consumed gas: 1.117) [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair { Unit } { True } @@ -647,7 +647,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 125 (remaining gas: 1039163.193 units remaining) + - location: 125 (just consumed gas: 1.971) [ (Some (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe")) (Pair { Unit } { True } @@ -655,7 +655,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 129 (remaining gas: 1039163.193 units remaining) + - location: 129 (just consumed gas: 0) [ (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe") (Pair { Unit } { True } @@ -663,7 +663,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 129 (remaining gas: 1039163.178 units remaining) + - location: 129 (just consumed gas: 0.015) [ (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe") (Pair { Unit } { True } @@ -671,7 +671,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 135 (remaining gas: 1039162.061 units remaining) + - location: 135 (just consumed gas: 1.117) [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair { Unit } { True } @@ -679,7 +679,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 122 (remaining gas: 1039162.036 units remaining) + - location: 122 (just consumed gas: 0.025) [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair { Unit } @@ -688,7 +688,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 138 (remaining gas: 1039162 units remaining) + - location: 138 (just consumed gas: 0.036) [ 0 (Pair { Unit } { True } @@ -696,7 +696,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 139 (remaining gas: 1039161.990 units remaining) + - location: 139 (just consumed gas: 0.010) [ True (Pair { Unit } { True } @@ -704,21 +704,21 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 140 (remaining gas: 1039161.990 units remaining) + - location: 140 (just consumed gas: 0) [ (Pair { Unit } { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 140 (remaining gas: 1039161.975 units remaining) + - location: 140 (just consumed gas: 0.015) [ (Pair { Unit } { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 146 (remaining gas: 1039161.965 units remaining) + - location: 146 (just consumed gas: 0.010) [ (Pair { Unit } { True } (Pair 19 10) @@ -731,7 +731,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 147 (remaining gas: 1039161.955 units remaining) + - location: 147 (just consumed gas: 0.010) [ { Unit } (Pair { Unit } { True } @@ -739,21 +739,21 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 148 (remaining gas: 1039161.955 units remaining) + - location: 148 (just consumed gas: 0) [ (Pair { Unit } { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 150 (remaining gas: 1039161.945 units remaining) + - location: 150 (just consumed gas: 0.010) [ { Unit } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 148 (remaining gas: 1039161.920 units remaining) + - location: 148 (just consumed gas: 0.025) [ { Unit } { Unit } (Pair { True } @@ -761,7 +761,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 151 (remaining gas: 1039161.488 units remaining) + - location: 151 (just consumed gas: 0.432) [ 0x050200000002030b { Unit } (Pair { True } @@ -769,49 +769,49 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 152 (remaining gas: 1039161.488 units remaining) + - location: 152 (just consumed gas: 0) [ { Unit } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 154 (remaining gas: 1039161.056 units remaining) + - location: 154 (just consumed gas: 0.432) [ 0x050200000002030b (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 155 (remaining gas: 1039160.432 units remaining) + - 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 (remaining gas: 1039160.432 units remaining) + - location: 159 (just consumed gas: 0) [ { Unit } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 159 (remaining gas: 1039160.417 units remaining) + - location: 159 (just consumed gas: 0.015) [ { Unit } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 165 (remaining gas: 1039159.985 units remaining) + - location: 165 (just consumed gas: 0.432) [ 0x050200000002030b (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 152 (remaining gas: 1039159.960 units remaining) + - location: 152 (just consumed gas: 0.025) [ 0x050200000002030b 0x050200000002030b (Pair { True } @@ -819,33 +819,33 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 168 (remaining gas: 1039159.925 units remaining) + - location: 168 (just consumed gas: 0.035) [ 0 (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 169 (remaining gas: 1039159.915 units remaining) + - location: 169 (just consumed gas: 0.010) [ True (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 170 (remaining gas: 1039159.915 units remaining) + - location: 170 (just consumed gas: 0) [ (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 170 (remaining gas: 1039159.900 units remaining) + - location: 170 (just consumed gas: 0.015) [ (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 176 (remaining gas: 1039159.890 units remaining) + - location: 176 (just consumed gas: 0.010) [ (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") @@ -856,105 +856,105 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 177 (remaining gas: 1039159.880 units remaining) + - location: 177 (just consumed gas: 0.010) [ { True } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 178 (remaining gas: 1039159.880 units remaining) + - location: 178 (just consumed gas: 0) [ (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 180 (remaining gas: 1039159.870 units remaining) + - location: 180 (just consumed gas: 0.010) [ { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 178 (remaining gas: 1039159.845 units remaining) + - location: 178 (just consumed gas: 0.025) [ { True } { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 181 (remaining gas: 1039159.413 units remaining) + - location: 181 (just consumed gas: 0.432) [ 0x050200000002030a { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 182 (remaining gas: 1039159.413 units remaining) + - location: 182 (just consumed gas: 0) [ { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 184 (remaining gas: 1039158.981 units remaining) + - location: 184 (just consumed gas: 0.432) [ 0x050200000002030a (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 185 (remaining gas: 1039158.225 units remaining) + - location: 185 (just consumed gas: 0.756) [ (Some { True }) (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 189 (remaining gas: 1039158.225 units remaining) + - location: 189 (just consumed gas: 0) [ { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 189 (remaining gas: 1039158.210 units remaining) + - location: 189 (just consumed gas: 0.015) [ { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 195 (remaining gas: 1039157.778 units remaining) + - location: 195 (just consumed gas: 0.432) [ 0x050200000002030a (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 182 (remaining gas: 1039157.753 units remaining) + - location: 182 (just consumed gas: 0.025) [ 0x050200000002030a 0x050200000002030a (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 198 (remaining gas: 1039157.718 units remaining) + - location: 198 (just consumed gas: 0.035) [ 0 (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 199 (remaining gas: 1039157.708 units remaining) + - location: 199 (just consumed gas: 0.010) [ True (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 200 (remaining gas: 1039157.708 units remaining) + - location: 200 (just consumed gas: 0) [ (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 200 (remaining gas: 1039157.693 units remaining) + - location: 200 (just consumed gas: 0.015) [ (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 206 (remaining gas: 1039157.683 units remaining) + - location: 206 (just consumed gas: 0.010) [ (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } @@ -963,232 +963,232 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 207 (remaining gas: 1039157.673 units remaining) + - 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 (remaining gas: 1039157.673 units remaining) + - location: 208 (just consumed gas: 0) [ (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 210 (remaining gas: 1039157.663 units remaining) + - location: 210 (just consumed gas: 0.010) [ (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 208 (remaining gas: 1039157.638 units remaining) + - 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 (remaining gas: 1039156.940 units remaining) + - location: 211 (just consumed gas: 0.698) [ 0x0507070013000a (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 212 (remaining gas: 1039156.940 units remaining) + - location: 212 (just consumed gas: 0) [ (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 214 (remaining gas: 1039156.242 units remaining) + - location: 214 (just consumed gas: 0.698) [ 0x0507070013000a (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 215 (remaining gas: 1039155.539 units remaining) + - location: 215 (just consumed gas: 0.703) [ (Some (Pair 19 10)) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 220 (remaining gas: 1039155.539 units remaining) + - location: 220 (just consumed gas: 0) [ (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 220 (remaining gas: 1039155.524 units remaining) + - location: 220 (just consumed gas: 0.015) [ (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 226 (remaining gas: 1039154.826 units remaining) + - location: 226 (just consumed gas: 0.698) [ 0x0507070013000a (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 212 (remaining gas: 1039154.801 units remaining) + - location: 212 (just consumed gas: 0.025) [ 0x0507070013000a 0x0507070013000a (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 229 (remaining gas: 1039154.766 units remaining) + - location: 229 (just consumed gas: 0.035) [ 0 (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 230 (remaining gas: 1039154.756 units remaining) + - location: 230 (just consumed gas: 0.010) [ True (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 231 (remaining gas: 1039154.756 units remaining) + - location: 231 (just consumed gas: 0) [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 231 (remaining gas: 1039154.741 units remaining) + - location: 231 (just consumed gas: 0.015) [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 237 (remaining gas: 1039154.731 units remaining) + - 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 (remaining gas: 1039154.721 units remaining) + - location: 238 (just consumed gas: 0.010) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 239 (remaining gas: 1039154.721 units remaining) + - location: 239 (just consumed gas: 0) [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 241 (remaining gas: 1039154.711 units remaining) + - location: 241 (just consumed gas: 0.010) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 239 (remaining gas: 1039154.686 units remaining) + - location: 239 (just consumed gas: 0.025) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 242 (remaining gas: 1039153.974 units remaining) + - location: 242 (just consumed gas: 0.712) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 243 (remaining gas: 1039153.974 units remaining) + - location: 243 (just consumed gas: 0) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 245 (remaining gas: 1039153.262 units remaining) + - location: 245 (just consumed gas: 0.712) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 246 (remaining gas: 1039152.158 units remaining) + - location: 246 (just consumed gas: 1.104) [ (Some (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")) (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 251 (remaining gas: 1039152.158 units remaining) + - location: 251 (just consumed gas: 0) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 251 (remaining gas: 1039152.143 units remaining) + - location: 251 (just consumed gas: 0.015) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 257 (remaining gas: 1039151.431 units remaining) + - location: 257 (just consumed gas: 0.712) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 243 (remaining gas: 1039151.406 units remaining) + - location: 243 (just consumed gas: 0.025) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 260 (remaining gas: 1039151.371 units remaining) + - location: 260 (just consumed gas: 0.035) [ 0 (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 261 (remaining gas: 1039151.361 units remaining) + - location: 261 (just consumed gas: 0.010) [ True (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 262 (remaining gas: 1039151.361 units remaining) + - location: 262 (just consumed gas: 0) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 262 (remaining gas: 1039151.346 units remaining) + - location: 262 (just consumed gas: 0.015) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 268 (remaining gas: 1039151.336 units remaining) + - 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 (remaining gas: 1039151.326 units remaining) + - location: 269 (just consumed gas: 0.010) [ { Elt 0 "foo" ; Elt 1 "bar" } (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 270 (remaining gas: 1039151.326 units remaining) + - location: 270 (just consumed gas: 0) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 272 (remaining gas: 1039151.316 units remaining) + - location: 272 (just consumed gas: 0.010) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 270 (remaining gas: 1039151.291 units remaining) + - location: 270 (just consumed gas: 0.025) [ { Elt 0 "foo" ; Elt 1 "bar" } { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 273 (remaining gas: 1039149.824 units remaining) + - location: 273 (just consumed gas: 1.467) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 274 (remaining gas: 1039149.824 units remaining) + - location: 274 (just consumed gas: 0) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 276 (remaining gas: 1039148.357 units remaining) + - location: 276 (just consumed gas: 1.467) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 277 (remaining gas: 1039146.699 units remaining) + - location: 277 (just consumed gas: 1.658) [ (Some { Elt 0 "foo" ; Elt 1 "bar" }) { PACK } ] - - location: 282 (remaining gas: 1039146.699 units remaining) + - location: 282 (just consumed gas: 0) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 282 (remaining gas: 1039146.684 units remaining) + - location: 282 (just consumed gas: 0.015) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 288 (remaining gas: 1039145.217 units remaining) + - location: 288 (just consumed gas: 1.467) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 274 (remaining gas: 1039145.192 units remaining) + - location: 274 (just consumed gas: 0.025) [ 0x050200000018070400000100000003666f6f070400010100000003626172 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 291 (remaining gas: 1039145.157 units remaining) + - location: 291 (just consumed gas: 0.035) [ 0 { PACK } ] - - location: 292 (remaining gas: 1039145.147 units remaining) + - location: 292 (just consumed gas: 0.010) [ True { PACK } ] - - location: 293 (remaining gas: 1039145.147 units remaining) + - location: 293 (just consumed gas: 0) [ { PACK } ] - - location: 293 (remaining gas: 1039145.132 units remaining) + - location: 293 (just consumed gas: 0.015) [ { PACK } ] - - location: 299 (remaining gas: 1039145.122 units remaining) + - location: 299 (just consumed gas: 0.010) [ { PACK } { PACK } ] - - location: 300 (remaining gas: 1039144.525 units remaining) + - location: 300 (just consumed gas: 0.597) [ 0x050200000002030c { PACK } ] - - location: 301 (remaining gas: 1039144.525 units remaining) + - location: 301 (just consumed gas: 0) [ { PACK } ] - - location: 303 (remaining gas: 1039143.928 units remaining) + - location: 303 (just consumed gas: 0.597) [ 0x050200000002030c ] - - location: 304 (remaining gas: 1039142.904 units remaining) + - location: 304 (just consumed gas: 1.024) [ (Some { PACK }) ] - - location: 309 (remaining gas: 1039142.904 units remaining) + - location: 309 (just consumed gas: 0) [ { PACK } ] - - location: 309 (remaining gas: 1039142.889 units remaining) + - location: 309 (just consumed gas: 0.015) [ { PACK } ] - - location: 315 (remaining gas: 1039142.292 units remaining) + - location: 315 (just consumed gas: 0.597) [ 0x050200000002030c ] - - location: 301 (remaining gas: 1039142.267 units remaining) + - location: 301 (just consumed gas: 0.025) [ 0x050200000002030c 0x050200000002030c ] - - location: 318 (remaining gas: 1039142.232 units remaining) + - location: 318 (just consumed gas: 0.035) [ 0 ] - - location: 319 (remaining gas: 1039142.222 units remaining) + - location: 319 (just consumed gas: 0.010) [ True ] - - location: 320 (remaining gas: 1039142.222 units remaining) + - location: 320 (just consumed gas: 0) [ ] - - location: 320 (remaining gas: 1039142.207 units remaining) + - location: 320 (just consumed gas: 0.015) [ ] - - location: 326 (remaining gas: 1039142.197 units remaining) + - location: 326 (just consumed gas: 0.010) [ Unit ] - - location: 327 (remaining gas: 1039142.187 units remaining) + - location: 327 (just consumed gas: 0.010) [ {} Unit ] - - location: 329 (remaining gas: 1039142.177 units remaining) + - location: 329 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" index 30b9a497c641204104232949a7e7faeb8b7080e4..4dc27c311a958b49164723ca58b453308dafb02e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 28 (remaining gas: 1039507.420 units remaining) + - location: 28 (just consumed gas: 492.580) [ (Pair (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -19,7 +19,7 @@ trace {} { DUP ; DROP ; PACK }) Unit) ] - - location: 28 (remaining gas: 1039507.410 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -30,7 +30,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 29 (remaining gas: 1039507.400 units remaining) + - location: 29 (just consumed gas: 0.010) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -51,7 +51,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 30 (remaining gas: 1039507.390 units remaining) + - location: 30 (just consumed gas: 0.010) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit @@ -63,7 +63,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 31 (remaining gas: 1039507.390 units remaining) + - location: 31 (just consumed gas: 0) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -74,7 +74,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 33 (remaining gas: 1039507.380 units remaining) + - location: 33 (just consumed gas: 0.010) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -85,7 +85,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 31 (remaining gas: 1039507.355 units remaining) + - location: 31 (just consumed gas: 0.025) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit @@ -97,7 +97,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 34 (remaining gas: 1039506.354 units remaining) + - location: 34 (just consumed gas: 1.001) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit @@ -109,7 +109,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 35 (remaining gas: 1039506.354 units remaining) + - location: 35 (just consumed gas: 0) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -120,7 +120,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 37 (remaining gas: 1039505.353 units remaining) + - location: 37 (just consumed gas: 1.001) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -131,7 +131,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 38 (remaining gas: 1039184.194 units remaining) + - location: 38 (just consumed gas: 321.159) [ (Some "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav") (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -142,7 +142,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 41 (remaining gas: 1039184.194 units remaining) + - location: 41 (just consumed gas: 0) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -153,7 +153,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 41 (remaining gas: 1039184.179 units remaining) + - location: 41 (just consumed gas: 0.015) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -164,7 +164,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 47 (remaining gas: 1039183.178 units remaining) + - location: 47 (just consumed gas: 1.001) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -175,7 +175,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 35 (remaining gas: 1039183.153 units remaining) + - location: 35 (just consumed gas: 0.025) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit @@ -187,7 +187,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 50 (remaining gas: 1039183.118 units remaining) + - location: 50 (just consumed gas: 0.035) [ 0 (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -198,7 +198,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 51 (remaining gas: 1039183.108 units remaining) + - location: 51 (just consumed gas: 0.010) [ True (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -209,7 +209,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 52 (remaining gas: 1039183.108 units remaining) + - location: 52 (just consumed gas: 0) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -219,7 +219,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 52 (remaining gas: 1039183.093 units remaining) + - location: 52 (just consumed gas: 0.015) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -229,7 +229,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 58 (remaining gas: 1039183.083 units remaining) + - location: 58 (just consumed gas: 0.010) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -248,7 +248,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 59 (remaining gas: 1039183.073 units remaining) + - location: 59 (just consumed gas: 0.010) [ Unit (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -259,7 +259,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 60 (remaining gas: 1039183.073 units remaining) + - location: 60 (just consumed gas: 0) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -269,7 +269,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 62 (remaining gas: 1039183.063 units remaining) + - location: 62 (just consumed gas: 0.010) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -279,7 +279,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 60 (remaining gas: 1039183.038 units remaining) + - location: 60 (just consumed gas: 0.025) [ Unit Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -290,7 +290,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 63 (remaining gas: 1039182.822 units remaining) + - location: 63 (just consumed gas: 0.216) [ 0x05030b Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -301,7 +301,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 64 (remaining gas: 1039182.822 units remaining) + - location: 64 (just consumed gas: 0) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -311,7 +311,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 66 (remaining gas: 1039182.606 units remaining) + - location: 66 (just consumed gas: 0.216) [ 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -321,7 +321,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 67 (remaining gas: 1039182.185 units remaining) + - location: 67 (just consumed gas: 0.421) [ (Some Unit) (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -331,7 +331,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 70 (remaining gas: 1039182.185 units remaining) + - location: 70 (just consumed gas: 0) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -341,7 +341,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 70 (remaining gas: 1039182.170 units remaining) + - location: 70 (just consumed gas: 0.015) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -351,7 +351,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 76 (remaining gas: 1039181.954 units remaining) + - location: 76 (just consumed gas: 0.216) [ 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -361,7 +361,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 64 (remaining gas: 1039181.929 units remaining) + - location: 64 (just consumed gas: 0.025) [ 0x05030b 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -372,7 +372,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 79 (remaining gas: 1039181.894 units remaining) + - location: 79 (just consumed gas: 0.035) [ 0 (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -382,7 +382,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 80 (remaining gas: 1039181.884 units remaining) + - location: 80 (just consumed gas: 0.010) [ True (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -392,7 +392,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 81 (remaining gas: 1039181.884 units remaining) + - location: 81 (just consumed gas: 0) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None {} @@ -401,7 +401,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 81 (remaining gas: 1039181.869 units remaining) + - location: 81 (just consumed gas: 0.015) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None {} @@ -410,7 +410,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 87 (remaining gas: 1039181.859 units remaining) + - location: 87 (just consumed gas: 0.010) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None {} @@ -427,7 +427,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 88 (remaining gas: 1039181.849 units remaining) + - location: 88 (just consumed gas: 0.010) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -437,7 +437,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 89 (remaining gas: 1039181.849 units remaining) + - location: 89 (just consumed gas: 0) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None {} @@ -446,7 +446,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 91 (remaining gas: 1039181.839 units remaining) + - location: 91 (just consumed gas: 0.010) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None {} @@ -455,7 +455,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 89 (remaining gas: 1039181.814 units remaining) + - location: 89 (just consumed gas: 0.025) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None @@ -465,7 +465,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 92 (remaining gas: 1039180.913 units remaining) + - location: 92 (just consumed gas: 0.901) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None @@ -475,7 +475,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 93 (remaining gas: 1039180.913 units remaining) + - location: 93 (just consumed gas: 0) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None {} @@ -484,7 +484,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 95 (remaining gas: 1039180.012 units remaining) + - location: 95 (just consumed gas: 0.901) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair None {} @@ -493,7 +493,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 96 (remaining gas: 1039178.182 units remaining) + - location: 96 (just consumed gas: 1.830) [ (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe") (Pair None {} @@ -502,7 +502,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 99 (remaining gas: 1039178.182 units remaining) + - location: 99 (just consumed gas: 0) [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" (Pair None {} @@ -511,7 +511,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 99 (remaining gas: 1039178.167 units remaining) + - location: 99 (just consumed gas: 0.015) [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" (Pair None {} @@ -520,7 +520,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 105 (remaining gas: 1039177.266 units remaining) + - location: 105 (just consumed gas: 0.901) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair None {} @@ -529,7 +529,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 93 (remaining gas: 1039177.241 units remaining) + - location: 93 (just consumed gas: 0.025) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair None @@ -539,7 +539,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 108 (remaining gas: 1039177.205 units remaining) + - location: 108 (just consumed gas: 0.036) [ 0 (Pair None {} @@ -548,7 +548,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 109 (remaining gas: 1039177.195 units remaining) + - location: 109 (just consumed gas: 0.010) [ True (Pair None {} @@ -557,7 +557,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 110 (remaining gas: 1039177.195 units remaining) + - location: 110 (just consumed gas: 0) [ (Pair None {} {} @@ -565,7 +565,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 110 (remaining gas: 1039177.180 units remaining) + - location: 110 (just consumed gas: 0.015) [ (Pair None {} {} @@ -573,7 +573,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 116 (remaining gas: 1039177.170 units remaining) + - location: 116 (just consumed gas: 0.010) [ (Pair None {} {} @@ -588,7 +588,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 117 (remaining gas: 1039177.160 units remaining) + - location: 117 (just consumed gas: 0.010) [ None (Pair None {} @@ -597,7 +597,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 118 (remaining gas: 1039177.160 units remaining) + - location: 118 (just consumed gas: 0) [ (Pair None {} {} @@ -605,7 +605,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 120 (remaining gas: 1039177.150 units remaining) + - location: 120 (just consumed gas: 0.010) [ None (Pair {} {} @@ -613,7 +613,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 118 (remaining gas: 1039177.125 units remaining) + - location: 118 (just consumed gas: 0.025) [ None None (Pair {} @@ -622,7 +622,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 121 (remaining gas: 1039176.909 units remaining) + - location: 121 (just consumed gas: 0.216) [ 0x050306 None (Pair {} @@ -631,7 +631,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 122 (remaining gas: 1039176.909 units remaining) + - location: 122 (just consumed gas: 0) [ None (Pair {} {} @@ -639,7 +639,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 124 (remaining gas: 1039176.693 units remaining) + - location: 124 (just consumed gas: 0.216) [ 0x050306 (Pair {} {} @@ -647,7 +647,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 125 (remaining gas: 1039176.272 units remaining) + - location: 125 (just consumed gas: 0.421) [ (Some None) (Pair {} {} @@ -655,7 +655,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 129 (remaining gas: 1039176.272 units remaining) + - location: 129 (just consumed gas: 0) [ None (Pair {} {} @@ -663,7 +663,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 129 (remaining gas: 1039176.257 units remaining) + - location: 129 (just consumed gas: 0.015) [ None (Pair {} {} @@ -671,7 +671,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 135 (remaining gas: 1039176.041 units remaining) + - location: 135 (just consumed gas: 0.216) [ 0x050306 (Pair {} {} @@ -679,7 +679,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 122 (remaining gas: 1039176.016 units remaining) + - location: 122 (just consumed gas: 0.025) [ 0x050306 0x050306 (Pair {} @@ -688,7 +688,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 138 (remaining gas: 1039175.981 units remaining) + - location: 138 (just consumed gas: 0.035) [ 0 (Pair {} {} @@ -696,7 +696,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 139 (remaining gas: 1039175.971 units remaining) + - location: 139 (just consumed gas: 0.010) [ True (Pair {} {} @@ -704,21 +704,21 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 140 (remaining gas: 1039175.971 units remaining) + - location: 140 (just consumed gas: 0) [ (Pair {} {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 140 (remaining gas: 1039175.956 units remaining) + - location: 140 (just consumed gas: 0.015) [ (Pair {} {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 146 (remaining gas: 1039175.946 units remaining) + - location: 146 (just consumed gas: 0.010) [ (Pair {} {} (Pair 40 -10) @@ -731,7 +731,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 147 (remaining gas: 1039175.936 units remaining) + - location: 147 (just consumed gas: 0.010) [ {} (Pair {} {} @@ -739,294 +739,294 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 148 (remaining gas: 1039175.936 units remaining) + - location: 148 (just consumed gas: 0) [ (Pair {} {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 150 (remaining gas: 1039175.926 units remaining) + - location: 150 (just consumed gas: 0.010) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 148 (remaining gas: 1039175.901 units remaining) + - location: 148 (just consumed gas: 0.025) [ {} {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 151 (remaining gas: 1039175.685 units remaining) + - location: 151 (just consumed gas: 0.216) [ 0x050200000000 {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 152 (remaining gas: 1039175.685 units remaining) + - location: 152 (just consumed gas: 0) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 154 (remaining gas: 1039175.469 units remaining) + - location: 154 (just consumed gas: 0.216) [ 0x050200000000 (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 155 (remaining gas: 1039174.986 units remaining) + - location: 155 (just consumed gas: 0.483) [ (Some {}) (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 159 (remaining gas: 1039174.986 units remaining) + - location: 159 (just consumed gas: 0) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 159 (remaining gas: 1039174.971 units remaining) + - location: 159 (just consumed gas: 0.015) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 165 (remaining gas: 1039174.755 units remaining) + - location: 165 (just consumed gas: 0.216) [ 0x050200000000 (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 152 (remaining gas: 1039174.730 units remaining) + - location: 152 (just consumed gas: 0.025) [ 0x050200000000 0x050200000000 (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 168 (remaining gas: 1039174.695 units remaining) + - location: 168 (just consumed gas: 0.035) [ 0 (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 169 (remaining gas: 1039174.685 units remaining) + - location: 169 (just consumed gas: 0.010) [ True (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 170 (remaining gas: 1039174.685 units remaining) + - location: 170 (just consumed gas: 0) [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 170 (remaining gas: 1039174.670 units remaining) + - location: 170 (just consumed gas: 0.015) [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 176 (remaining gas: 1039174.660 units remaining) + - 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 (remaining gas: 1039174.650 units remaining) + - location: 177 (just consumed gas: 0.010) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 178 (remaining gas: 1039174.650 units remaining) + - location: 178 (just consumed gas: 0) [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 180 (remaining gas: 1039174.640 units remaining) + - location: 180 (just consumed gas: 0.010) [ {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 178 (remaining gas: 1039174.615 units remaining) + - location: 178 (just consumed gas: 0.025) [ {} {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 181 (remaining gas: 1039174.399 units remaining) + - location: 181 (just consumed gas: 0.216) [ 0x050200000000 {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 182 (remaining gas: 1039174.399 units remaining) + - location: 182 (just consumed gas: 0) [ {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 184 (remaining gas: 1039174.183 units remaining) + - location: 184 (just consumed gas: 0.216) [ 0x050200000000 (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 185 (remaining gas: 1039173.700 units remaining) + - location: 185 (just consumed gas: 0.483) [ (Some {}) (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 189 (remaining gas: 1039173.700 units remaining) + - location: 189 (just consumed gas: 0) [ {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 189 (remaining gas: 1039173.685 units remaining) + - location: 189 (just consumed gas: 0.015) [ {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 195 (remaining gas: 1039173.469 units remaining) + - location: 195 (just consumed gas: 0.216) [ 0x050200000000 (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 182 (remaining gas: 1039173.444 units remaining) + - location: 182 (just consumed gas: 0.025) [ 0x050200000000 0x050200000000 (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 198 (remaining gas: 1039173.409 units remaining) + - location: 198 (just consumed gas: 0.035) [ 0 (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 199 (remaining gas: 1039173.399 units remaining) + - location: 199 (just consumed gas: 0.010) [ True (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 200 (remaining gas: 1039173.399 units remaining) + - location: 200 (just consumed gas: 0) [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 200 (remaining gas: 1039173.384 units remaining) + - location: 200 (just consumed gas: 0.015) [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 206 (remaining gas: 1039173.374 units remaining) + - 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 (remaining gas: 1039173.364 units remaining) + - 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 (remaining gas: 1039173.364 units remaining) + - location: 208 (just consumed gas: 0) [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 210 (remaining gas: 1039173.354 units remaining) + - location: 210 (just consumed gas: 0.010) [ (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 208 (remaining gas: 1039173.329 units remaining) + - 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 (remaining gas: 1039172.631 units remaining) + - location: 211 (just consumed gas: 0.698) [ 0x0507070028004a (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 212 (remaining gas: 1039172.631 units remaining) + - location: 212 (just consumed gas: 0) [ (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 214 (remaining gas: 1039171.933 units remaining) + - location: 214 (just consumed gas: 0.698) [ 0x0507070028004a (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 215 (remaining gas: 1039171.230 units remaining) + - location: 215 (just consumed gas: 0.703) [ (Some (Pair 40 -10)) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 220 (remaining gas: 1039171.230 units remaining) + - location: 220 (just consumed gas: 0) [ (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 220 (remaining gas: 1039171.215 units remaining) + - location: 220 (just consumed gas: 0.015) [ (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 226 (remaining gas: 1039170.517 units remaining) + - location: 226 (just consumed gas: 0.698) [ 0x0507070028004a (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 212 (remaining gas: 1039170.492 units remaining) + - location: 212 (just consumed gas: 0.025) [ 0x0507070028004a 0x0507070028004a (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 229 (remaining gas: 1039170.457 units remaining) + - location: 229 (just consumed gas: 0.035) [ 0 (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 230 (remaining gas: 1039170.447 units remaining) + - location: 230 (just consumed gas: 0.010) [ True (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 231 (remaining gas: 1039170.447 units remaining) + - location: 231 (just consumed gas: 0) [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 231 (remaining gas: 1039170.432 units remaining) + - location: 231 (just consumed gas: 0.015) [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 237 (remaining gas: 1039170.422 units remaining) + - 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 (remaining gas: 1039170.412 units remaining) + - 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 (remaining gas: 1039170.412 units remaining) + - location: 239 (just consumed gas: 0) [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 241 (remaining gas: 1039170.402 units remaining) + - location: 241 (just consumed gas: 0.010) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 239 (remaining gas: 1039170.377 units remaining) + - 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 (remaining gas: 1039169.845 units remaining) + - location: 242 (just consumed gas: 0.532) [ 0x0505080095bbb0d70b (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 243 (remaining gas: 1039169.845 units remaining) + - location: 243 (just consumed gas: 0) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 245 (remaining gas: 1039169.313 units remaining) + - location: 245 (just consumed gas: 0.532) [ 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 246 (remaining gas: 1039168.669 units remaining) + - location: 246 (just consumed gas: 0.644) [ (Some (Right "2019-09-09T08:35:33Z")) (Pair {} { DUP ; DROP ; PACK }) ] - - location: 251 (remaining gas: 1039168.669 units remaining) + - location: 251 (just consumed gas: 0) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 251 (remaining gas: 1039168.654 units remaining) + - location: 251 (just consumed gas: 0.015) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 257 (remaining gas: 1039168.122 units remaining) + - location: 257 (just consumed gas: 0.532) [ 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 243 (remaining gas: 1039168.097 units remaining) + - location: 243 (just consumed gas: 0.025) [ 0x0505080095bbb0d70b 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 260 (remaining gas: 1039168.062 units remaining) + - location: 260 (just consumed gas: 0.035) [ 0 (Pair {} { DUP ; DROP ; PACK }) ] - - location: 261 (remaining gas: 1039168.052 units remaining) + - location: 261 (just consumed gas: 0.010) [ True (Pair {} { DUP ; DROP ; PACK }) ] - - location: 262 (remaining gas: 1039168.052 units remaining) + - location: 262 (just consumed gas: 0) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 262 (remaining gas: 1039168.037 units remaining) + - location: 262 (just consumed gas: 0.015) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 268 (remaining gas: 1039168.027 units remaining) + - location: 268 (just consumed gas: 0.010) [ (Pair {} { DUP ; DROP ; PACK }) (Pair {} { DUP ; DROP ; PACK }) ] - - location: 269 (remaining gas: 1039168.017 units remaining) + - location: 269 (just consumed gas: 0.010) [ {} (Pair {} { DUP ; DROP ; PACK }) ] - - location: 270 (remaining gas: 1039168.017 units remaining) + - location: 270 (just consumed gas: 0) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 272 (remaining gas: 1039168.007 units remaining) + - location: 272 (just consumed gas: 0.010) [ {} { DUP ; DROP ; PACK } ] - - location: 270 (remaining gas: 1039167.982 units remaining) + - location: 270 (just consumed gas: 0.025) [ {} {} { DUP ; DROP ; PACK } ] - - location: 273 (remaining gas: 1039167.766 units remaining) + - location: 273 (just consumed gas: 0.216) [ 0x050200000000 {} { DUP ; DROP ; PACK } ] - - location: 274 (remaining gas: 1039167.766 units remaining) + - location: 274 (just consumed gas: 0) [ {} { DUP ; DROP ; PACK } ] - - location: 276 (remaining gas: 1039167.550 units remaining) + - location: 276 (just consumed gas: 0.216) [ 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 277 (remaining gas: 1039167.067 units remaining) + - location: 277 (just consumed gas: 0.483) [ (Some {}) { DUP ; DROP ; PACK } ] - - location: 282 (remaining gas: 1039167.067 units remaining) + - location: 282 (just consumed gas: 0) [ {} { DUP ; DROP ; PACK } ] - - location: 282 (remaining gas: 1039167.052 units remaining) + - location: 282 (just consumed gas: 0.015) [ {} { DUP ; DROP ; PACK } ] - - location: 288 (remaining gas: 1039166.836 units remaining) + - location: 288 (just consumed gas: 0.216) [ 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 274 (remaining gas: 1039166.811 units remaining) + - location: 274 (just consumed gas: 0.025) [ 0x050200000000 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 291 (remaining gas: 1039166.776 units remaining) + - location: 291 (just consumed gas: 0.035) [ 0 { DUP ; DROP ; PACK } ] - - location: 292 (remaining gas: 1039166.766 units remaining) + - location: 292 (just consumed gas: 0.010) [ True { DUP ; DROP ; PACK } ] - - location: 293 (remaining gas: 1039166.766 units remaining) + - location: 293 (just consumed gas: 0) [ { DUP ; DROP ; PACK } ] - - location: 293 (remaining gas: 1039166.751 units remaining) + - location: 293 (just consumed gas: 0.015) [ { DUP ; DROP ; PACK } ] - - location: 299 (remaining gas: 1039166.741 units remaining) + - location: 299 (just consumed gas: 0.010) [ { DUP ; DROP ; PACK } { DUP ; DROP ; PACK } ] - - location: 300 (remaining gas: 1039165.612 units remaining) + - location: 300 (just consumed gas: 1.129) [ 0x05020000000603210320030c { DUP ; DROP ; PACK } ] - - location: 301 (remaining gas: 1039165.612 units remaining) + - location: 301 (just consumed gas: 0) [ { DUP ; DROP ; PACK } ] - - location: 303 (remaining gas: 1039164.483 units remaining) + - location: 303 (just consumed gas: 1.129) [ 0x05020000000603210320030c ] - - location: 304 (remaining gas: 1039162.397 units remaining) + - location: 304 (just consumed gas: 2.086) [ (Some { DUP ; DROP ; PACK }) ] - - location: 309 (remaining gas: 1039162.397 units remaining) + - location: 309 (just consumed gas: 0) [ { DUP ; DROP ; PACK } ] - - location: 309 (remaining gas: 1039162.382 units remaining) + - location: 309 (just consumed gas: 0.015) [ { DUP ; DROP ; PACK } ] - - location: 315 (remaining gas: 1039161.253 units remaining) + - location: 315 (just consumed gas: 1.129) [ 0x05020000000603210320030c ] - - location: 301 (remaining gas: 1039161.228 units remaining) + - location: 301 (just consumed gas: 0.025) [ 0x05020000000603210320030c 0x05020000000603210320030c ] - - location: 318 (remaining gas: 1039161.193 units remaining) + - location: 318 (just consumed gas: 0.035) [ 0 ] - - location: 319 (remaining gas: 1039161.183 units remaining) + - location: 319 (just consumed gas: 0.010) [ True ] - - location: 320 (remaining gas: 1039161.183 units remaining) + - location: 320 (just consumed gas: 0) [ ] - - location: 320 (remaining gas: 1039161.168 units remaining) + - location: 320 (just consumed gas: 0.015) [ ] - - location: 326 (remaining gas: 1039161.158 units remaining) + - location: 326 (just consumed gas: 0.010) [ Unit ] - - location: 327 (remaining gas: 1039161.148 units remaining) + - location: 327 (just consumed gas: 0.010) [ {} Unit ] - - location: 329 (remaining gas: 1039161.138 units remaining) + - location: 329 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out index 4d93ce72b796beb4427a87bfadd9deed6946c75d..1fe958ce9ae3fdf8eae96ceb9949bb6094b0d755 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039994.499 units remaining) + - location: 12 (just consumed gas: 5.501) [ (Pair (Pair False False) None) ] - - location: 12 (remaining gas: 1039994.489 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair False False) ] - - location: 13 (remaining gas: 1039994.479 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some (Pair False False)) ] - - location: 14 (remaining gas: 1039994.469 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some (Pair False False)) ] - - location: 16 (remaining gas: 1039994.459 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some (Pair False False))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out index c6633e1a232da68d1b1f6de5e3a593a92f1fc727..b301011f6fe65dcddf8d7e75a2a93e350d7702b8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039994.499 units remaining) + - location: 12 (just consumed gas: 5.501) [ (Pair (Pair False True) None) ] - - location: 12 (remaining gas: 1039994.489 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair False True) ] - - location: 13 (remaining gas: 1039994.479 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some (Pair False True)) ] - - location: 14 (remaining gas: 1039994.469 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some (Pair False True)) ] - - location: 16 (remaining gas: 1039994.459 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some (Pair False True))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out index 34a143823a1b5fc5febdb50b7abfc7286d3cb6f4..d2ff13849396de32891d11861cb2fb54d790162f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039994.499 units remaining) + - location: 12 (just consumed gas: 5.501) [ (Pair (Pair True False) None) ] - - location: 12 (remaining gas: 1039994.489 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair True False) ] - - location: 13 (remaining gas: 1039994.479 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some (Pair True False)) ] - - location: 14 (remaining gas: 1039994.469 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some (Pair True False)) ] - - location: 16 (remaining gas: 1039994.459 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some (Pair True False))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out index eacc04badc89b558ccc5496abb7724bc6c49333d..34c53ca806aafed2cb81a8ae07aae904ac1104da 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039994.499 units remaining) + - location: 12 (just consumed gas: 5.501) [ (Pair (Pair True True) None) ] - - location: 12 (remaining gas: 1039994.489 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair True True) ] - - location: 13 (remaining gas: 1039994.479 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some (Pair True True)) ] - - location: 14 (remaining gas: 1039994.469 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some (Pair True True)) ] - - location: 16 (remaining gas: 1039994.459 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some (Pair True True))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out index 2a5a9c0d865dc1d2b7c2f6eeb77bb09c26d648c7..45596fcbca6a2e0b82c52fcccb6bf91f7cfb24b0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out @@ -7,41 +7,41 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039990.979 units remaining) + - location: 7 (just consumed gas: 9.021) [ (Pair 38 14) ] - - location: 7 (remaining gas: 1039990.969 units remaining) + - location: 7 (just consumed gas: 0.010) [ { UNPAIR ; ADD } (Pair 38 14) ] - - location: 15 (remaining gas: 1039990.959 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair 38 14) { UNPAIR ; ADD } ] - - location: 16 (remaining gas: 1039990.949 units remaining) + - location: 16 (just consumed gas: 0.010) [ 38 14 { UNPAIR ; ADD } ] - - location: 17 (remaining gas: 1039990.949 units remaining) + - location: 17 (just consumed gas: 0) [ 14 { UNPAIR ; ADD } ] - - location: 19 (remaining gas: 1039990.548 units remaining) + - location: 19 (just consumed gas: 0.401) [ { PUSH nat 14 ; PAIR ; { UNPAIR ; ADD } } ] - - location: 17 (remaining gas: 1039990.523 units remaining) + - location: 17 (just consumed gas: 0.025) [ 38 { PUSH nat 14 ; PAIR ; { UNPAIR ; ADD } } ] - - location: 12 (remaining gas: 1039990.513 units remaining) + - location: 12 (just consumed gas: 0.010) [ 14 38 ] - - location: 12 (remaining gas: 1039990.503 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair 14 38) ] - - location: 13 (remaining gas: 1039990.493 units remaining) + - location: 13 (just consumed gas: 0.010) [ 14 38 ] - - location: 14 (remaining gas: 1039990.458 units remaining) + - location: 14 (just consumed gas: 0.035) [ 52 ] - - location: 20 (remaining gas: 1039990.433 units remaining) + - location: 20 (just consumed gas: 0.025) [ 52 ] - - location: 21 (remaining gas: 1039990.423 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} 52 ] - - location: 23 (remaining gas: 1039990.413 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} 52) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out index 00b0d4a1f6b8de23e8c3f8f1998c6142b9aca061..a52a140a58f773165fc846045930d405decabf32 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out @@ -7,53 +7,53 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039982.991 units remaining) + - location: 8 (just consumed gas: 17.009) [ (Pair 4 { 0 ; 1 ; 2 ; 3 }) ] - - location: 8 (remaining gas: 1039982.981 units remaining) + - location: 8 (just consumed gas: 0.010) [ 4 { 0 ; 1 ; 2 ; 3 } ] - - location: 9 (remaining gas: 1039982.971 units remaining) + - location: 9 (just consumed gas: 0.010) [ { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } 4 { 0 ; 1 ; 2 ; 3 } ] - - location: 23 (remaining gas: 1039982.961 units remaining) + - location: 23 (just consumed gas: 0.010) [ 4 { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } { 0 ; 1 ; 2 ; 3 } ] - - location: 24 (remaining gas: 1039982.560 units remaining) + - location: 24 (just consumed gas: 0.401) [ { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } { 0 ; 1 ; 2 ; 3 } ] - - location: 25 (remaining gas: 1039982.550 units remaining) + - location: 25 (just consumed gas: 0.010) [ 3 { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } { 0 ; 1 ; 2 ; 3 } ] - - location: 28 (remaining gas: 1039982.149 units remaining) + - 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 (remaining gas: 1039982.139 units remaining) + - 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 (remaining gas: 1039982.139 units remaining) + - location: 30 (just consumed gas: 0) [ 0 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039982.139 units remaining) + - location: 32 (just consumed gas: 0) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (remaining gas: 1039982.129 units remaining) + - 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 (remaining gas: 1039982.104 units remaining) + - location: 32 (just consumed gas: 0.025) [ 0 { PUSH int 3 ; PAIR ; @@ -61,55 +61,55 @@ trace { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 16 (remaining gas: 1039982.094 units remaining) + - location: 16 (just consumed gas: 0.010) [ 3 0 ] - - location: 16 (remaining gas: 1039982.084 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 3 0) ] - - location: 16 (remaining gas: 1039982.074 units remaining) + - location: 16 (just consumed gas: 0.010) [ 4 (Pair 3 0) ] - - location: 16 (remaining gas: 1039982.064 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 4 3 0) ] - - location: 17 (remaining gas: 1039982.054 units remaining) + - location: 17 (just consumed gas: 0.010) [ 4 (Pair 3 0) ] - - location: 18 (remaining gas: 1039982.054 units remaining) + - location: 18 (just consumed gas: 0) [ (Pair 3 0) ] - - location: 20 (remaining gas: 1039982.044 units remaining) + - location: 20 (just consumed gas: 0.010) [ 3 0 ] - - location: 18 (remaining gas: 1039982.019 units remaining) + - location: 18 (just consumed gas: 0.025) [ 4 3 0 ] - - location: 21 (remaining gas: 1039981.984 units remaining) + - location: 21 (just consumed gas: 0.035) [ 7 0 ] - - location: 22 (remaining gas: 1039981.928 units remaining) + - location: 22 (just consumed gas: 0.056) [ 0 ] - - location: 35 (remaining gas: 1039981.903 units remaining) + - location: 35 (just consumed gas: 0.025) [ 0 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039981.888 units remaining) + - location: 30 (just consumed gas: 0.015) [ 1 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039981.888 units remaining) + - location: 32 (just consumed gas: 0) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (remaining gas: 1039981.878 units remaining) + - 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 (remaining gas: 1039981.853 units remaining) + - location: 32 (just consumed gas: 0.025) [ 1 { PUSH int 3 ; PAIR ; @@ -117,55 +117,55 @@ trace { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 16 (remaining gas: 1039981.843 units remaining) + - location: 16 (just consumed gas: 0.010) [ 3 1 ] - - location: 16 (remaining gas: 1039981.833 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 3 1) ] - - location: 16 (remaining gas: 1039981.823 units remaining) + - location: 16 (just consumed gas: 0.010) [ 4 (Pair 3 1) ] - - location: 16 (remaining gas: 1039981.813 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 4 3 1) ] - - location: 17 (remaining gas: 1039981.803 units remaining) + - location: 17 (just consumed gas: 0.010) [ 4 (Pair 3 1) ] - - location: 18 (remaining gas: 1039981.803 units remaining) + - location: 18 (just consumed gas: 0) [ (Pair 3 1) ] - - location: 20 (remaining gas: 1039981.793 units remaining) + - location: 20 (just consumed gas: 0.010) [ 3 1 ] - - location: 18 (remaining gas: 1039981.768 units remaining) + - location: 18 (just consumed gas: 0.025) [ 4 3 1 ] - - location: 21 (remaining gas: 1039981.733 units remaining) + - location: 21 (just consumed gas: 0.035) [ 7 1 ] - - location: 22 (remaining gas: 1039981.674 units remaining) + - location: 22 (just consumed gas: 0.059) [ 7 ] - - location: 35 (remaining gas: 1039981.649 units remaining) + - location: 35 (just consumed gas: 0.025) [ 7 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039981.634 units remaining) + - location: 30 (just consumed gas: 0.015) [ 2 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039981.634 units remaining) + - location: 32 (just consumed gas: 0) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (remaining gas: 1039981.624 units remaining) + - 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 (remaining gas: 1039981.599 units remaining) + - location: 32 (just consumed gas: 0.025) [ 2 { PUSH int 3 ; PAIR ; @@ -173,55 +173,55 @@ trace { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 16 (remaining gas: 1039981.589 units remaining) + - location: 16 (just consumed gas: 0.010) [ 3 2 ] - - location: 16 (remaining gas: 1039981.579 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 3 2) ] - - location: 16 (remaining gas: 1039981.569 units remaining) + - location: 16 (just consumed gas: 0.010) [ 4 (Pair 3 2) ] - - location: 16 (remaining gas: 1039981.559 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 4 3 2) ] - - location: 17 (remaining gas: 1039981.549 units remaining) + - location: 17 (just consumed gas: 0.010) [ 4 (Pair 3 2) ] - - location: 18 (remaining gas: 1039981.549 units remaining) + - location: 18 (just consumed gas: 0) [ (Pair 3 2) ] - - location: 20 (remaining gas: 1039981.539 units remaining) + - location: 20 (just consumed gas: 0.010) [ 3 2 ] - - location: 18 (remaining gas: 1039981.514 units remaining) + - location: 18 (just consumed gas: 0.025) [ 4 3 2 ] - - location: 21 (remaining gas: 1039981.479 units remaining) + - location: 21 (just consumed gas: 0.035) [ 7 2 ] - - location: 22 (remaining gas: 1039981.420 units remaining) + - location: 22 (just consumed gas: 0.059) [ 14 ] - - location: 35 (remaining gas: 1039981.395 units remaining) + - location: 35 (just consumed gas: 0.025) [ 14 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039981.380 units remaining) + - location: 30 (just consumed gas: 0.015) [ 3 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039981.380 units remaining) + - location: 32 (just consumed gas: 0) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (remaining gas: 1039981.370 units remaining) + - 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 (remaining gas: 1039981.345 units remaining) + - location: 32 (just consumed gas: 0.025) [ 3 { PUSH int 3 ; PAIR ; @@ -229,54 +229,54 @@ trace { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 16 (remaining gas: 1039981.335 units remaining) + - location: 16 (just consumed gas: 0.010) [ 3 3 ] - - location: 16 (remaining gas: 1039981.325 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 3 3) ] - - location: 16 (remaining gas: 1039981.315 units remaining) + - location: 16 (just consumed gas: 0.010) [ 4 (Pair 3 3) ] - - location: 16 (remaining gas: 1039981.305 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 4 3 3) ] - - location: 17 (remaining gas: 1039981.295 units remaining) + - location: 17 (just consumed gas: 0.010) [ 4 (Pair 3 3) ] - - location: 18 (remaining gas: 1039981.295 units remaining) + - location: 18 (just consumed gas: 0) [ (Pair 3 3) ] - - location: 20 (remaining gas: 1039981.285 units remaining) + - location: 20 (just consumed gas: 0.010) [ 3 3 ] - - location: 18 (remaining gas: 1039981.260 units remaining) + - location: 18 (just consumed gas: 0.025) [ 4 3 3 ] - - location: 21 (remaining gas: 1039981.225 units remaining) + - location: 21 (just consumed gas: 0.035) [ 7 3 ] - - location: 22 (remaining gas: 1039981.166 units remaining) + - location: 22 (just consumed gas: 0.059) [ 21 ] - - location: 35 (remaining gas: 1039981.141 units remaining) + - location: 35 (just consumed gas: 0.025) [ 21 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039981.126 units remaining) + - 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 (remaining gas: 1039981.126 units remaining) + - location: 36 (just consumed gas: 0) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 38 (remaining gas: 1039981.116 units remaining) + - location: 38 (just consumed gas: 0.010) [ ] - - location: 36 (remaining gas: 1039981.091 units remaining) + - location: 36 (just consumed gas: 0.025) [ { 0 ; 7 ; 14 ; 21 } ] - - location: 39 (remaining gas: 1039981.081 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} { 0 ; 7 ; 14 ; 21 } ] - - location: 41 (remaining gas: 1039981.071 units remaining) + - location: 41 (just consumed gas: 0.010) [ (Pair {} { 0 ; 7 ; 14 ; 21 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out index d5d0e691f0a0a14d4f69aa456769e92aaae12b7c..aaf8d46c147a1c20fd0a8ec4eb8609d1445d4093 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.486 units remaining) + - location: 8 (just consumed gas: 5.514) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039994.476 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (remaining gas: 1039994.466 units remaining) + - location: 9 (just consumed gas: 0.010) [ 300 ] - - location: 12 (remaining gas: 1039994.456 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Some 300) ] - - location: 13 (remaining gas: 1039994.446 units remaining) + - location: 13 (just consumed gas: 0.010) [ {} (Some 300) ] - - location: 15 (remaining gas: 1039994.436 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair {} (Some 300)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" index cd6c770f9a0da6072d691f79ebbde8d7e9b50537..994f5d084083a0917efdb97ac76d22dcab1ce372 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.672 units remaining) + - location: 9 (just consumed gas: 7.328) [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (remaining gas: 1039992.662 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } ] - - location: 10 (remaining gas: 1039992.652 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "c" ; "b" ; "a" } ] - - location: 12 (remaining gas: 1039992.642 units remaining) + - location: 12 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } {} ] - - location: 13 (remaining gas: 1039992.642 units remaining) + - location: 13 (just consumed gas: 0) [ "c" {} ] - - location: 15 (remaining gas: 1039992.632 units remaining) + - location: 15 (just consumed gas: 0.010) [ { "c" } ] - - location: 13 (remaining gas: 1039992.617 units remaining) + - location: 13 (just consumed gas: 0.015) [ "b" { "c" } ] - - location: 15 (remaining gas: 1039992.607 units remaining) + - location: 15 (just consumed gas: 0.010) [ { "b" ; "c" } ] - - location: 13 (remaining gas: 1039992.592 units remaining) + - location: 13 (just consumed gas: 0.015) [ "a" { "b" ; "c" } ] - - location: 15 (remaining gas: 1039992.582 units remaining) + - location: 15 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 13 (remaining gas: 1039992.567 units remaining) + - location: 13 (just consumed gas: 0.015) [ { "a" ; "b" ; "c" } ] - - location: 16 (remaining gas: 1039992.557 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039992.547 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} { "a" ; "b" ; "c" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" index 8fbf218647073d57332eb05f4879c26f729762b5..0736ff8f582cf03935964f448674a55c5a51806d 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.044 units remaining) + - location: 9 (just consumed gas: 6.956) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039993.034 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (remaining gas: 1039993.024 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} {} ] - - location: 12 (remaining gas: 1039993.014 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (remaining gas: 1039993.014 units remaining) + - location: 13 (just consumed gas: 0) [ {} ] - - location: 16 (remaining gas: 1039993.004 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 18 (remaining gas: 1039992.994 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" index 3008e4930c92afce8ef8309e3fa2f4fdc8c7856f..6ad1adfa673ca45cbfe1f653dc9790fca04fcafe 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" @@ -7,125 +7,125 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039985.842 units remaining) + - location: 9 (just consumed gas: 14.158) [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (remaining gas: 1039985.832 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } ] - - location: 10 (remaining gas: 1039985.822 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "c" ; "b" ; "a" } ] - - location: 12 (remaining gas: 1039985.812 units remaining) + - location: 12 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } {} ] - - location: 13 (remaining gas: 1039985.802 units remaining) + - location: 13 (just consumed gas: 0.010) [ True { "c" ; "b" ; "a" } {} ] - - location: 33 (remaining gas: 1039985.802 units remaining) + - location: 33 (just consumed gas: 0) [ { "c" ; "b" ; "a" } {} ] - - location: 18 (remaining gas: 1039985.802 units remaining) + - location: 18 (just consumed gas: 0) [ "c" { "b" ; "a" } {} ] - - location: 20 (remaining gas: 1039985.792 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "b" ; "a" } "c" {} ] - - location: 21 (remaining gas: 1039985.792 units remaining) + - location: 21 (just consumed gas: 0) [ "c" {} ] - - location: 23 (remaining gas: 1039985.782 units remaining) + - location: 23 (just consumed gas: 0.010) [ { "c" } ] - - location: 21 (remaining gas: 1039985.757 units remaining) + - location: 21 (just consumed gas: 0.025) [ { "b" ; "a" } { "c" } ] - - location: 24 (remaining gas: 1039985.747 units remaining) + - location: 24 (just consumed gas: 0.010) [ True { "b" ; "a" } { "c" } ] - - location: 18 (remaining gas: 1039985.732 units remaining) + - location: 18 (just consumed gas: 0.015) [ True { "b" ; "a" } { "c" } ] - - location: 33 (remaining gas: 1039985.717 units remaining) + - location: 33 (just consumed gas: 0.015) [ { "b" ; "a" } { "c" } ] - - location: 18 (remaining gas: 1039985.717 units remaining) + - location: 18 (just consumed gas: 0) [ "b" { "a" } { "c" } ] - - location: 20 (remaining gas: 1039985.707 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "a" } "b" { "c" } ] - - location: 21 (remaining gas: 1039985.707 units remaining) + - location: 21 (just consumed gas: 0) [ "b" { "c" } ] - - location: 23 (remaining gas: 1039985.697 units remaining) + - location: 23 (just consumed gas: 0.010) [ { "b" ; "c" } ] - - location: 21 (remaining gas: 1039985.672 units remaining) + - location: 21 (just consumed gas: 0.025) [ { "a" } { "b" ; "c" } ] - - location: 24 (remaining gas: 1039985.662 units remaining) + - location: 24 (just consumed gas: 0.010) [ True { "a" } { "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.647 units remaining) + - location: 18 (just consumed gas: 0.015) [ True { "a" } { "b" ; "c" } ] - - location: 33 (remaining gas: 1039985.632 units remaining) + - location: 33 (just consumed gas: 0.015) [ { "a" } { "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.632 units remaining) + - location: 18 (just consumed gas: 0) [ "a" {} { "b" ; "c" } ] - - location: 20 (remaining gas: 1039985.622 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} "a" { "b" ; "c" } ] - - location: 21 (remaining gas: 1039985.622 units remaining) + - location: 21 (just consumed gas: 0) [ "a" { "b" ; "c" } ] - - location: 23 (remaining gas: 1039985.612 units remaining) + - location: 23 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 21 (remaining gas: 1039985.587 units remaining) + - location: 21 (just consumed gas: 0.025) [ {} { "a" ; "b" ; "c" } ] - - location: 24 (remaining gas: 1039985.577 units remaining) + - location: 24 (just consumed gas: 0.010) [ True {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.562 units remaining) + - location: 18 (just consumed gas: 0.015) [ True {} { "a" ; "b" ; "c" } ] - - location: 33 (remaining gas: 1039985.547 units remaining) + - location: 33 (just consumed gas: 0.015) [ {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.547 units remaining) + - location: 18 (just consumed gas: 0) [ { "a" ; "b" ; "c" } ] - - location: 28 (remaining gas: 1039985.537 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 30 (remaining gas: 1039985.527 units remaining) + - location: 30 (just consumed gas: 0.010) [ False {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.512 units remaining) + - location: 18 (just consumed gas: 0.015) [ False {} { "a" ; "b" ; "c" } ] - - location: 33 (remaining gas: 1039985.497 units remaining) + - location: 33 (just consumed gas: 0.015) [ {} { "a" ; "b" ; "c" } ] - - location: 33 (remaining gas: 1039985.487 units remaining) + - location: 33 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 34 (remaining gas: 1039985.477 units remaining) + - location: 34 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 36 (remaining gas: 1039985.467 units remaining) + - location: 36 (just consumed gas: 0.010) [ (Pair {} { "a" ; "b" ; "c" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" index caeab38894b7a25ff1a356100de6b256b84c29fe..d1d70016e2a194eb1ccb703a680aa5c5b6377eb4 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" @@ -7,44 +7,44 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039986.214 units remaining) + - location: 9 (just consumed gas: 13.786) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039986.204 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (remaining gas: 1039986.194 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} {} ] - - location: 12 (remaining gas: 1039986.184 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (remaining gas: 1039986.174 units remaining) + - location: 13 (just consumed gas: 0.010) [ True {} {} ] - - location: 33 (remaining gas: 1039986.174 units remaining) + - location: 33 (just consumed gas: 0) [ {} {} ] - - location: 18 (remaining gas: 1039986.174 units remaining) + - location: 18 (just consumed gas: 0) [ {} ] - - location: 28 (remaining gas: 1039986.164 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} {} ] - - location: 30 (remaining gas: 1039986.154 units remaining) + - location: 30 (just consumed gas: 0.010) [ False {} {} ] - - location: 18 (remaining gas: 1039986.139 units remaining) + - location: 18 (just consumed gas: 0.015) [ False {} {} ] - - location: 33 (remaining gas: 1039986.124 units remaining) + - location: 33 (just consumed gas: 0.015) [ {} {} ] - - location: 33 (remaining gas: 1039986.114 units remaining) + - location: 33 (just consumed gas: 0.010) [ {} ] - - location: 34 (remaining gas: 1039986.104 units remaining) + - location: 34 (just consumed gas: 0.010) [ {} {} ] - - location: 36 (remaining gas: 1039986.094 units remaining) + - location: 36 (just consumed gas: 0.010) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out index 90fc736a79f2c26de4dbb9bc533cc095938b54bd..e1e33226b4771ff90fe5f2bf49bc262add64a116 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039995.642 units remaining) + - location: 8 (just consumed gas: 4.358) [ (Pair Unit {}) ] - - location: 8 (remaining gas: 1039995.632 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (remaining gas: 1039995.332 units remaining) + - location: 9 (just consumed gas: 0.300) [ {} ] - - location: 11 (remaining gas: 1039995.322 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (remaining gas: 1039995.312 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out index dbd11c0f62e84c5cc6d17512634f91e53d82a3e1..e89a4750e655ebb24235fd9d544c7bf904e9ce9a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out @@ -7,40 +7,40 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039986.274 units remaining) + - location: 7 (just consumed gas: 13.726) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039986.264 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039986.254 units remaining) + - location: 8 (just consumed gas: 0.010) [ { DROP ; SELF_ADDRESS } ] - - location: 14 (remaining gas: 1039986.244 units remaining) + - location: 14 (just consumed gas: 0.010) [ Unit { DROP ; SELF_ADDRESS } ] - - location: 12 (remaining gas: 1039986.234 units remaining) + - location: 12 (just consumed gas: 0.010) [ ] - - location: 13 (remaining gas: 1039986.224 units remaining) + - location: 13 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 15 (remaining gas: 1039986.199 units remaining) + - location: 15 (just consumed gas: 0.025) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 16 (remaining gas: 1039986.189 units remaining) + - location: 16 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 17 (remaining gas: 1039986.179 units remaining) + - location: 17 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 20 (remaining gas: 1039986.143 units remaining) + - location: 20 (just consumed gas: 0.036) [ 0 ] - - location: 21 (remaining gas: 1039986.133 units remaining) + - location: 21 (just consumed gas: 0.010) [ True ] - - location: 22 (remaining gas: 1039986.133 units remaining) + - location: 22 (just consumed gas: 0) [ ] - - location: 22 (remaining gas: 1039986.118 units remaining) + - location: 22 (just consumed gas: 0.015) [ ] - - location: 28 (remaining gas: 1039986.108 units remaining) + - location: 28 (just consumed gas: 0.010) [ Unit ] - - location: 29 (remaining gas: 1039986.098 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} Unit ] - - location: 31 (remaining gas: 1039986.088 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out index 8341296ac0d4c174afb89bbabcf81d70d1267f6e..3252a4f1a97d348319fe572be76f3bb23c3d9723 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out @@ -7,41 +7,41 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039984.485 units remaining) + - location: 13 (just consumed gas: 15.515) [ (Pair (Right (Left Unit)) Unit) ] - - location: 13 (remaining gas: 1039984.475 units remaining) + - location: 13 (just consumed gas: 0.010) [ ] - - location: 14 (remaining gas: 1039984.465 units remaining) + - location: 14 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 15 (remaining gas: 1039984.455 units remaining) + - location: 15 (just consumed gas: 0.010) [ ] - - location: 16 (remaining gas: 1039984.445 units remaining) + - location: 16 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 17 (remaining gas: 1039984.435 units remaining) + - location: 17 (just consumed gas: 0.010) [ ] - - location: 18 (remaining gas: 1039984.425 units remaining) + - location: 18 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 19 (remaining gas: 1039983.919 units remaining) + - location: 19 (just consumed gas: 0.506) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 20 (remaining gas: 1039983.909 units remaining) + - location: 20 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 21 (remaining gas: 1039983.403 units remaining) + - location: 21 (just consumed gas: 0.506) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (remaining gas: 1039983.368 units remaining) + - location: 24 (just consumed gas: 0.035) [ 0 ] - - location: 25 (remaining gas: 1039983.358 units remaining) + - location: 25 (just consumed gas: 0.010) [ True ] - - location: 26 (remaining gas: 1039983.358 units remaining) + - location: 26 (just consumed gas: 0) [ ] - - location: 26 (remaining gas: 1039983.343 units remaining) + - location: 26 (just consumed gas: 0.015) [ ] - - location: 32 (remaining gas: 1039983.333 units remaining) + - location: 32 (just consumed gas: 0.010) [ Unit ] - - location: 33 (remaining gas: 1039983.323 units remaining) + - location: 33 (just consumed gas: 0.010) [ {} Unit ] - - location: 35 (remaining gas: 1039983.313 units remaining) + - location: 35 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out index abe2cac12adea3ea1cc9950bdadf529625e01195..fcd26e2aea6d1138acaf90caae6357868b704405 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out @@ -7,87 +7,87 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039959.876 units remaining) + - location: 13 (just consumed gas: 40.124) [ (Pair (Left (Left 0)) Unit) ] - - location: 13 (remaining gas: 1039959.866 units remaining) + - location: 13 (just consumed gas: 0.010) [ ] - - location: 14 (remaining gas: 1039959.856 units remaining) + - location: 14 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 15 (remaining gas: 1039959.340 units remaining) + - location: 15 (just consumed gas: 0.516) [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 16 (remaining gas: 1039959.330 units remaining) + - location: 16 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 17 (remaining gas: 1039958.824 units remaining) + - location: 17 (just consumed gas: 0.506) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 18 (remaining gas: 1039958.814 units remaining) + - location: 18 (just consumed gas: 0.010) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 19 (remaining gas: 1039958.814 units remaining) + - location: 19 (just consumed gas: 0) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 21 (remaining gas: 1039958.804 units remaining) + - location: 21 (just consumed gas: 0.010) [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 19 (remaining gas: 1039958.779 units remaining) + - location: 19 (just consumed gas: 0.025) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (remaining gas: 1039958.744 units remaining) + - location: 24 (just consumed gas: 0.035) [ -1 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 25 (remaining gas: 1039958.734 units remaining) + - location: 25 (just consumed gas: 0.010) [ True 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (remaining gas: 1039958.734 units remaining) + - location: 26 (just consumed gas: 0) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (remaining gas: 1039958.719 units remaining) + - location: 26 (just consumed gas: 0.015) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 32 (remaining gas: 1039958.709 units remaining) + - location: 32 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 33 (remaining gas: 1039958.203 units remaining) + - location: 33 (just consumed gas: 0.506) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 36 (remaining gas: 1039958.168 units remaining) + - location: 36 (just consumed gas: 0.035) [ 0 ] - - location: 37 (remaining gas: 1039958.158 units remaining) + - location: 37 (just consumed gas: 0.010) [ True ] - - location: 38 (remaining gas: 1039958.158 units remaining) + - location: 38 (just consumed gas: 0) [ ] - - location: 38 (remaining gas: 1039958.143 units remaining) + - location: 38 (just consumed gas: 0.015) [ ] - - location: 44 (remaining gas: 1039958.133 units remaining) + - location: 44 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 48 (remaining gas: 1039958.123 units remaining) + - location: 48 (just consumed gas: 0.010) [ ] - - location: 49 (remaining gas: 1039958.113 units remaining) + - location: 49 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%B" ] - - location: 53 (remaining gas: 1039958.103 units remaining) + - location: 53 (just consumed gas: 0.010) [ ] - - location: 54 (remaining gas: 1039958.093 units remaining) + - location: 54 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%maybe_C" ] - - location: 60 (remaining gas: 1039958.083 units remaining) + - location: 60 (just consumed gas: 0.010) [ ] - - location: 61 (remaining gas: 1039958.073 units remaining) + - location: 61 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%Z" ] - - location: 65 (remaining gas: 1039958.063 units remaining) + - location: 65 (just consumed gas: 0.010) [ ] - - location: 66 (remaining gas: 1039958.053 units remaining) + - location: 66 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 76 (remaining gas: 1039958.043 units remaining) + - location: 76 (just consumed gas: 0.010) [ ] - - location: 77 (remaining gas: 1039958.033 units remaining) + - location: 77 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 87 (remaining gas: 1039958.023 units remaining) + - location: 87 (just consumed gas: 0.010) [ ] - - location: 88 (remaining gas: 1039958.013 units remaining) + - location: 88 (just consumed gas: 0.010) [ Unit ] - - location: 89 (remaining gas: 1039958.003 units remaining) + - location: 89 (just consumed gas: 0.010) [ {} Unit ] - - location: 91 (remaining gas: 1039957.993 units remaining) + - location: 91 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" index 81dcb9cf6f9b982cc7ea3fc38f5d349f3caab50d..b6a723c0ddf44e168904301c8c609d5332f6738b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" @@ -7,43 +7,43 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039989.071 units remaining) + - location: 9 (just consumed gas: 10.929) [ (Pair "" "hello" 0) ] - - location: 9 (remaining gas: 1039989.061 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "" "hello" 0) (Pair "" "hello" 0) ] - - location: 10 (remaining gas: 1039989.051 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "" "hello" 0) ] - - location: 11 (remaining gas: 1039989.051 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "" "hello" 0) ] - - location: 13 (remaining gas: 1039989.041 units remaining) + - location: 13 (just consumed gas: 0.010) [ "" ] - - location: 11 (remaining gas: 1039989.016 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "hello" 0) "" ] - - location: 15 (remaining gas: 1039989.006 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "hello" 0) "" ] - - location: 16 (remaining gas: 1039988.996 units remaining) + - location: 16 (just consumed gas: 0.010) [ "hello" (Pair "hello" 0) "" ] - - location: 17 (remaining gas: 1039988.986 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair "hello" 0) "" ] - - location: 18 (remaining gas: 1039988.976 units remaining) + - location: 18 (just consumed gas: 0.010) [ 0 "" ] - - location: 19 (remaining gas: 1039988.966 units remaining) + - location: 19 (just consumed gas: 0.010) [ "" 0 ] - - location: 20 (remaining gas: 1039988.956 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair "" 0) ] - - location: 21 (remaining gas: 1039988.946 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair "" 0) ] - - location: 23 (remaining gas: 1039988.936 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} "" 0) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" index 9fc155303fc86457f0283ef2379886eced302127..a993a26f1c2b64114ad0830e83893744c63abda9 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" @@ -7,43 +7,43 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039989.041 units remaining) + - location: 9 (just consumed gas: 10.959) [ (Pair "abc" "hello" 0) ] - - location: 9 (remaining gas: 1039989.031 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "abc" "hello" 0) (Pair "abc" "hello" 0) ] - - location: 10 (remaining gas: 1039989.021 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "abc" "hello" 0) ] - - location: 11 (remaining gas: 1039989.021 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "abc" "hello" 0) ] - - location: 13 (remaining gas: 1039989.011 units remaining) + - location: 13 (just consumed gas: 0.010) [ "abc" ] - - location: 11 (remaining gas: 1039988.986 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "hello" 0) "abc" ] - - location: 15 (remaining gas: 1039988.976 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "hello" 0) "abc" ] - - location: 16 (remaining gas: 1039988.966 units remaining) + - location: 16 (just consumed gas: 0.010) [ "hello" (Pair "hello" 0) "abc" ] - - location: 17 (remaining gas: 1039988.956 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair "hello" 0) "abc" ] - - location: 18 (remaining gas: 1039988.946 units remaining) + - location: 18 (just consumed gas: 0.010) [ 0 "abc" ] - - location: 19 (remaining gas: 1039988.936 units remaining) + - location: 19 (just consumed gas: 0.010) [ "abc" 0 ] - - location: 20 (remaining gas: 1039988.926 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair "abc" 0) ] - - location: 21 (remaining gas: 1039988.916 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair "abc" 0) ] - - location: 23 (remaining gas: 1039988.906 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} "abc" 0) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" index 3063945c5afbbab6d9ebaa7879138743a73a7234..79f70412b189bfb4684abac40b9aa682f5f37c3f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" @@ -7,43 +7,43 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039989.021 units remaining) + - location: 9 (just consumed gas: 10.979) [ (Pair "world" "hello" 0) ] - - location: 9 (remaining gas: 1039989.011 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "world" "hello" 0) (Pair "world" "hello" 0) ] - - location: 10 (remaining gas: 1039989.001 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "world" "hello" 0) ] - - location: 11 (remaining gas: 1039989.001 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "world" "hello" 0) ] - - location: 13 (remaining gas: 1039988.991 units remaining) + - location: 13 (just consumed gas: 0.010) [ "world" ] - - location: 11 (remaining gas: 1039988.966 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "hello" 0) "world" ] - - location: 15 (remaining gas: 1039988.956 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "hello" 0) "world" ] - - location: 16 (remaining gas: 1039988.946 units remaining) + - location: 16 (just consumed gas: 0.010) [ "hello" (Pair "hello" 0) "world" ] - - location: 17 (remaining gas: 1039988.936 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair "hello" 0) "world" ] - - location: 18 (remaining gas: 1039988.926 units remaining) + - location: 18 (just consumed gas: 0.010) [ 0 "world" ] - - location: 19 (remaining gas: 1039988.916 units remaining) + - location: 19 (just consumed gas: 0.010) [ "world" 0 ] - - location: 20 (remaining gas: 1039988.906 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair "world" 0) ] - - location: 21 (remaining gas: 1039988.896 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair "world" 0) ] - - location: 23 (remaining gas: 1039988.886 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair {} "world" 0) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" index 5cdd1f2ca04204a3b5cd7f4ead1a7a29860db220..285453ac49949b0a01851d10a7614216853dad36 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" @@ -7,40 +7,40 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039989.643 units remaining) + - location: 9 (just consumed gas: 10.357) [ (Pair 1 "hello" 0) ] - - location: 9 (remaining gas: 1039989.633 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair 1 "hello" 0) (Pair 1 "hello" 0) ] - - location: 10 (remaining gas: 1039989.623 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair 1 "hello" 0) ] - - location: 11 (remaining gas: 1039989.623 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair 1 "hello" 0) ] - - location: 13 (remaining gas: 1039989.613 units remaining) + - location: 13 (just consumed gas: 0.010) [ 1 ] - - location: 11 (remaining gas: 1039989.588 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "hello" 0) 1 ] - - location: 15 (remaining gas: 1039989.578 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "hello" 0) 1 ] - - location: 16 (remaining gas: 1039989.568 units remaining) + - location: 16 (just consumed gas: 0.010) [ 0 (Pair "hello" 0) 1 ] - - location: 17 (remaining gas: 1039989.558 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair "hello" 0) 1 ] - - location: 18 (remaining gas: 1039989.548 units remaining) + - location: 18 (just consumed gas: 0.010) [ "hello" 1 ] - - location: 19 (remaining gas: 1039989.538 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair "hello" 1) ] - - location: 20 (remaining gas: 1039989.528 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} (Pair "hello" 1) ] - - location: 22 (remaining gas: 1039989.518 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair {} "hello" 1) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" index 221776a245500c8ad1d74eca29d66b6c3f167e3a..bc7c24e4b009ac7fc8bdb8088344d4a0aeef0845 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" @@ -7,40 +7,40 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039989.643 units remaining) + - location: 9 (just consumed gas: 10.357) [ (Pair 3 "hello" 500) ] - - location: 9 (remaining gas: 1039989.633 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair 3 "hello" 500) (Pair 3 "hello" 500) ] - - location: 10 (remaining gas: 1039989.623 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "hello" 500) (Pair 3 "hello" 500) ] - - location: 11 (remaining gas: 1039989.623 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair 3 "hello" 500) ] - - location: 13 (remaining gas: 1039989.613 units remaining) + - location: 13 (just consumed gas: 0.010) [ 3 ] - - location: 11 (remaining gas: 1039989.588 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "hello" 500) 3 ] - - location: 15 (remaining gas: 1039989.578 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair "hello" 500) (Pair "hello" 500) 3 ] - - location: 16 (remaining gas: 1039989.568 units remaining) + - location: 16 (just consumed gas: 0.010) [ 500 (Pair "hello" 500) 3 ] - - location: 17 (remaining gas: 1039989.558 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair "hello" 500) 3 ] - - location: 18 (remaining gas: 1039989.548 units remaining) + - location: 18 (just consumed gas: 0.010) [ "hello" 3 ] - - location: 19 (remaining gas: 1039989.538 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair "hello" 3) ] - - location: 20 (remaining gas: 1039989.528 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} (Pair "hello" 3) ] - - location: 22 (remaining gas: 1039989.518 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair {} "hello" 3) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" index 984b88ab068a7927f5d8aa49b996a568c62596e9..6017da5c11165e3ef465366f689a841199e05ec7 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" @@ -7,40 +7,40 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039989.643 units remaining) + - location: 9 (just consumed gas: 10.357) [ (Pair 100 "hello" 7) ] - - location: 9 (remaining gas: 1039989.633 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair 100 "hello" 7) (Pair 100 "hello" 7) ] - - location: 10 (remaining gas: 1039989.623 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "hello" 7) (Pair 100 "hello" 7) ] - - location: 11 (remaining gas: 1039989.623 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair 100 "hello" 7) ] - - location: 13 (remaining gas: 1039989.613 units remaining) + - location: 13 (just consumed gas: 0.010) [ 100 ] - - location: 11 (remaining gas: 1039989.588 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "hello" 7) 100 ] - - location: 15 (remaining gas: 1039989.578 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair "hello" 7) (Pair "hello" 7) 100 ] - - location: 16 (remaining gas: 1039989.568 units remaining) + - location: 16 (just consumed gas: 0.010) [ 7 (Pair "hello" 7) 100 ] - - location: 17 (remaining gas: 1039989.558 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair "hello" 7) 100 ] - - location: 18 (remaining gas: 1039989.548 units remaining) + - location: 18 (just consumed gas: 0.010) [ "hello" 100 ] - - location: 19 (remaining gas: 1039989.538 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair "hello" 100) ] - - location: 20 (remaining gas: 1039989.528 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} (Pair "hello" 100) ] - - location: 22 (remaining gas: 1039989.518 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair {} "hello" 100) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" index 24d930fc26798859596c3ab2d7dfb885b96bde05..eb1f303e08ade844f98849bb219ab1d83f17b832 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039995.081 units remaining) + - location: 9 (just consumed gas: 4.919) [ (Pair { "a" ; "b" ; "c" } {}) ] - - location: 9 (remaining gas: 1039995.071 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 10 (remaining gas: 1039995.061 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 12 (remaining gas: 1039995.051 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} { "a" ; "b" ; "c" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" index f0fd5c2f9d87e3a830946685bcf656b6b026999d..605606d9940745ed084194ecc1d2d85b3c2961e6 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039995.298 units remaining) + - location: 9 (just consumed gas: 4.702) [ (Pair { "asdf" ; "bcde" } {}) ] - - location: 9 (remaining gas: 1039995.288 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "asdf" ; "bcde" } ] - - location: 10 (remaining gas: 1039995.278 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "asdf" ; "bcde" } ] - - location: 12 (remaining gas: 1039995.268 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} { "asdf" ; "bcde" }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out index 1364ddb2fefbad883ad69dde0a7c034e863ebea2..f335d69ba2f97000c18afe12dfc4fc6fcf9162ba 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039995.925 units remaining) + - location: 9 (just consumed gas: 4.075) [ (Pair {} {}) ] - - location: 9 (remaining gas: 1039995.915 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (remaining gas: 1039995.905 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} {} ] - - location: 12 (remaining gas: 1039995.895 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out index b06b6fe5dbc319019012b5cc553081c31e3a21b7..c4adffc6630bd54531929ade9dcf7cb53043fa5b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out @@ -7,41 +7,41 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039992.273 units remaining) + - location: 8 (just consumed gas: 7.727) [ (Pair { -100 ; 1 ; 2 ; 3 } 111) ] - - location: 8 (remaining gas: 1039992.263 units remaining) + - location: 8 (just consumed gas: 0.010) [ { -100 ; 1 ; 2 ; 3 } ] - - location: 9 (remaining gas: 1039992.253 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0 { -100 ; 1 ; 2 ; 3 } ] - - location: 12 (remaining gas: 1039992.243 units remaining) + - location: 12 (just consumed gas: 0.010) [ { -100 ; 1 ; 2 ; 3 } 0 ] - - location: 13 (remaining gas: 1039992.243 units remaining) + - location: 13 (just consumed gas: 0) [ -100 0 ] - - location: 15 (remaining gas: 1039992.208 units remaining) + - location: 15 (just consumed gas: 0.035) [ -100 ] - - location: 13 (remaining gas: 1039992.193 units remaining) + - location: 13 (just consumed gas: 0.015) [ 1 -100 ] - - location: 15 (remaining gas: 1039992.158 units remaining) + - location: 15 (just consumed gas: 0.035) [ -99 ] - - location: 13 (remaining gas: 1039992.143 units remaining) + - location: 13 (just consumed gas: 0.015) [ 2 -99 ] - - location: 15 (remaining gas: 1039992.108 units remaining) + - location: 15 (just consumed gas: 0.035) [ -97 ] - - location: 13 (remaining gas: 1039992.093 units remaining) + - location: 13 (just consumed gas: 0.015) [ 3 -97 ] - - location: 15 (remaining gas: 1039992.058 units remaining) + - location: 15 (just consumed gas: 0.035) [ -94 ] - - location: 13 (remaining gas: 1039992.043 units remaining) + - location: 13 (just consumed gas: 0.015) [ -94 ] - - location: 16 (remaining gas: 1039992.033 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} -94 ] - - location: 18 (remaining gas: 1039992.023 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} -94) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out index 1f433251d4e57f37922d8d1a940463c3d2c50874..7dfba734726c2b430bdb823551dcffd78c0365a7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.068 units remaining) + - location: 8 (just consumed gas: 6.932) [ (Pair { 1 } 111) ] - - location: 8 (remaining gas: 1039993.058 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 } ] - - location: 9 (remaining gas: 1039993.048 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0 { 1 } ] - - location: 12 (remaining gas: 1039993.038 units remaining) + - location: 12 (just consumed gas: 0.010) [ { 1 } 0 ] - - location: 13 (remaining gas: 1039993.038 units remaining) + - location: 13 (just consumed gas: 0) [ 1 0 ] - - location: 15 (remaining gas: 1039993.003 units remaining) + - location: 15 (just consumed gas: 0.035) [ 1 ] - - location: 13 (remaining gas: 1039992.988 units remaining) + - location: 13 (just consumed gas: 0.015) [ 1 ] - - location: 16 (remaining gas: 1039992.978 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 1 ] - - location: 18 (remaining gas: 1039992.968 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out index 80a3baecdcf66f68c221e45ba380e0c3a2c923b9..95b44922116a7367fea46532dac07fb0f52cb8eb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.298 units remaining) + - location: 8 (just consumed gas: 6.702) [ (Pair {} 111) ] - - location: 8 (remaining gas: 1039993.288 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} ] - - location: 9 (remaining gas: 1039993.278 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0 {} ] - - location: 12 (remaining gas: 1039993.268 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} 0 ] - - location: 13 (remaining gas: 1039993.268 units remaining) + - location: 13 (just consumed gas: 0) [ 0 ] - - location: 16 (remaining gas: 1039993.258 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 0 ] - - location: 18 (remaining gas: 1039993.248 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} 0) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" index a2be93bf95d0ef4d6594db763b6f0a15494ee9ed..2f4dc29106bb2a93b327191f3c1d6168d6d26f8b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" @@ -7,55 +7,55 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039985.643 units remaining) + - location: 11 (just consumed gas: 14.357) [ (Pair "" { "Hello" ; "World" } None) ] - - location: 11 (remaining gas: 1039985.633 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 12 (remaining gas: 1039985.623 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 13 (remaining gas: 1039985.613 units remaining) + - location: 13 (just consumed gas: 0.010) [ "" (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 14 (remaining gas: 1039985.613 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 17 (remaining gas: 1039985.603 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 18 (remaining gas: 1039985.593 units remaining) + - location: 18 (just consumed gas: 0.010) [ { "Hello" ; "World" } (Pair "" { "Hello" ; "World" } None) ] - - location: 14 (remaining gas: 1039985.568 units remaining) + - location: 14 (just consumed gas: 0.025) [ "" { "Hello" ; "World" } (Pair "" { "Hello" ; "World" } None) ] - - location: 19 (remaining gas: 1039985.453 units remaining) + - location: 19 (just consumed gas: 0.115) [ False (Pair "" { "Hello" ; "World" } None) ] - - location: 20 (remaining gas: 1039985.443 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Some False) (Pair "" { "Hello" ; "World" } None) ] - - location: 21 (remaining gas: 1039985.443 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair "" { "Hello" ; "World" } None) ] - - location: 24 (remaining gas: 1039985.433 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair { "Hello" ; "World" } None) ] - - location: 25 (remaining gas: 1039985.423 units remaining) + - location: 25 (just consumed gas: 0.010) [ { "Hello" ; "World" } ] - - location: 21 (remaining gas: 1039985.398 units remaining) + - location: 21 (just consumed gas: 0.025) [ (Some False) { "Hello" ; "World" } ] - - location: 26 (remaining gas: 1039985.388 units remaining) + - location: 26 (just consumed gas: 0.010) [ { "Hello" ; "World" } (Some False) ] - - location: 27 (remaining gas: 1039985.378 units remaining) + - location: 27 (just consumed gas: 0.010) [ (Pair { "Hello" ; "World" } (Some False)) ] - - location: 28 (remaining gas: 1039985.368 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} (Pair { "Hello" ; "World" } (Some False)) ] - - location: 30 (remaining gas: 1039985.358 units remaining) + - location: 30 (just consumed gas: 0.010) [ (Pair {} { "Hello" ; "World" } (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" index 0b61a9f87844e972dc3848229fc93b795b606da5..526ef95441e977d217ff9b060019b61c3d3a9a80 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" @@ -7,55 +7,55 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039986.008 units remaining) + - location: 11 (just consumed gas: 13.992) [ (Pair "Hi" { "Hi" } None) ] - - location: 11 (remaining gas: 1039985.998 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 12 (remaining gas: 1039985.988 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 13 (remaining gas: 1039985.978 units remaining) + - location: 13 (just consumed gas: 0.010) [ "Hi" (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 14 (remaining gas: 1039985.978 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 17 (remaining gas: 1039985.968 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 18 (remaining gas: 1039985.958 units remaining) + - location: 18 (just consumed gas: 0.010) [ { "Hi" } (Pair "Hi" { "Hi" } None) ] - - location: 14 (remaining gas: 1039985.933 units remaining) + - location: 14 (just consumed gas: 0.025) [ "Hi" { "Hi" } (Pair "Hi" { "Hi" } None) ] - - location: 19 (remaining gas: 1039985.814 units remaining) + - location: 19 (just consumed gas: 0.119) [ True (Pair "Hi" { "Hi" } None) ] - - location: 20 (remaining gas: 1039985.804 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Some True) (Pair "Hi" { "Hi" } None) ] - - location: 21 (remaining gas: 1039985.804 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair "Hi" { "Hi" } None) ] - - location: 24 (remaining gas: 1039985.794 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair { "Hi" } None) ] - - location: 25 (remaining gas: 1039985.784 units remaining) + - location: 25 (just consumed gas: 0.010) [ { "Hi" } ] - - location: 21 (remaining gas: 1039985.759 units remaining) + - location: 21 (just consumed gas: 0.025) [ (Some True) { "Hi" } ] - - location: 26 (remaining gas: 1039985.749 units remaining) + - location: 26 (just consumed gas: 0.010) [ { "Hi" } (Some True) ] - - location: 27 (remaining gas: 1039985.739 units remaining) + - location: 27 (just consumed gas: 0.010) [ (Pair { "Hi" } (Some True)) ] - - location: 28 (remaining gas: 1039985.729 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} (Pair { "Hi" } (Some True)) ] - - location: 30 (remaining gas: 1039985.719 units remaining) + - location: 30 (just consumed gas: 0.010) [ (Pair {} { "Hi" } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" index 724ebaff4e0f755076177de2fbd8f5a621c41783..bd2cf869e9b7df777348c5e3ce71adeb2b84ac80 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" @@ -7,55 +7,55 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039986.276 units remaining) + - location: 11 (just consumed gas: 13.724) [ (Pair "Hi" {} None) ] - - location: 11 (remaining gas: 1039986.266 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 12 (remaining gas: 1039986.256 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair "Hi" {} None) (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 13 (remaining gas: 1039986.246 units remaining) + - location: 13 (just consumed gas: 0.010) [ "Hi" (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 14 (remaining gas: 1039986.246 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 17 (remaining gas: 1039986.236 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair {} None) (Pair "Hi" {} None) ] - - location: 18 (remaining gas: 1039986.226 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Pair "Hi" {} None) ] - - location: 14 (remaining gas: 1039986.201 units remaining) + - location: 14 (just consumed gas: 0.025) [ "Hi" {} (Pair "Hi" {} None) ] - - location: 19 (remaining gas: 1039986.084 units remaining) + - location: 19 (just consumed gas: 0.117) [ False (Pair "Hi" {} None) ] - - location: 20 (remaining gas: 1039986.074 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Some False) (Pair "Hi" {} None) ] - - location: 21 (remaining gas: 1039986.074 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair "Hi" {} None) ] - - location: 24 (remaining gas: 1039986.064 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} None) ] - - location: 25 (remaining gas: 1039986.054 units remaining) + - location: 25 (just consumed gas: 0.010) [ {} ] - - location: 21 (remaining gas: 1039986.029 units remaining) + - location: 21 (just consumed gas: 0.025) [ (Some False) {} ] - - location: 26 (remaining gas: 1039986.019 units remaining) + - location: 26 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 27 (remaining gas: 1039986.009 units remaining) + - location: 27 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 28 (remaining gas: 1039985.999 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} (Pair {} (Some False)) ] - - location: 30 (remaining gas: 1039985.989 units remaining) + - location: 30 (just consumed gas: 0.010) [ (Pair {} {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out index 1b29dccb3aca7f89cb8f65285facc16c75843e2e..bb5ded785b619d5bd1fb1592e77606e6c8bd78f4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.050 units remaining) + - location: 8 (just consumed gas: 5.950) [ (Pair { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } 111) ] - - location: 8 (remaining gas: 1039994.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } ] - - location: 9 (remaining gas: 1039994.030 units remaining) + - location: 9 (just consumed gas: 0.010) [ 6 ] - - location: 10 (remaining gas: 1039994.020 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 6 ] - - location: 12 (remaining gas: 1039994.010 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 6) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out index 9447751f582cf57de6a2a25399ad745460d5bdb2..111272c28a07156e8f844e3f899174cd5b4f03b4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.845 units remaining) + - location: 8 (just consumed gas: 5.155) [ (Pair { 1 ; 2 ; 3 } 111) ] - - location: 8 (remaining gas: 1039994.835 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 } ] - - location: 9 (remaining gas: 1039994.825 units remaining) + - location: 9 (just consumed gas: 0.010) [ 3 ] - - location: 10 (remaining gas: 1039994.815 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 3 ] - - location: 12 (remaining gas: 1039994.805 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 3) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out index e7dc590f5c8c777bd40b136906e8c240e7cc7979..253585f5b5e8f859fa3b04038ea60a82fae575a8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039995.375 units remaining) + - location: 8 (just consumed gas: 4.625) [ (Pair { 1 } 111) ] - - location: 8 (remaining gas: 1039995.365 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 } ] - - location: 9 (remaining gas: 1039995.355 units remaining) + - location: 9 (just consumed gas: 0.010) [ 1 ] - - location: 10 (remaining gas: 1039995.345 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 1 ] - - location: 12 (remaining gas: 1039995.335 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out index bd3ff05764d5a507fc9462c2bedc10a91db3bf56..8f4129eec2c4f5092332e4259682cabf28973a77 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039995.605 units remaining) + - location: 8 (just consumed gas: 4.395) [ (Pair {} 111) ] - - location: 8 (remaining gas: 1039995.595 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} ] - - location: 9 (remaining gas: 1039995.585 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0 ] - - location: 10 (remaining gas: 1039995.575 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0 ] - - location: 12 (remaining gas: 1039995.565 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out index e6aa2f293527c668e5d28bfeddd98cd269bc5fa0..c9167d5d5125cb1536ac52707ec1733214d3b124 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair 0x48656c6c6f2c20776f726c6421 None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x48656c6c6f2c20776f726c6421 ] - - location: 9 (remaining gas: 1039993.480 units remaining) + - location: 9 (just consumed gas: 1.457) [ 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722 ] - - location: 10 (remaining gas: 1039993.470 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) ] - - location: 11 (remaining gas: 1039993.460 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) ] - - location: 13 (remaining gas: 1039993.450 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out index 080c79ead28305cc6f5d9c4caa5e9bdeff3ed26e..6412d83dc2a5a375d48597e1c19de16870f95b8c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 0 0)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 0 0)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010) [ 0 0 ] - - location: 18 (remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0) [ 0 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 0 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out index eadda0dcf7e261d876e25f3deadaf938fa8e4b46..b50c4d6e39ea0a0a7f0178c96099f3aa6220e3f3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 0 1)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 0 1)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 0 1) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010) [ 0 1 ] - - location: 18 (remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0) [ 0 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 0 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out index 7bd6c0a39772081804ba35d294ff05b7796ed81f..c187f26c9550452133b40e03eacb6ea520663190 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 1 2)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 1 2)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 1 2) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010) [ 1 2 ] - - location: 18 (remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0) [ 4 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 4 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 4) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 4) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair {} (Some 4)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out index 64376597a43f643b2fd50f6a09ba10f8f20c0e18..a5ee974c79a2b0f6a33cbdce87bf65272bb958d9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 15 2)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 15 2)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 15 2) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010) [ 15 2 ] - - location: 18 (remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0) [ 60 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 60 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 60) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 60) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair {} (Some 60)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out index 906dfa5dddada042491b14439e7366867ed7c8af..c4c684a738af9b49b434b07477a0e2972a98c009 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 8 1)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 8 1)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 8 1) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010) [ 8 1 ] - - location: 18 (remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0) [ 16 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 16 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 16) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 16) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair {} (Some 16)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out index b44e50ba85ba5fd919d51eb65958d26f72653a81..a1858961f175bfc10d85c057b4a58b1a727589b8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 0 0)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 0 0)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 0 ] - - location: 21 (remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0) [ 0 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 0 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out index ea8ab4dbcb30f84992c8d1a96fa2b1514f25b7dd..10c5326b3d6e3f695e94ce5d8e75936175cb4782 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 0 1)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 0 1)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 0 1) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 1 ] - - location: 21 (remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0) [ 0 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 0 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out index 08e7548d0753182b04442a3d1e42c6f05c4149fd..d30244a0870c269a79298a20d02062267c65763d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 1 2)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 1 2)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 1 2) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 2 ] - - location: 21 (remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0) [ 0 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 0 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out index ea508c106e31a2fc18a62e3a2dec2b1bd4eaa124..4838f8b62d8934e95a312db2f45955cde5c08f05 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 15 2)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 15 2)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 15 2) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010) [ 15 2 ] - - location: 21 (remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0) [ 3 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 3 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 3) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 3) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair {} (Some 3)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out index f6145a099794cc6c0f14db32ef8241da8777490b..3126bd5963bcdb830a3e548a14a073c865ae095a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 8 1)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 8 1)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 8 1) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010) [ 8 1 ] - - location: 21 (remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0) [ 4 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 4 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 4) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 4) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair {} (Some 4)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out index 3c72a7e3dd8320d1d7c5c7c046860681520f1f12..da01b134c1d7c5ee78a4e2e970a772a8f64291f1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out @@ -7,25 +7,25 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.802 units remaining) + - location: 10 (just consumed gas: 9.198) [ (Pair (Pair 0 0) None) ] - - location: 10 (remaining gas: 1039990.792 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 0) None ] - - location: 11 (remaining gas: 1039990.782 units remaining) + - location: 11 (just consumed gas: 0.010) [ None (Pair 0 0) ] - - location: 13 (remaining gas: 1039990.782 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 15 (remaining gas: 1039990.772 units remaining) + - location: 15 (just consumed gas: 0.010) [ ] - - location: 16 (remaining gas: 1039990.762 units remaining) + - location: 16 (just consumed gas: 0.010) [ None ] - - location: 13 (remaining gas: 1039990.747 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (remaining gas: 1039990.737 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (remaining gas: 1039990.727 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} None) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" index b63512533c8afaba400cd1031ddadced445c2b0c..226d4ef084fad65ea02da54d59af9c980568361c 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.658 units remaining) + - location: 10 (just consumed gas: 9.342) [ (Pair (Pair 0 0) (Some "Foo")) ] - - location: 10 (remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 0) (Some "Foo") ] - - location: 11 (remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "Foo") (Pair 0 0) ] - - location: 13 (remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0) [ "Foo" (Pair 0 0) ] - - location: 19 (remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 0 0) "Foo" ] - - location: 20 (remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 0 "Foo" ] - - location: 21 (remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some "") ] - - location: 13 (remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some "") ] - - location: 22 (remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some "") ] - - location: 24 (remaining gas: 1039990.557 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} (Some "")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" index 672f15aef35a421240c88ff631bb53bb28b57881..68ee260b39aff4d354a475cae1e14e4fcdad55aa 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.658 units remaining) + - location: 10 (just consumed gas: 9.342) [ (Pair (Pair 0 10) (Some "Foo")) ] - - location: 10 (remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 10) (Some "Foo") ] - - location: 11 (remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "Foo") (Pair 0 10) ] - - location: 13 (remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0) [ "Foo" (Pair 0 10) ] - - location: 19 (remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 0 10) "Foo" ] - - location: 20 (remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 10 "Foo" ] - - location: 21 (remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026) [ None ] - - location: 13 (remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (remaining gas: 1039990.557 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} None) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" index 5a2e907c58633006de91b9e928b9ea5f75c9c71a..34911739723e893d05ca35bb5d79e3a74c653ce2 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.658 units remaining) + - location: 10 (just consumed gas: 9.342) [ (Pair (Pair 0 2) (Some "Foo")) ] - - location: 10 (remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 2) (Some "Foo") ] - - location: 11 (remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "Foo") (Pair 0 2) ] - - location: 13 (remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0) [ "Foo" (Pair 0 2) ] - - location: 19 (remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 0 2) "Foo" ] - - location: 20 (remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 2 "Foo" ] - - location: 21 (remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some "Fo") ] - - location: 13 (remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some "Fo") ] - - location: 22 (remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some "Fo") ] - - location: 24 (remaining gas: 1039990.557 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} (Some "Fo")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" index e4c6be99dc70f1d3c9c10844998a4ba779ad348f..1b429cd7dcf11d08382c8367d438c39383e7cafa 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.658 units remaining) + - location: 10 (just consumed gas: 9.342) [ (Pair (Pair 1 1) (Some "Foo")) ] - - location: 10 (remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 1) (Some "Foo") ] - - location: 11 (remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "Foo") (Pair 1 1) ] - - location: 13 (remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0) [ "Foo" (Pair 1 1) ] - - location: 19 (remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 1) "Foo" ] - - location: 20 (remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 1 "Foo" ] - - location: 21 (remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some "o") ] - - location: 13 (remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some "o") ] - - location: 22 (remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some "o") ] - - location: 24 (remaining gas: 1039990.557 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} (Some "o")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" index 9459d60ba4dfdb1f97abab9e11f222e6c3ca5156..db9a8a59f6c9ad40e8c62b925bdc4149e160f865 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.658 units remaining) + - location: 10 (just consumed gas: 9.342) [ (Pair (Pair 1 3) (Some "Foo")) ] - - location: 10 (remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 3) (Some "Foo") ] - - location: 11 (remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "Foo") (Pair 1 3) ] - - location: 13 (remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0) [ "Foo" (Pair 1 3) ] - - location: 19 (remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 3) "Foo" ] - - location: 20 (remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 3 "Foo" ] - - location: 21 (remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026) [ None ] - - location: 13 (remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (remaining gas: 1039990.557 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} None) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" index 22a01a7b63adedc36d0d959d60a487d5eb90780a..999fc71166a30258c553e0cb4d2883992d9e789c 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.658 units remaining) + - location: 10 (just consumed gas: 9.342) [ (Pair (Pair 10 5) (Some "Foo")) ] - - location: 10 (remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 10 5) (Some "Foo") ] - - location: 11 (remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "Foo") (Pair 10 5) ] - - location: 13 (remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0) [ "Foo" (Pair 10 5) ] - - location: 19 (remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 5) "Foo" ] - - location: 20 (remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 5 "Foo" ] - - location: 21 (remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026) [ None ] - - location: 13 (remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (remaining gas: 1039990.557 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} None) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" index af0260f1beebf5b34fd226b43edd633053062709..be51a531fae152d5185e1ecc12d6f0657192e0ee 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039930.688 units remaining) + - location: 10 (just consumed gas: 69.312) [ (Pair (Pair 1 10000) (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo")) ] - - location: 10 (remaining gas: 1039930.678 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 10000) (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo") ] - - location: 11 (remaining gas: 1039930.668 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo") (Pair 1 10000) ] - - location: 13 (remaining gas: 1039930.668 units remaining) + - location: 13 (just consumed gas: 0) [ "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" (Pair 1 10000) ] - - location: 19 (remaining gas: 1039930.658 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 10000) "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" ] - - location: 20 (remaining gas: 1039930.648 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 10000 "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" ] - - location: 21 (remaining gas: 1039927.623 units remaining) + - location: 21 (just consumed gas: 3.025) [ None ] - - location: 13 (remaining gas: 1039927.608 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (remaining gas: 1039927.598 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (remaining gas: 1039927.588 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} None) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out index 44a725ffeac6509f7bf685e5624e7d736d691a59..af940c73bb1776f422a995753ecd4b79089c275e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out @@ -7,25 +7,25 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.802 units remaining) + - location: 10 (just consumed gas: 9.198) [ (Pair (Pair 0 1) None) ] - - location: 10 (remaining gas: 1039990.792 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 1) None ] - - location: 11 (remaining gas: 1039990.782 units remaining) + - location: 11 (just consumed gas: 0.010) [ None (Pair 0 1) ] - - location: 13 (remaining gas: 1039990.782 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair 0 1) ] - - location: 15 (remaining gas: 1039990.772 units remaining) + - location: 15 (just consumed gas: 0.010) [ ] - - location: 16 (remaining gas: 1039990.762 units remaining) + - location: 16 (just consumed gas: 0.010) [ None ] - - location: 13 (remaining gas: 1039990.747 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (remaining gas: 1039990.737 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (remaining gas: 1039990.727 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} None) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out index 6d215b8c591be885baacbe68bc20962c720bbb58..011f1aa4ac57d281cb5371879080b83e36fe6e63 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 0 0) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 0) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbcc) (Pair 0 0) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbcc (Pair 0 0) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 0 0) 0xaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 0 0xaabbcc ] - - location: 21 (remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some 0x) ] - - location: 13 (remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some 0x) ] - - location: 22 (remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some 0x) ] - - location: 24 (remaining gas: 1039990.601 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} (Some 0x)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out index 0c83446bdb08579435721d8718f131154bdaae00..e3882c73b6b7a643d1b6719b2056394962d222f1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 0 1) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 1) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbcc) (Pair 0 1) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbcc (Pair 0 1) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 0 1) 0xaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 1 0xaabbcc ] - - location: 21 (remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some 0xaa) ] - - location: 13 (remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some 0xaa) ] - - location: 22 (remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some 0xaa) ] - - location: 24 (remaining gas: 1039990.601 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} (Some 0xaa)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out index 528dc27eeb964365875231e59914f7c8ce70a7da..a605436b26689637e49f1ba5499113c99d952df0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 1 1) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 1) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbcc) (Pair 1 1) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbcc (Pair 1 1) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 1) 0xaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 1 0xaabbcc ] - - location: 21 (remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some 0xbb) ] - - location: 13 (remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some 0xbb) ] - - location: 22 (remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some 0xbb) ] - - location: 24 (remaining gas: 1039990.601 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} (Some 0xbb)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out index 93ab94abc39ec1a9c401235eaf3dbc2b1ba79432..c7e8e253ee164bdff45c2a6bc4198d24de2e563c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 1 1) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 1) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbcc) (Pair 1 1) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbcc (Pair 1 1) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 1) 0xaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 1 0xaabbcc ] - - location: 21 (remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some 0xbb) ] - - location: 13 (remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some 0xbb) ] - - location: 22 (remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some 0xbb) ] - - location: 24 (remaining gas: 1039990.601 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} (Some 0xbb)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out index 6c09813d3a8d4c153798eceecd7389523a0beccb..4e98bf6ecee14abfe3607f9a7de0601523a77c0d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 1 2) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 2) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbcc) (Pair 1 2) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbcc (Pair 1 2) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 2) 0xaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 2 0xaabbcc ] - - location: 21 (remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some 0xbbcc) ] - - location: 13 (remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some 0xbbcc) ] - - location: 22 (remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some 0xbbcc) ] - - location: 24 (remaining gas: 1039990.601 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} (Some 0xbbcc)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out index 32a53d01e0378496f5c46c19d7ee49d1cebd4e5c..febf94f38d5e0ca93f09a34231e69d8c72d1a88b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 1 3) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 3) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbcc) (Pair 1 3) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbcc (Pair 1 3) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 3) 0xaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 3 0xaabbcc ] - - location: 21 (remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026) [ None ] - - location: 13 (remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (remaining gas: 1039990.601 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} None) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out index e41a6dcbc5e7a3330ac203491c7b870f192468f0..efc07cdaaf556e6a0c142e5232b9b1720bbae9bb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 1 10000) (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 10000) (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc) (Pair 1 10000) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc (Pair 1 10000) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 10000) 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 10000 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc ] - - location: 21 (remaining gas: 1039987.637 units remaining) + - location: 21 (just consumed gas: 3.025) [ None ] - - location: 13 (remaining gas: 1039987.622 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (remaining gas: 1039987.612 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (remaining gas: 1039987.602 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} None) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" index 255c5d36a6851aa160279cfbd85f5c4d1c0d884f..568a6998e5e2a3a852c981fae71fb5c14eb8db03 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039995.436 units remaining) + - location: 8 (just consumed gas: 4.564) [ (Pair "Hello" None) ] - - location: 8 (remaining gas: 1039995.426 units remaining) + - location: 8 (just consumed gas: 0.010) [ "Hello" ] - - location: 9 (remaining gas: 1039995.416 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Some "Hello") ] - - location: 10 (remaining gas: 1039995.406 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} (Some "Hello") ] - - location: 12 (remaining gas: 1039995.396 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} (Some "Hello")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" index 5dff047de07a47dad8c34c516c04bca66f026fd5..82a86f861748516b7604a6c61027224e87034bdc 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039995.446 units remaining) + - location: 8 (just consumed gas: 4.554) [ (Pair "abcd" None) ] - - location: 8 (remaining gas: 1039995.436 units remaining) + - location: 8 (just consumed gas: 0.010) [ "abcd" ] - - location: 9 (remaining gas: 1039995.426 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Some "abcd") ] - - location: 10 (remaining gas: 1039995.416 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} (Some "abcd") ] - - location: 12 (remaining gas: 1039995.406 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} (Some "abcd")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" index 3da131e33e8e92bf54e023dab77625f4ae74321d..8bfb2d93f1b7f85fde5f4b55586c35530ec85c9a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.563 units remaining) + - location: 9 (just consumed gas: 7.437) [ (Pair (Pair "1970-01-01T00:01:40Z" -100) "1970-01-01T00:01:51Z") ] - - location: 9 (remaining gas: 1039992.553 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 10 (remaining gas: 1039992.543 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" -100) (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 11 (remaining gas: 1039992.533 units remaining) + - location: 11 (just consumed gas: 0.010) [ "1970-01-01T00:01:40Z" (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 12 (remaining gas: 1039992.533 units remaining) + - location: 12 (just consumed gas: 0) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 14 (remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010) [ -100 ] - - location: 12 (remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025) [ "1970-01-01T00:01:40Z" -100 ] - - location: 15 (remaining gas: 1039992.463 units remaining) + - location: 15 (just consumed gas: 0.035) [ "1970-01-01T00:03:20Z" ] - - location: 16 (remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} "1970-01-01T00:03:20Z" ] - - location: 18 (remaining gas: 1039992.443 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} "1970-01-01T00:03:20Z") ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" index edd7cbf124e2d721745089929eec5bd8d163bcb5..d9795b14bf2cf27f902f9645b7e616eb1a08191f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.563 units remaining) + - location: 9 (just consumed gas: 7.437) [ (Pair (Pair "1970-01-01T00:01:40Z" 100) "1970-01-01T00:01:51Z") ] - - location: 9 (remaining gas: 1039992.553 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 10 (remaining gas: 1039992.543 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" 100) (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 11 (remaining gas: 1039992.533 units remaining) + - location: 11 (just consumed gas: 0.010) [ "1970-01-01T00:01:40Z" (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 12 (remaining gas: 1039992.533 units remaining) + - location: 12 (just consumed gas: 0) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 14 (remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010) [ 100 ] - - location: 12 (remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025) [ "1970-01-01T00:01:40Z" 100 ] - - location: 15 (remaining gas: 1039992.463 units remaining) + - location: 15 (just consumed gas: 0.035) [ "1970-01-01T00:00:00Z" ] - - location: 16 (remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} "1970-01-01T00:00:00Z" ] - - location: 18 (remaining gas: 1039992.443 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} "1970-01-01T00:00:00Z") ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out index 5a60f031a98559c715ff835ce735fdfd00d0aa83..9a2cc4b69de5a083733315c3fba0783b34c84b31 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.563 units remaining) + - location: 9 (just consumed gas: 7.437) [ (Pair (Pair "1970-01-01T00:01:40Z" 2000000000000000000) "1970-01-01T00:01:51Z") ] - - location: 9 (remaining gas: 1039992.553 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 10 (remaining gas: 1039992.543 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 11 (remaining gas: 1039992.533 units remaining) + - location: 11 (just consumed gas: 0.010) [ "1970-01-01T00:01:40Z" (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 12 (remaining gas: 1039992.533 units remaining) + - location: 12 (just consumed gas: 0) [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 14 (remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010) [ 2000000000000000000 ] - - location: 12 (remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025) [ "1970-01-01T00:01:40Z" 2000000000000000000 ] - - location: 15 (remaining gas: 1039992.459 units remaining) + - location: 15 (just consumed gas: 0.039) [ -1999999999999999900 ] - - location: 16 (remaining gas: 1039992.449 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} -1999999999999999900 ] - - location: 18 (remaining gas: 1039992.439 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} -1999999999999999900) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out index 0e6a37739eeba52c2426d14897a28575181a3359..0bb2b37e59c1c04296fb69aa9148b23466fc8979 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out @@ -7,65 +7,65 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039983.005 units remaining) + - location: 12 (just consumed gas: 16.995) [ (Pair (Pair 2000000 1000000) None) ] - - location: 12 (remaining gas: 1039982.995 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair 2000000 1000000) ] - - location: 13 (remaining gas: 1039982.985 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 14 (remaining gas: 1039982.975 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair 2000000 1000000) (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 15 (remaining gas: 1039982.965 units remaining) + - location: 15 (just consumed gas: 0.010) [ 2000000 (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 16 (remaining gas: 1039982.965 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 18 (remaining gas: 1039982.955 units remaining) + - location: 18 (just consumed gas: 0.010) [ 1000000 (Pair 2000000 1000000) ] - - location: 16 (remaining gas: 1039982.930 units remaining) + - location: 16 (just consumed gas: 0.025) [ 2000000 1000000 (Pair 2000000 1000000) ] - - location: 19 (remaining gas: 1039982.910 units remaining) + - location: 19 (just consumed gas: 0.020) [ 3000000 (Pair 2000000 1000000) ] - - location: 20 (remaining gas: 1039982.910 units remaining) + - location: 20 (just consumed gas: 0) [ (Pair 2000000 1000000) ] - - location: 22 (remaining gas: 1039982.900 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 23 (remaining gas: 1039982.890 units remaining) + - location: 23 (just consumed gas: 0.010) [ 2000000 (Pair 2000000 1000000) ] - - location: 24 (remaining gas: 1039982.890 units remaining) + - location: 24 (just consumed gas: 0) [ (Pair 2000000 1000000) ] - - location: 26 (remaining gas: 1039982.880 units remaining) + - location: 26 (just consumed gas: 0.010) [ 1000000 ] - - location: 24 (remaining gas: 1039982.855 units remaining) + - location: 24 (just consumed gas: 0.025) [ 2000000 1000000 ] - - location: 27 (remaining gas: 1039982.840 units remaining) + - location: 27 (just consumed gas: 0.015) [ (Some 1000000) ] - - location: 29 (remaining gas: 1039982.840 units remaining) + - location: 29 (just consumed gas: 0) [ 1000000 ] - - location: 29 (remaining gas: 1039982.825 units remaining) + - location: 29 (just consumed gas: 0.015) [ 1000000 ] - - location: 20 (remaining gas: 1039982.800 units remaining) + - location: 20 (just consumed gas: 0.025) [ 3000000 1000000 ] - - location: 35 (remaining gas: 1039982.790 units remaining) + - location: 35 (just consumed gas: 0.010) [ (Pair 3000000 1000000) ] - - location: 36 (remaining gas: 1039982.780 units remaining) + - location: 36 (just consumed gas: 0.010) [ (Some (Pair 3000000 1000000)) ] - - location: 37 (remaining gas: 1039982.770 units remaining) + - location: 37 (just consumed gas: 0.010) [ {} (Some (Pair 3000000 1000000)) ] - - location: 39 (remaining gas: 1039982.760 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair {} (Some (Pair 3000000 1000000))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out index cdd376a92288528a917e52700b310cd583e9f4a7..37a20f5b0d68ed9ba7d5799149a47b651db8cbcd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out @@ -7,65 +7,65 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039983.005 units remaining) + - location: 12 (just consumed gas: 16.995) [ (Pair (Pair 2310000 1010000) None) ] - - location: 12 (remaining gas: 1039982.995 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair 2310000 1010000) ] - - location: 13 (remaining gas: 1039982.985 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 14 (remaining gas: 1039982.975 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair 2310000 1010000) (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 15 (remaining gas: 1039982.965 units remaining) + - location: 15 (just consumed gas: 0.010) [ 2310000 (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 16 (remaining gas: 1039982.965 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 18 (remaining gas: 1039982.955 units remaining) + - location: 18 (just consumed gas: 0.010) [ 1010000 (Pair 2310000 1010000) ] - - location: 16 (remaining gas: 1039982.930 units remaining) + - location: 16 (just consumed gas: 0.025) [ 2310000 1010000 (Pair 2310000 1010000) ] - - location: 19 (remaining gas: 1039982.910 units remaining) + - location: 19 (just consumed gas: 0.020) [ 3320000 (Pair 2310000 1010000) ] - - location: 20 (remaining gas: 1039982.910 units remaining) + - location: 20 (just consumed gas: 0) [ (Pair 2310000 1010000) ] - - location: 22 (remaining gas: 1039982.900 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 23 (remaining gas: 1039982.890 units remaining) + - location: 23 (just consumed gas: 0.010) [ 2310000 (Pair 2310000 1010000) ] - - location: 24 (remaining gas: 1039982.890 units remaining) + - location: 24 (just consumed gas: 0) [ (Pair 2310000 1010000) ] - - location: 26 (remaining gas: 1039982.880 units remaining) + - location: 26 (just consumed gas: 0.010) [ 1010000 ] - - location: 24 (remaining gas: 1039982.855 units remaining) + - location: 24 (just consumed gas: 0.025) [ 2310000 1010000 ] - - location: 27 (remaining gas: 1039982.840 units remaining) + - location: 27 (just consumed gas: 0.015) [ (Some 1300000) ] - - location: 29 (remaining gas: 1039982.840 units remaining) + - location: 29 (just consumed gas: 0) [ 1300000 ] - - location: 29 (remaining gas: 1039982.825 units remaining) + - location: 29 (just consumed gas: 0.015) [ 1300000 ] - - location: 20 (remaining gas: 1039982.800 units remaining) + - location: 20 (just consumed gas: 0.025) [ 3320000 1300000 ] - - location: 35 (remaining gas: 1039982.790 units remaining) + - location: 35 (just consumed gas: 0.010) [ (Pair 3320000 1300000) ] - - location: 36 (remaining gas: 1039982.780 units remaining) + - location: 36 (just consumed gas: 0.010) [ (Some (Pair 3320000 1300000)) ] - - location: 37 (remaining gas: 1039982.770 units remaining) + - location: 37 (just consumed gas: 0.010) [ {} (Some (Pair 3320000 1300000)) ] - - location: 39 (remaining gas: 1039982.760 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair {} (Some (Pair 3320000 1300000))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out index 1e71b5f8ca50e3bf0c86dd3be236f74c54e1d9e6..e39ce71f84459bece564c4094b67881bfe741f6d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out @@ -7,44 +7,44 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.856 units remaining) + - location: 10 (just consumed gas: 10.144) [ (Pair (Pair 1 4 2) 0) ] - - location: 10 (remaining gas: 1039989.846 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 4 2) ] - - location: 11 (remaining gas: 1039989.809 units remaining) + - location: 11 (just consumed gas: 0.037) [ 1 4 2 ] - - location: 13 (remaining gas: 1039989.799 units remaining) + - location: 13 (just consumed gas: 0.010) [ 100 1 4 2 ] - - location: 16 (remaining gas: 1039989.740 units remaining) + - location: 16 (just consumed gas: 0.059) [ 100 4 2 ] - - location: 17 (remaining gas: 1039989.730 units remaining) + - location: 17 (just consumed gas: 0.010) [ 4 100 2 ] - - location: 18 (remaining gas: 1039989.720 units remaining) + - location: 18 (just consumed gas: 0.010) [ 10 4 100 2 ] - - location: 21 (remaining gas: 1039989.661 units remaining) + - location: 21 (just consumed gas: 0.059) [ 40 100 2 ] - - location: 22 (remaining gas: 1039989.626 units remaining) + - location: 22 (just consumed gas: 0.035) [ 140 2 ] - - location: 23 (remaining gas: 1039989.591 units remaining) + - location: 23 (just consumed gas: 0.035) [ 142 ] - - location: 24 (remaining gas: 1039989.581 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} 142 ] - - location: 26 (remaining gas: 1039989.571 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair {} 142) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out index 37880ab7c23372745b8be6f379375b39d3448825..699a9ecc79b2c2a23c7c601c1a71222f4b26511b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out @@ -7,456 +7,456 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039872.209 units remaining) + - location: 7 (just consumed gas: 127.791) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039872.199 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039872.189 units remaining) + - location: 8 (just consumed gas: 0.010) [ Unit ] - - location: 9 (remaining gas: 1039872.179 units remaining) + - location: 9 (just consumed gas: 0.010) [ Unit Unit ] - - location: 10 (remaining gas: 1039872.169 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 11 (remaining gas: 1039872.159 units remaining) + - location: 11 (just consumed gas: 0.010) [ Unit Unit ] - - location: 12 (remaining gas: 1039872.124 units remaining) + - location: 12 (just consumed gas: 0.035) [ ] - - location: 14 (remaining gas: 1039872.114 units remaining) + - location: 14 (just consumed gas: 0.010) [ Unit ] - - location: 15 (remaining gas: 1039872.104 units remaining) + - location: 15 (just consumed gas: 0.010) [ Unit Unit ] - - location: 16 (remaining gas: 1039872.094 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 17 (remaining gas: 1039872.084 units remaining) + - location: 17 (just consumed gas: 0.010) [ Unit Unit ] - - location: 18 (remaining gas: 1039872.049 units remaining) + - location: 18 (just consumed gas: 0.035) [ ] - - location: 20 (remaining gas: 1039872.039 units remaining) + - location: 20 (just consumed gas: 0.010) [ Unit ] - - location: 21 (remaining gas: 1039872.029 units remaining) + - location: 21 (just consumed gas: 0.010) [ Unit Unit ] - - location: 22 (remaining gas: 1039872.019 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 23 (remaining gas: 1039872.009 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 24 (remaining gas: 1039871.999 units remaining) + - location: 24 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 25 (remaining gas: 1039871.964 units remaining) + - location: 25 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 27 (remaining gas: 1039871.954 units remaining) + - location: 27 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 28 (remaining gas: 1039871.944 units remaining) + - location: 28 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 29 (remaining gas: 1039871.909 units remaining) + - location: 29 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 31 (remaining gas: 1039871.899 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 32 (remaining gas: 1039871.889 units remaining) + - location: 32 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 33 (remaining gas: 1039871.854 units remaining) + - location: 33 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 35 (remaining gas: 1039871.844 units remaining) + - location: 35 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 36 (remaining gas: 1039871.834 units remaining) + - location: 36 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 37 (remaining gas: 1039871.799 units remaining) + - location: 37 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 39 (remaining gas: 1039871.789 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 40 (remaining gas: 1039871.779 units remaining) + - location: 40 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 41 (remaining gas: 1039871.744 units remaining) + - location: 41 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 43 (remaining gas: 1039871.734 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 44 (remaining gas: 1039871.724 units remaining) + - location: 44 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 45 (remaining gas: 1039871.689 units remaining) + - location: 45 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 47 (remaining gas: 1039871.679 units remaining) + - location: 47 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 48 (remaining gas: 1039871.669 units remaining) + - location: 48 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 49 (remaining gas: 1039871.634 units remaining) + - location: 49 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 51 (remaining gas: 1039871.624 units remaining) + - location: 51 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 52 (remaining gas: 1039871.614 units remaining) + - location: 52 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 53 (remaining gas: 1039871.579 units remaining) + - location: 53 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 55 (remaining gas: 1039871.569 units remaining) + - location: 55 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 56 (remaining gas: 1039871.559 units remaining) + - location: 56 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 57 (remaining gas: 1039871.524 units remaining) + - location: 57 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 59 (remaining gas: 1039871.514 units remaining) + - location: 59 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 60 (remaining gas: 1039871.504 units remaining) + - location: 60 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 61 (remaining gas: 1039871.469 units remaining) + - location: 61 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 63 (remaining gas: 1039871.459 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 64 (remaining gas: 1039871.449 units remaining) + - location: 64 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 65 (remaining gas: 1039871.414 units remaining) + - location: 65 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 67 (remaining gas: 1039871.404 units remaining) + - location: 67 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 68 (remaining gas: 1039871.394 units remaining) + - location: 68 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 69 (remaining gas: 1039871.359 units remaining) + - location: 69 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 71 (remaining gas: 1039871.349 units remaining) + - location: 71 (just consumed gas: 0.010) [ ] - - location: 72 (remaining gas: 1039871.339 units remaining) + - location: 72 (just consumed gas: 0.010) [ Unit ] - - location: 73 (remaining gas: 1039871.329 units remaining) + - location: 73 (just consumed gas: 0.010) [ Unit Unit ] - - location: 74 (remaining gas: 1039871.319 units remaining) + - location: 74 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 75 (remaining gas: 1039871.309 units remaining) + - location: 75 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 76 (remaining gas: 1039871.299 units remaining) + - location: 76 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 77 (remaining gas: 1039871.264 units remaining) + - location: 77 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 79 (remaining gas: 1039871.254 units remaining) + - location: 79 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 80 (remaining gas: 1039871.244 units remaining) + - location: 80 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 81 (remaining gas: 1039871.209 units remaining) + - location: 81 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 83 (remaining gas: 1039871.199 units remaining) + - location: 83 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 84 (remaining gas: 1039871.189 units remaining) + - location: 84 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 85 (remaining gas: 1039871.154 units remaining) + - location: 85 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 87 (remaining gas: 1039871.144 units remaining) + - location: 87 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 88 (remaining gas: 1039871.134 units remaining) + - location: 88 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 89 (remaining gas: 1039871.099 units remaining) + - location: 89 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 91 (remaining gas: 1039871.089 units remaining) + - location: 91 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 92 (remaining gas: 1039871.079 units remaining) + - location: 92 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 93 (remaining gas: 1039871.044 units remaining) + - location: 93 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 95 (remaining gas: 1039871.034 units remaining) + - location: 95 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 96 (remaining gas: 1039871.024 units remaining) + - location: 96 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 97 (remaining gas: 1039870.989 units remaining) + - location: 97 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 99 (remaining gas: 1039870.979 units remaining) + - location: 99 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 100 (remaining gas: 1039870.969 units remaining) + - location: 100 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 101 (remaining gas: 1039870.934 units remaining) + - location: 101 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 103 (remaining gas: 1039870.924 units remaining) + - location: 103 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 104 (remaining gas: 1039870.914 units remaining) + - location: 104 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 105 (remaining gas: 1039870.879 units remaining) + - location: 105 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 107 (remaining gas: 1039870.869 units remaining) + - location: 107 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 108 (remaining gas: 1039870.859 units remaining) + - location: 108 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 109 (remaining gas: 1039870.824 units remaining) + - location: 109 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 111 (remaining gas: 1039870.814 units remaining) + - location: 111 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 112 (remaining gas: 1039870.804 units remaining) + - location: 112 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 113 (remaining gas: 1039870.769 units remaining) + - location: 113 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 115 (remaining gas: 1039870.759 units remaining) + - location: 115 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 116 (remaining gas: 1039870.749 units remaining) + - location: 116 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 117 (remaining gas: 1039870.714 units remaining) + - location: 117 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 119 (remaining gas: 1039870.704 units remaining) + - location: 119 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 120 (remaining gas: 1039870.694 units remaining) + - location: 120 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 121 (remaining gas: 1039870.659 units remaining) + - location: 121 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 123 (remaining gas: 1039870.649 units remaining) + - location: 123 (just consumed gas: 0.010) [ ] - - location: 124 (remaining gas: 1039870.639 units remaining) + - location: 124 (just consumed gas: 0.010) [ Unit ] - - location: 125 (remaining gas: 1039870.629 units remaining) + - location: 125 (just consumed gas: 0.010) [ Unit Unit ] - - location: 126 (remaining gas: 1039870.619 units remaining) + - location: 126 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 127 (remaining gas: 1039870.609 units remaining) + - location: 127 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 128 (remaining gas: 1039870.599 units remaining) + - location: 128 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 129 (remaining gas: 1039870.564 units remaining) + - location: 129 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 131 (remaining gas: 1039870.554 units remaining) + - location: 131 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 132 (remaining gas: 1039870.544 units remaining) + - location: 132 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 133 (remaining gas: 1039870.509 units remaining) + - location: 133 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 135 (remaining gas: 1039870.499 units remaining) + - location: 135 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 136 (remaining gas: 1039870.489 units remaining) + - location: 136 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 137 (remaining gas: 1039870.454 units remaining) + - location: 137 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 139 (remaining gas: 1039870.444 units remaining) + - location: 139 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 140 (remaining gas: 1039870.434 units remaining) + - location: 140 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 141 (remaining gas: 1039870.399 units remaining) + - location: 141 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 143 (remaining gas: 1039870.389 units remaining) + - location: 143 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 144 (remaining gas: 1039870.379 units remaining) + - location: 144 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 145 (remaining gas: 1039870.344 units remaining) + - location: 145 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 147 (remaining gas: 1039870.334 units remaining) + - location: 147 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 148 (remaining gas: 1039870.324 units remaining) + - location: 148 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 149 (remaining gas: 1039870.289 units remaining) + - location: 149 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 151 (remaining gas: 1039870.279 units remaining) + - location: 151 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 152 (remaining gas: 1039870.269 units remaining) + - location: 152 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 153 (remaining gas: 1039870.234 units remaining) + - location: 153 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 155 (remaining gas: 1039870.224 units remaining) + - location: 155 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 156 (remaining gas: 1039870.214 units remaining) + - location: 156 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 157 (remaining gas: 1039870.179 units remaining) + - location: 157 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 159 (remaining gas: 1039870.169 units remaining) + - location: 159 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 160 (remaining gas: 1039870.159 units remaining) + - location: 160 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 161 (remaining gas: 1039870.124 units remaining) + - location: 161 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 163 (remaining gas: 1039870.114 units remaining) + - location: 163 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 164 (remaining gas: 1039870.104 units remaining) + - location: 164 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 165 (remaining gas: 1039870.069 units remaining) + - location: 165 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 167 (remaining gas: 1039870.059 units remaining) + - location: 167 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 168 (remaining gas: 1039870.049 units remaining) + - location: 168 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 169 (remaining gas: 1039870.014 units remaining) + - location: 169 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 171 (remaining gas: 1039870.004 units remaining) + - location: 171 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 172 (remaining gas: 1039869.994 units remaining) + - location: 172 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 173 (remaining gas: 1039869.959 units remaining) + - location: 173 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 175 (remaining gas: 1039869.949 units remaining) + - location: 175 (just consumed gas: 0.010) [ ] - - location: 176 (remaining gas: 1039869.939 units remaining) + - location: 176 (just consumed gas: 0.010) [ Unit ] - - location: 177 (remaining gas: 1039869.929 units remaining) + - location: 177 (just consumed gas: 0.010) [ Unit Unit ] - - location: 178 (remaining gas: 1039869.919 units remaining) + - location: 178 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 179 (remaining gas: 1039869.909 units remaining) + - location: 179 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 180 (remaining gas: 1039869.899 units remaining) + - location: 180 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 181 (remaining gas: 1039869.864 units remaining) + - location: 181 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 183 (remaining gas: 1039869.854 units remaining) + - location: 183 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 184 (remaining gas: 1039869.844 units remaining) + - location: 184 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 185 (remaining gas: 1039869.809 units remaining) + - location: 185 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 187 (remaining gas: 1039869.799 units remaining) + - location: 187 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 188 (remaining gas: 1039869.789 units remaining) + - location: 188 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 189 (remaining gas: 1039869.754 units remaining) + - location: 189 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 191 (remaining gas: 1039869.744 units remaining) + - location: 191 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 192 (remaining gas: 1039869.734 units remaining) + - location: 192 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 193 (remaining gas: 1039869.699 units remaining) + - location: 193 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 195 (remaining gas: 1039869.689 units remaining) + - location: 195 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 196 (remaining gas: 1039869.679 units remaining) + - location: 196 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 197 (remaining gas: 1039869.644 units remaining) + - location: 197 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 199 (remaining gas: 1039869.634 units remaining) + - location: 199 (just consumed gas: 0.010) [ ] - - location: 200 (remaining gas: 1039869.624 units remaining) + - location: 200 (just consumed gas: 0.010) [ Unit ] - - location: 201 (remaining gas: 1039869.614 units remaining) + - location: 201 (just consumed gas: 0.010) [ Unit Unit ] - - location: 202 (remaining gas: 1039869.604 units remaining) + - location: 202 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 203 (remaining gas: 1039869.594 units remaining) + - location: 203 (just consumed gas: 0.010) [ Unit Unit ] - - location: 204 (remaining gas: 1039869.559 units remaining) + - location: 204 (just consumed gas: 0.035) [ ] - - location: 206 (remaining gas: 1039869.549 units remaining) + - location: 206 (just consumed gas: 0.010) [ Unit ] - - location: 207 (remaining gas: 1039869.539 units remaining) + - location: 207 (just consumed gas: 0.010) [ {} Unit ] - - location: 209 (remaining gas: 1039869.529 units remaining) + - location: 209 (just consumed gas: 0.010) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" index 1f48f17da168f23fbf069dea7bbddb478d9dfb91..29e30dd912ebb7ddda69d48c9188017e9c04fdb3 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039667.653 units remaining) + - location: 9 (just consumed gas: 332.347) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" 0 0) ] - - location: 9 (remaining gas: 1039667.643 units remaining) + - location: 9 (just consumed gas: 0.010) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" ] - - location: 10 (remaining gas: 1039667.038 units remaining) + - location: 10 (just consumed gas: 0.605) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 11 (remaining gas: 1039446.382 units remaining) + - location: 11 (just consumed gas: 220.656) [ 4000000000000 ] - - location: 12 (remaining gas: 1039446.382 units remaining) + - location: 12 (just consumed gas: 0) [ ] - - location: 14 (remaining gas: 1039235.916 units remaining) + - location: 14 (just consumed gas: 210.466) [ 20000000000000 ] - - location: 12 (remaining gas: 1039235.891 units remaining) + - location: 12 (just consumed gas: 0.025) [ 4000000000000 20000000000000 ] - - location: 15 (remaining gas: 1039235.881 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair 4000000000000 20000000000000) ] - - location: 16 (remaining gas: 1039235.871 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} (Pair 4000000000000 20000000000000) ] - - location: 18 (remaining gas: 1039235.861 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair {} 4000000000000 20000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out index 3e0a2632e014e6cbd2f45884106cb5577a513941..818c4674536708f8e0d0925c779c194d170afabe 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Left (Pair False False)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Left (Pair False False)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair False False) ] - - location: 19 (remaining gas: 1039988.954 units remaining) + - location: 19 (just consumed gas: 0.010) [ False False ] - - location: 20 (remaining gas: 1039988.939 units remaining) + - location: 20 (just consumed gas: 0.015) [ False ] - - location: 21 (remaining gas: 1039988.929 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left False) ] - - location: 17 (remaining gas: 1039988.914 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Left False) ] - - location: 28 (remaining gas: 1039988.904 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Left False)) ] - - location: 29 (remaining gas: 1039988.894 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Left False)) ] - - location: 31 (remaining gas: 1039988.884 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair {} (Some (Left False))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out index c95bbc1a441865b5a86ace1d1a86b56a81f4d81a..5ea3e4fd31d77ab2c9fbd99f928d942ad4b9a6ba 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Left (Pair False True)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Left (Pair False True)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair False True) ] - - location: 19 (remaining gas: 1039988.954 units remaining) + - location: 19 (just consumed gas: 0.010) [ False True ] - - location: 20 (remaining gas: 1039988.939 units remaining) + - location: 20 (just consumed gas: 0.015) [ True ] - - location: 21 (remaining gas: 1039988.929 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left True) ] - - location: 17 (remaining gas: 1039988.914 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Left True) ] - - location: 28 (remaining gas: 1039988.904 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Left True)) ] - - location: 29 (remaining gas: 1039988.894 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Left True)) ] - - location: 31 (remaining gas: 1039988.884 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair {} (Some (Left True))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out index a9cd32c74b2a9cd61bcc2a1cffda5d5759e2e761..9ca50094190f1064bf36aebf55b23758e8d7da3b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Left (Pair True False)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Left (Pair True False)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair True False) ] - - location: 19 (remaining gas: 1039988.954 units remaining) + - location: 19 (just consumed gas: 0.010) [ True False ] - - location: 20 (remaining gas: 1039988.939 units remaining) + - location: 20 (just consumed gas: 0.015) [ True ] - - location: 21 (remaining gas: 1039988.929 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left True) ] - - location: 17 (remaining gas: 1039988.914 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Left True) ] - - location: 28 (remaining gas: 1039988.904 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Left True)) ] - - location: 29 (remaining gas: 1039988.894 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Left True)) ] - - location: 31 (remaining gas: 1039988.884 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair {} (Some (Left True))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out index 3f401dee92bd1695bea537dc802dd02383e27bb5..57daf82638c15ac0208b4e22dbc68b5dab22bb56 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Left (Pair True True)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Left (Pair True True)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair True True) ] - - location: 19 (remaining gas: 1039988.954 units remaining) + - location: 19 (just consumed gas: 0.010) [ True True ] - - location: 20 (remaining gas: 1039988.939 units remaining) + - location: 20 (just consumed gas: 0.015) [ False ] - - location: 21 (remaining gas: 1039988.929 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left False) ] - - location: 17 (remaining gas: 1039988.914 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Left False) ] - - location: 28 (remaining gas: 1039988.904 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Left False)) ] - - location: 29 (remaining gas: 1039988.894 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Left False)) ] - - location: 31 (remaining gas: 1039988.884 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair {} (Some (Left False))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out index fbf68a96e0c34e5c69a5422f7c6cc9528ef227c2..504c20123b218a2438a5818e65e1e8982b2f0a68 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Right (Pair 0 0)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Right (Pair 0 0)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 24 (remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010) [ 0 0 ] - - location: 25 (remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035) [ 0 ] - - location: 26 (remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Right 0) ] - - location: 17 (remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Right 0) ] - - location: 28 (remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Right 0)) ] - - location: 29 (remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Right 0)) ] - - location: 31 (remaining gas: 1039988.864 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair {} (Some (Right 0))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out index 9039add3434571a46806e79bbfc5d106d3b409d2..2e4ab9ac6529df1f1f0553a4e858898b9c68a91f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Right (Pair 0 1)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Right (Pair 0 1)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair 0 1) ] - - location: 24 (remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010) [ 0 1 ] - - location: 25 (remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035) [ 1 ] - - location: 26 (remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Right 1) ] - - location: 17 (remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Right 1) ] - - location: 28 (remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Right 1)) ] - - location: 29 (remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Right 1)) ] - - location: 31 (remaining gas: 1039988.864 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair {} (Some (Right 1))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out index c24b24b30837034fa649d074287de051efd30d29..260258f825994239870d34d820e10a96b5776a9b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Right (Pair 1 0)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Right (Pair 1 0)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair 1 0) ] - - location: 24 (remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010) [ 1 0 ] - - location: 25 (remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035) [ 1 ] - - location: 26 (remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Right 1) ] - - location: 17 (remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Right 1) ] - - location: 28 (remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Right 1)) ] - - location: 29 (remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Right 1)) ] - - location: 31 (remaining gas: 1039988.864 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair {} (Some (Right 1))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out index baa561e7e1fd982afb801b2c9f735d940f6c3eb9..8cbddbd8b4c446bd12b7da78fb6f70b97d059650 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Right (Pair 1 1)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Right (Pair 1 1)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair 1 1) ] - - location: 24 (remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010) [ 1 1 ] - - location: 25 (remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035) [ 0 ] - - location: 26 (remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Right 0) ] - - location: 17 (remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Right 0) ] - - location: 28 (remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Right 0)) ] - - location: 29 (remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Right 0)) ] - - location: 31 (remaining gas: 1039988.864 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair {} (Some (Right 0))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out index 961c9c011ad0cd174ec310a89965a4ae2d1bb858..4e84f9b145ee6d469e4210dbc6a8d89c282030fb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Right (Pair 42 21)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Right (Pair 42 21)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair 42 21) ] - - location: 24 (remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010) [ 42 21 ] - - location: 25 (remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035) [ 63 ] - - location: 26 (remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Right 63) ] - - location: 17 (remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Right 63) ] - - location: 28 (remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Right 63)) ] - - location: 29 (remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Right 63)) ] - - location: 31 (remaining gas: 1039988.864 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair {} (Some (Right 63))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out index 56f7ca0a8959cce4c97f241d5f06ed7dbee8ffe1..12da5f927b1e055004a522e6a318669583496c63 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Right (Pair 42 63)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Right (Pair 42 63)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair 42 63) ] - - location: 24 (remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010) [ 42 63 ] - - location: 25 (remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035) [ 21 ] - - location: 26 (remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Right 21) ] - - location: 17 (remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Right 21) ] - - location: 28 (remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Right 21)) ] - - location: 29 (remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Right 21)) ] - - location: 31 (remaining gas: 1039988.864 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair {} (Some (Right 21))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_hash_consistency_michelson_cli.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_hash_consistency_michelson_cli.out index f1bc7e15e20808e9eafaed13af5849ad96d712ef..0f0d1f6cdcbe19099194c5e2a6dcac990bb9b353 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_hash_consistency_michelson_cli.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_hash_consistency_michelson_cli.out @@ -14,18 +14,18 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039993.856 units remaining) + - location: 11 (just consumed gas: 6.144) [ (Pair (Pair 22220000000 "2017-12-13T04:49:00Z" 34) 0x00) ] - - location: 11 (remaining gas: 1039993.846 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 22220000000 "2017-12-13T04:49:00Z" 34) ] - - location: 12 (remaining gas: 1039992.516 units remaining) + - location: 12 (just consumed gas: 1.330) [ 0x0507070080acd2c6a501070700bcc485a30b0022 ] - - location: 13 (remaining gas: 1039992.064 units remaining) + - location: 13 (just consumed gas: 0.452) [ 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 14 (remaining gas: 1039992.054 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 16 (remaining gas: 1039992.044 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc) ] storage @@ -35,17 +35,17 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039993.856 units remaining) + - location: 11 (just consumed gas: 6.144) [ (Pair (Pair 22220000000 "2017-12-13T04:49:00Z" 34) 0x00) ] - - location: 11 (remaining gas: 1039993.846 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 22220000000 "2017-12-13T04:49:00Z" 34) ] - - location: 12 (remaining gas: 1039992.516 units remaining) + - location: 12 (just consumed gas: 1.330) [ 0x0507070080acd2c6a501070700bcc485a30b0022 ] - - location: 13 (remaining gas: 1039992.064 units remaining) + - location: 13 (just consumed gas: 0.452) [ 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 14 (remaining gas: 1039992.054 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 16 (remaining gas: 1039992.044 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_level.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_level.out index 3fd53e9ec357fbb44c2ca1b0858da7677411735c..6d81558e6abe3a20ea7a93994e51b4bec473592e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_level.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_level.out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 9999999) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 10 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 10 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} 10) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_map_map_sideeffect[map_map_sideeffect.tz-(Pair { Elt \"bar\" 5 ; Elt \"foo\" 1 } .480b9afc63.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_map_map_sideeffect[map_map_sideeffect.tz-(Pair { Elt \"bar\" 5 ; Elt \"foo\" 1 } .480b9afc63.out" index d5275ad1baa602efd0616a45ffbc3b6fbec9a336..32df9ade45ebfff104905682df7c9ec0570d3cba 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_map_map_sideeffect[map_map_sideeffect.tz-(Pair { Elt \"bar\" 5 ; Elt \"foo\" 1 } .480b9afc63.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_map_map_sideeffect[map_map_sideeffect.tz-(Pair { Elt \"bar\" 5 ; Elt \"foo\" 1 } .480b9afc63.out" @@ -7,149 +7,149 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039982.728 units remaining) + - location: 11 (just consumed gas: 17.272) [ (Pair 15 { Elt "bar" 5 ; Elt "foo" 1 } 6) ] - - location: 11 (remaining gas: 1039982.718 units remaining) + - location: 11 (just consumed gas: 0.010) [ 15 (Pair { Elt "bar" 5 ; Elt "foo" 1 } 6) ] - - location: 12 (remaining gas: 1039982.708 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { Elt "bar" 5 ; Elt "foo" 1 } 6) 15 ] - - location: 13 (remaining gas: 1039982.698 units remaining) + - location: 13 (just consumed gas: 0.010) [ { Elt "bar" 5 ; Elt "foo" 1 } 15 ] - - location: 14 (remaining gas: 1039982.698 units remaining) + - location: 14 (just consumed gas: 0) [ ] - - location: 17 (remaining gas: 1039982.688 units remaining) + - location: 17 (just consumed gas: 0.010) [ 0 ] - - location: 14 (remaining gas: 1039982.663 units remaining) + - location: 14 (just consumed gas: 0.025) [ 15 0 ] - - location: 14 (remaining gas: 1039982.653 units remaining) + - location: 14 (just consumed gas: 0.010) [ { Elt "bar" 5 ; Elt "foo" 1 } 15 0 ] - - location: 14 (remaining gas: 1039982.653 units remaining) + - location: 14 (just consumed gas: 0) [ { Elt "bar" 5 ; Elt "foo" 1 } 15 0 ] - - location: 20 (remaining gas: 1039982.653 units remaining) + - location: 20 (just consumed gas: 0) [ (Pair "bar" 5) 15 0 ] - - location: 22 (remaining gas: 1039982.643 units remaining) + - location: 22 (just consumed gas: 0.010) [ 5 15 0 ] - - location: 23 (remaining gas: 1039982.643 units remaining) + - location: 23 (just consumed gas: 0) [ 15 0 ] - - location: 25 (remaining gas: 1039982.633 units remaining) + - location: 25 (just consumed gas: 0.010) [ 15 15 0 ] - - location: 23 (remaining gas: 1039982.608 units remaining) + - location: 23 (just consumed gas: 0.025) [ 5 15 15 0 ] - - location: 26 (remaining gas: 1039982.573 units remaining) + - location: 26 (just consumed gas: 0.035) [ 20 15 0 ] - - location: 27 (remaining gas: 1039982.563 units remaining) + - location: 27 (just consumed gas: 0.010) [ 20 20 15 0 ] - - location: 28 (remaining gas: 1039982.515 units remaining) + - location: 28 (just consumed gas: 0.048) [ 20 15 20 0 ] - - location: 30 (remaining gas: 1039982.515 units remaining) + - location: 30 (just consumed gas: 0) [ 20 0 ] - - location: 33 (remaining gas: 1039982.480 units remaining) + - location: 33 (just consumed gas: 0.035) [ 20 ] - - location: 30 (remaining gas: 1039982.455 units remaining) + - location: 30 (just consumed gas: 0.025) [ 15 20 ] - - location: 30 (remaining gas: 1039982.445 units remaining) + - location: 30 (just consumed gas: 0.010) [ 20 15 20 ] - - location: 30 (remaining gas: 1039982.445 units remaining) + - location: 30 (just consumed gas: 0) [ 20 15 20 ] - - location: 20 (remaining gas: 1039982.430 units remaining) + - location: 20 (just consumed gas: 0.015) [ (Pair "foo" 1) 15 20 ] - - location: 22 (remaining gas: 1039982.420 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 15 20 ] - - location: 23 (remaining gas: 1039982.420 units remaining) + - location: 23 (just consumed gas: 0) [ 15 20 ] - - location: 25 (remaining gas: 1039982.410 units remaining) + - location: 25 (just consumed gas: 0.010) [ 15 15 20 ] - - location: 23 (remaining gas: 1039982.385 units remaining) + - location: 23 (just consumed gas: 0.025) [ 1 15 15 20 ] - - location: 26 (remaining gas: 1039982.350 units remaining) + - location: 26 (just consumed gas: 0.035) [ 16 15 20 ] - - location: 27 (remaining gas: 1039982.340 units remaining) + - location: 27 (just consumed gas: 0.010) [ 16 16 15 20 ] - - location: 28 (remaining gas: 1039982.292 units remaining) + - location: 28 (just consumed gas: 0.048) [ 16 15 16 20 ] - - location: 30 (remaining gas: 1039982.292 units remaining) + - location: 30 (just consumed gas: 0) [ 16 20 ] - - location: 33 (remaining gas: 1039982.257 units remaining) + - location: 33 (just consumed gas: 0.035) [ 36 ] - - location: 30 (remaining gas: 1039982.232 units remaining) + - location: 30 (just consumed gas: 0.025) [ 15 36 ] - - location: 30 (remaining gas: 1039982.222 units remaining) + - location: 30 (just consumed gas: 0.010) [ 16 15 36 ] - - location: 30 (remaining gas: 1039982.222 units remaining) + - location: 30 (just consumed gas: 0) [ 16 15 36 ] - - location: 20 (remaining gas: 1039982.207 units remaining) + - location: 20 (just consumed gas: 0.015) [ { Elt "bar" 20 ; Elt "foo" 16 } 15 36 ] - - location: 34 (remaining gas: 1039982.207 units remaining) + - location: 34 (just consumed gas: 0) [ 15 36 ] - - location: 36 (remaining gas: 1039982.197 units remaining) + - location: 36 (just consumed gas: 0.010) [ 36 ] - - location: 34 (remaining gas: 1039982.172 units remaining) + - location: 34 (just consumed gas: 0.025) [ { Elt "bar" 20 ; Elt "foo" 16 } 36 ] - - location: 37 (remaining gas: 1039982.162 units remaining) + - location: 37 (just consumed gas: 0.010) [ (Pair { Elt "bar" 20 ; Elt "foo" 16 } 36) ] - - location: 38 (remaining gas: 1039982.152 units remaining) + - location: 38 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 20 ; Elt "foo" 16 } 36) ] - - location: 40 (remaining gas: 1039982.142 units remaining) + - location: 40 (just consumed gas: 0.010) [ (Pair {} { Elt "bar" 20 ; Elt "foo" 16 } 36) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_map_map_sideeffect[map_map_sideeffect.tz-(Pair { Elt \"foo\" 1 } 1)-10-(Pair { .811573b5a7.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_map_map_sideeffect[map_map_sideeffect.tz-(Pair { Elt \"foo\" 1 } 1)-10-(Pair { .811573b5a7.out" index 07c8fdd630b67fafeee414c89b60b78c2e9f8e49..eaf182bacb315c39a4d4cd547a3fd49cb811b98b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_map_map_sideeffect[map_map_sideeffect.tz-(Pair { Elt \"foo\" 1 } 1)-10-(Pair { .811573b5a7.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_map_map_sideeffect[map_map_sideeffect.tz-(Pair { Elt \"foo\" 1 } 1)-10-(Pair { .811573b5a7.out" @@ -7,99 +7,99 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039983.099 units remaining) + - location: 11 (just consumed gas: 16.901) [ (Pair 10 { Elt "foo" 1 } 1) ] - - location: 11 (remaining gas: 1039983.089 units remaining) + - location: 11 (just consumed gas: 0.010) [ 10 (Pair { Elt "foo" 1 } 1) ] - - location: 12 (remaining gas: 1039983.079 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { Elt "foo" 1 } 1) 10 ] - - location: 13 (remaining gas: 1039983.069 units remaining) + - location: 13 (just consumed gas: 0.010) [ { Elt "foo" 1 } 10 ] - - location: 14 (remaining gas: 1039983.069 units remaining) + - location: 14 (just consumed gas: 0) [ ] - - location: 17 (remaining gas: 1039983.059 units remaining) + - location: 17 (just consumed gas: 0.010) [ 0 ] - - location: 14 (remaining gas: 1039983.034 units remaining) + - location: 14 (just consumed gas: 0.025) [ 10 0 ] - - location: 14 (remaining gas: 1039983.024 units remaining) + - location: 14 (just consumed gas: 0.010) [ { Elt "foo" 1 } 10 0 ] - - location: 14 (remaining gas: 1039983.024 units remaining) + - location: 14 (just consumed gas: 0) [ { Elt "foo" 1 } 10 0 ] - - location: 20 (remaining gas: 1039983.024 units remaining) + - location: 20 (just consumed gas: 0) [ (Pair "foo" 1) 10 0 ] - - location: 22 (remaining gas: 1039983.014 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 10 0 ] - - location: 23 (remaining gas: 1039983.014 units remaining) + - location: 23 (just consumed gas: 0) [ 10 0 ] - - location: 25 (remaining gas: 1039983.004 units remaining) + - location: 25 (just consumed gas: 0.010) [ 10 10 0 ] - - location: 23 (remaining gas: 1039982.979 units remaining) + - location: 23 (just consumed gas: 0.025) [ 1 10 10 0 ] - - location: 26 (remaining gas: 1039982.944 units remaining) + - location: 26 (just consumed gas: 0.035) [ 11 10 0 ] - - location: 27 (remaining gas: 1039982.934 units remaining) + - location: 27 (just consumed gas: 0.010) [ 11 11 10 0 ] - - location: 28 (remaining gas: 1039982.886 units remaining) + - location: 28 (just consumed gas: 0.048) [ 11 10 11 0 ] - - location: 30 (remaining gas: 1039982.886 units remaining) + - location: 30 (just consumed gas: 0) [ 11 0 ] - - location: 33 (remaining gas: 1039982.851 units remaining) + - location: 33 (just consumed gas: 0.035) [ 11 ] - - location: 30 (remaining gas: 1039982.826 units remaining) + - location: 30 (just consumed gas: 0.025) [ 10 11 ] - - location: 30 (remaining gas: 1039982.816 units remaining) + - location: 30 (just consumed gas: 0.010) [ 11 10 11 ] - - location: 30 (remaining gas: 1039982.816 units remaining) + - location: 30 (just consumed gas: 0) [ 11 10 11 ] - - location: 20 (remaining gas: 1039982.801 units remaining) + - location: 20 (just consumed gas: 0.015) [ { Elt "foo" 11 } 10 11 ] - - location: 34 (remaining gas: 1039982.801 units remaining) + - location: 34 (just consumed gas: 0) [ 10 11 ] - - location: 36 (remaining gas: 1039982.791 units remaining) + - location: 36 (just consumed gas: 0.010) [ 11 ] - - location: 34 (remaining gas: 1039982.766 units remaining) + - location: 34 (just consumed gas: 0.025) [ { Elt "foo" 11 } 11 ] - - location: 37 (remaining gas: 1039982.756 units remaining) + - location: 37 (just consumed gas: 0.010) [ (Pair { Elt "foo" 11 } 11) ] - - location: 38 (remaining gas: 1039982.746 units remaining) + - location: 38 (just consumed gas: 0.010) [ {} (Pair { Elt "foo" 11 } 11) ] - - location: 40 (remaining gas: 1039982.736 units remaining) + - location: 40 (just consumed gas: 0.010) [ (Pair {} { Elt "foo" 11 } 11) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_map_map_sideeffect[map_map_sideeffect.tz-(Pair {} 0)-10-(Pair {} 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_map_map_sideeffect[map_map_sideeffect.tz-(Pair {} 0)-10-(Pair {} 0)].out index 7b31a83abe22a9f1d61898c74b626726b1284406..40eae9ea6a869d74020550a83657599b51b8b7b4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_map_map_sideeffect[map_map_sideeffect.tz-(Pair {} 0)-10-(Pair {} 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_map_map_sideeffect[map_map_sideeffect.tz-(Pair {} 0)-10-(Pair {} 0)].out @@ -7,49 +7,49 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039983.429 units remaining) + - location: 11 (just consumed gas: 16.571) [ (Pair 10 {} 0) ] - - location: 11 (remaining gas: 1039983.419 units remaining) + - location: 11 (just consumed gas: 0.010) [ 10 (Pair {} 0) ] - - location: 12 (remaining gas: 1039983.409 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0) 10 ] - - location: 13 (remaining gas: 1039983.399 units remaining) + - location: 13 (just consumed gas: 0.010) [ {} 10 ] - - location: 14 (remaining gas: 1039983.399 units remaining) + - location: 14 (just consumed gas: 0) [ ] - - location: 17 (remaining gas: 1039983.389 units remaining) + - location: 17 (just consumed gas: 0.010) [ 0 ] - - location: 14 (remaining gas: 1039983.364 units remaining) + - location: 14 (just consumed gas: 0.025) [ 10 0 ] - - location: 14 (remaining gas: 1039983.354 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} 10 0 ] - - location: 14 (remaining gas: 1039983.354 units remaining) + - location: 14 (just consumed gas: 0) [ {} 10 0 ] - - location: 20 (remaining gas: 1039983.354 units remaining) + - location: 20 (just consumed gas: 0) [ {} 10 0 ] - - location: 34 (remaining gas: 1039983.354 units remaining) + - location: 34 (just consumed gas: 0) [ 10 0 ] - - location: 36 (remaining gas: 1039983.344 units remaining) + - location: 36 (just consumed gas: 0.010) [ 0 ] - - location: 34 (remaining gas: 1039983.319 units remaining) + - location: 34 (just consumed gas: 0.025) [ {} 0 ] - - location: 37 (remaining gas: 1039983.309 units remaining) + - location: 37 (just consumed gas: 0.010) [ (Pair {} 0) ] - - location: 38 (remaining gas: 1039983.299 units remaining) + - location: 38 (just consumed gas: 0.010) [ {} (Pair {} 0) ] - - location: 40 (remaining gas: 1039983.289 units remaining) + - location: 40 (just consumed gas: 0.010) [ (Pair {} {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_now.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_now.out index 725d11c9a19dd5ad4429138885a356a640549ab2..0aa15c4a8353bebf1c17c38b2663c3d1295f2311 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_now.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_now.out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039995.625 units remaining) + - location: 7 (just consumed gas: 4.375) [ (Pair Unit "2017-07-13T09:19:01Z") ] - - location: 7 (remaining gas: 1039995.615 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (remaining gas: 1039995.605 units remaining) + - location: 8 (just consumed gas: 0.010) [ "2021-10-13T10:16:52Z" ] - - location: 9 (remaining gas: 1039995.595 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} "2021-10-13T10:16:52Z" ] - - location: 11 (remaining gas: 1039995.585 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair {} "2021-10-13T10:16:52Z") ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_packunpack.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_packunpack.out index 4f6fb982a3d14dc3a6f8f8a524e34f84bd6a2d5f..8a1a26f099506d88806a561b4b587ede8a4415bb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_packunpack.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_packunpack.out @@ -7,53 +7,53 @@ emitted operations big_map diff trace - - location: 15 (remaining gas: 1039980.231 units remaining) + - location: 15 (just consumed gas: 19.769) [ (Pair (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003) Unit) ] - - location: 15 (remaining gas: 1039980.221 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003) ] - - location: 16 (remaining gas: 1039980.211 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 17 (remaining gas: 1039980.211 units remaining) + - location: 17 (just consumed gas: 0) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 19 (remaining gas: 1039980.201 units remaining) + - location: 19 (just consumed gas: 0.010) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 17 (remaining gas: 1039980.176 units remaining) + - location: 17 (just consumed gas: 0.025) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 20 (remaining gas: 1039977.369 units remaining) + - location: 20 (just consumed gas: 2.807) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 23 (remaining gas: 1039977.334 units remaining) + - location: 23 (just consumed gas: 0.035) [ 0 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 24 (remaining gas: 1039977.324 units remaining) + - location: 24 (just consumed gas: 0.010) [ True 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 25 (remaining gas: 1039977.324 units remaining) + - location: 25 (just consumed gas: 0) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 25 (remaining gas: 1039977.309 units remaining) + - location: 25 (just consumed gas: 0.015) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 31 (remaining gas: 1039974.556 units remaining) + - location: 31 (just consumed gas: 2.753) [ (Some (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 })) ] - - location: 40 (remaining gas: 1039974.556 units remaining) + - location: 40 (just consumed gas: 0) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) ] - - location: 40 (remaining gas: 1039974.541 units remaining) + - location: 40 (just consumed gas: 0.015) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) ] - - location: 46 (remaining gas: 1039974.531 units remaining) + - location: 46 (just consumed gas: 0.010) [ ] - - location: 47 (remaining gas: 1039974.521 units remaining) + - location: 47 (just consumed gas: 0.010) [ Unit ] - - location: 48 (remaining gas: 1039974.511 units remaining) + - location: 48 (just consumed gas: 0.010) [ {} Unit ] - - location: 50 (remaining gas: 1039974.501 units remaining) + - location: 50 (just consumed gas: 0.010) [ (Pair {} Unit) ] Runtime error in contract [CONTRACT_HASH]: @@ -68,38 +68,38 @@ At line 4 characters 14 to 26, script reached FAILWITH instruction with Unit trace - - location: 15 (remaining gas: 1039980.231 units remaining) + - location: 15 (just consumed gas: 19.769) [ (Pair (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004) Unit) ] - - location: 15 (remaining gas: 1039980.221 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004) ] - - location: 16 (remaining gas: 1039980.211 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 17 (remaining gas: 1039980.211 units remaining) + - location: 17 (just consumed gas: 0) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 19 (remaining gas: 1039980.201 units remaining) + - location: 19 (just consumed gas: 0.010) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 17 (remaining gas: 1039980.176 units remaining) + - location: 17 (just consumed gas: 0.025) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 20 (remaining gas: 1039977.369 units remaining) + - location: 20 (just consumed gas: 2.807) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 23 (remaining gas: 1039977.334 units remaining) + - location: 23 (just consumed gas: 0.035) [ -1 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 24 (remaining gas: 1039977.324 units remaining) + - location: 24 (just consumed gas: 0.010) [ False 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 25 (remaining gas: 1039977.324 units remaining) + - location: 25 (just consumed gas: 0) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 29 (remaining gas: 1039977.314 units remaining) + - location: 29 (just consumed gas: 0.010) [ Unit 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] Fatal error: