From d16a24ac34a925def5b6d3a8084b24c49923373c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Cauderlier?= Date: Tue, 11 Oct 2022 22:08:29 +0200 Subject: [PATCH 1/5] Proto+Plugin/Michelson: enrich execution traces with "just consumed gas" Before this patch, Michelson execution traces contain at each execution step the amount of remaining gas at the given step. This commit adds the difference between this amount and the last reported one, or in other words the amount of gas that was consumed during the execution of the last step (or everything happening before we start executing the script in the case of the very first line of the trace). This is both more informative for the user (who can more easily see which steps consumes more or less gas) and more stable for regression testing (only the lines corresponding to changes in gas costs appear in the diff). Moreover, the special case of "just consumed gas: 0" hints at gas-free instructions which we should probably avoid in general. --- .../lib_client/michelson_v1_printer.ml | 11 +++++---- .../lib_client/michelson_v1_printer.mli | 2 +- src/proto_alpha/lib_plugin/RPC.ml | 24 +++++++++++-------- .../lib_protocol/script_interpreter.ml | 7 +++--- .../lib_protocol/script_typed_ir.ml | 3 ++- .../lib_protocol/script_typed_ir.mli | 3 ++- 6 files changed, 30 insertions(+), 20 deletions(-) diff --git a/src/proto_alpha/lib_client/michelson_v1_printer.ml b/src/proto_alpha/lib_client/michelson_v1_printer.ml index f2dc6bc5e870..54728b701d12 100644 --- a/src/proto_alpha/lib_client/michelson_v1_printer.ml +++ b/src/proto_alpha/lib_client/michelson_v1_printer.ml @@ -52,15 +52,18 @@ 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) -> + (fun ppf (loc, gas, remaining, stack) -> Format.fprintf ppf - "- @[location: %d (remaining gas: %a)@,[ @[%a ]@]@]" + "- @[location: %d (just consumed gas: %a, remaining gas: %a)@,\ + [ @[%a ]@]@]" loc - Gas.pp + Gas.Arith.pp gas + Gas.pp + remaining (Format.pp_print_list (fun ppf e -> Format.fprintf ppf "@[%a@]" print_expr e)) stack) diff --git a/src/proto_alpha/lib_client/michelson_v1_printer.mli b/src/proto_alpha/lib_client/michelson_v1_printer.mli index 8b7ec8dfaa30..78e200929221 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 f61e70eb899f..c835a186420f 100644 --- a/src/proto_alpha/lib_plugin/RPC.ml +++ b/src/proto_alpha/lib_plugin/RPC.ml @@ -192,11 +192,12 @@ 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 + @@ obj4 (req "location" Script.location_encoding) - (req "gas" Gas.encoding) + (req "gas" Gas.Arith.z_fp_encoding) + (req "remaining_gas" Gas.encoding) (req "stack" (list Script.expr_encoding)) let trace_code_output_encoding = @@ -498,7 +499,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 +510,22 @@ 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, Gas.level ctxt, 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 b4082a272d63..51afdbf31b93 100644 --- a/src/proto_alpha/lib_protocol/script_interpreter.ml +++ b/src/proto_alpha/lib_protocol/script_interpreter.ml @@ -118,11 +118,12 @@ 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 + @@ obj4 (req "location" Script.location_encoding) - (req "gas" Gas.encoding) + (req "gas" Gas.Arith.z_fp_encoding) + (req "remaining_gas" Gas.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 f5d22f44948b..205f6f71a5ac 100644 --- a/src/proto_alpha/lib_protocol/script_typed_ir.ml +++ b/src/proto_alpha/lib_protocol/script_typed_ir.ml @@ -1217,7 +1217,8 @@ 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 * Gas.t * 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 facd7ceb5e8e..9136293f4ff3 100644 --- a/src/proto_alpha/lib_protocol/script_typed_ir.mli +++ b/src/proto_alpha/lib_protocol/script_typed_ir.mli @@ -1303,7 +1303,8 @@ 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 * Gas.t * Script.expr list) list and logger = { log_interp : 'a 's 'b 'f 'c 'u. ('a, 's, 'b, 'f, 'c, 'u) logging_function; -- GitLab From 8057dc3ff14ffc44011fe3cc417e7dcb97ea304d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Cauderlier?= Date: Tue, 11 Oct 2022 22:15:22 +0200 Subject: [PATCH 2/5] Tests/Python: regression traces --- ...(Some 4) {})-\"hello\"-(Pa.f6092ac5d6.out" | 18 +- ...(Some 5) { Elt \"hello\" 4.0427752f13.out" | 18 +- ...(Some 5) { Elt \"hello\" 4.0793dc66d5.out" | 18 +- ...None { Elt \"1\" 1 ; .df114499b8.out" | 18 +- ...None { Elt \"1\" 1 ; .f9bea98de9.out" | 18 +- ...None { Elt \"hello\" 4 })-.1db12cd837.out" | 18 +- ...None {})-\"hello\"-(Pair N.6fc7d0acf2.out" | 18 +- ..." \"one\" ; Elt \"2\" \"tw.524c5459f8.out" | 26 +- ...ello\" \"hi\" } None)-\"\".33eba403e7.out" | 26 +- ...hello\" \"hi\" } None)-\"h.a5cd1005c9.out" | 26 +- ...one\" ; Elt \"2\" \"two\" .6f3d35b151.out" | 18 +- ...one\" ; Elt \"2\" \"two\" .76aeaa0706.out" | 24 +- ...one\" ; Elt \"2\" \"two\" .7e7197f248.out" | 24 +- ...one\" ; Elt \"2\" \"two\" .7ef2c415a7.out" | 24 +- ...one\" ; Elt \"2\" \"two\" .b688cc94a7.out" | 24 +- ...one\" ; Elt \"2\" \"two\" .c68db221ed.out" | 24 +- ...erflow[mul_overflow.tz-Unit-Left Unit].out | 10 +- ...rflow[mul_overflow.tz-Unit-Right Unit].out | 10 +- ...ow[shifts.tz-None-(Left (Pair 1 257))].out | 8 +- ...[shifts.tz-None-(Left (Pair 123 257))].out | 8 +- ...w[shifts.tz-None-(Right (Pair 1 257))].out | 8 +- ...shifts.tz-None-(Right (Pair 123 257))].out | 8 +- ...TestContractOpcodes::test_balance[0.5].out | 10 +- ...s.TestContractOpcodes::test_balance[0].out | 10 +- ...estContractOpcodes::test_balance[1000].out | 10 +- ...s.TestContractOpcodes::test_balance[1].out | 10 +- ...stContractOpcodes::test_balance[1e-06].out | 10 +- ...s.TestContractOpcodes::test_balance[5].out | 10 +- ...Opcodes::test_balance[8000000000000.0].out | 10 +- ... \"two\" }) )-(Right (Righ.7492e8cdea.out" | 52 +- ... \"two\" }))-(Left Unit)-(.21b30dd90f.out" | 26 +- ... \"two\" }))-(Right (Left .2873ef610c.out" | 20 +- ... \"two\" }))-(Right (Left .8a6f480005.out" | 20 +- ... \"two\" }))-(Right (Right.d336ca1903.out" | 50 +- ...Pair \"foo\" \"bar\" } { P.7f2ee47600.out" | 80 +- ...tContractOpcodes::test_check_signature.out | 70 +- ...tract_input_output[abs.tz-Unit-0-Unit].out | 24 +- ....tz-Unit-12039123919239192312931-Unit].out | 24 +- ...act_input_output[abs.tz-Unit-948-Unit].out | 24 +- ...ct_input_output[add.tz-Unit-Unit-Unit].out | 136 ++-- ...r 0x00 0x00-(Some 0x0000000.3c2de60480.out | 14 +- ...r 0x01 0x00-(Some 0x0100000.12b2c1172b.out | 14 +- ...r 0x010000 0x00-(Some 0x010.0e44fc6f40.out | 14 +- ...r 0x010000 0x010000-(Some 0.7e0ed229a3.out | 14 +- ...air -100 100)-(Some \"1970.7c1b1e4e5b.out" | 22 +- ...air 0 \"1970-01-01T00:00:0.528ed42c01.out" | 22 +- ...air 100 100)-(Some \"1970-.6566111ad2.out" | 22 +- ...air \"1970-01-01T00:00:00Z.72c424f3da.out" | 22 +- ...air 100 -100)-(Some \"1970.7c4b12e9aa.out" | 22 +- ...air 100 100)-(Some \"1970-.af32743640.out" | 22 +- ...dhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" | 12 +- ...-None-(Pair False False)-(Some False)].out | 18 +- ...z-None-(Pair False True)-(Some False)].out | 18 +- ...z-None-(Pair True False)-(Some False)].out | 18 +- ....tz-None-(Pair True True)-(Some True)].out | 18 +- ...t_output[and_binary.tz-Unit-Unit-Unit].out | 74 +- ...l_1.tz-False-(Pair False False)-False].out | 12 +- ...al_1.tz-False-(Pair False True)-False].out | 12 +- ...al_1.tz-False-(Pair True False)-False].out | 12 +- ...ical_1.tz-False-(Pair True True)-True].out | 12 +- ...put[balance.tz-111-Unit-4000000000000].out | 10 +- ...lt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out | 24 +- ...lt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out | 24 +- ...lt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out | 24 +- ...lt 1 0 } None)-1-(Pair 4 (S.73700321f8.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-1.1182eca937.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-2.1eead33885.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out | 24 +- ...air {} None)-1-(Pair 4 (Some False))0].out | 24 +- ...air {} None)-1-(Pair 4 (Some False))1].out | 24 +- ... \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" | 24 +- ... \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" | 24 +- ... \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" | 24 +- ... \"foo\" 0 } None)-\"foo\".968709d39d.out" | 24 +- ... \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" | 24 +- ... None)-\"bar\"-(Pair 4 (Some False))].out" | 24 +- ...padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out | 12 +- ...e-Unit-(Some 0x100000000000.d1219ca789.out | 12 +- ...utput[bls12_381_fr_to_int.tz-0-0x00-0].out | 10 +- ...utput[bls12_381_fr_to_int.tz-0-0x01-1].out | 10 +- ...8db8e57af88d9576acd181b89f2.7a85c336ff.out | 10 +- ...9e8abf8dc324a010007addde986.b821eb26b3.out | 10 +- ...ut[bls12_381_fr_to_mutez.tz-0-0x10-16].out | 20 +- ...000000000000000000000000000.0accef5bef.out | 10 +- ...000000000000000000000000000.0ecc537252.out | 10 +- ...000000000000000000000000000.2229b767cd.out | 10 +- ...000000000000000000000000000.2ff549b46b.out | 10 +- ...000000000000000000000000000.bf8a711be6.out | 10 +- ...000000000000000000000000000.d41cbb044b.out | 10 +- ...a5ad0a633e4880d2296f08ec5c1.a50412e458.out | 10 +- ...cd0fa853810e356f1eb79721e80.f3a349c4a7.out | 10 +- ...be1766f92cd82c5e5135c374a03.1b9676e4c2.out | 10 +- ...be1766f92cd82c5e5135c374a03.e966dc6de5.out | 10 +- ...000000000000000000000000000.964835cc43.out | 10 +- ...000000000000000000000000000.b25ea709fb.out | 10 +- ...000000000000000000000000000.eae36753ea.out | 10 +- ...000000000000000000000000000.ee57dac8f7.out | 10 +- ...a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out | 10 +- ...cd0fa853810e356f1eb79721e80.bd5800f6b8.out | 10 +- ...be1766f92cd82c5e5135c374a03.00e897789a.out | 10 +- ...be1766f92cd82c5e5135c374a03.a4697eaa13.out | 10 +- ...000000000000000000000000000.0177355bbf.out | 12 +- ...000000000000000000000000000.744166c609.out | 12 +- ...000000000000000000000000000.9f3c5cdc6a.out | 12 +- ...000000000000000000000000000.a54cb341ba.out | 12 +- ...000000000000000000000000000.b0dc584c94.out | 12 +- ...000000000000000000000000000.bddcad090c.out | 12 +- ...a5ad0a633e4880d2296f08ec5c1.92c153eb47.out | 12 +- ...cd0fa853810e356f1eb79721e80.290ab49d11.out | 12 +- ...be1766f92cd82c5e5135c374a03.69f3589a06.out | 12 +- ...be1766f92cd82c5e5135c374a03.fee3c5cf43.out | 12 +- ...000000000000000000000000000.1bccc033e8.out | 12 +- ...000000000000000000000000000.40958700fe.out | 12 +- ...000000000000000000000000000.6c62b03d78.out | 12 +- ...000000000000000000000000000.d23f269341.out | 12 +- ...a5ad0a633e4880d2296f08ec5c1.927f808504.out | 12 +- ...cd0fa853810e356f1eb79721e80.0c114c956a.out | 12 +- ...be1766f92cd82c5e5135c374a03.03c4f38e68.out | 12 +- ...be1766f92cd82c5e5135c374a03.8ed19cfdd9.out | 12 +- ...input_output[car.tz-0-(Pair 34 17)-34].out | 10 +- ...input_output[cdr.tz-0-(Pair 34 17)-17].out | 10 +- ...prcVkpaWU\")-Unit-(Some \".8420090f97.out" | 12 +- ...770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" | 12 +- ...None-Unit-(Some \"NetXdQprcVkpaWU\")].out" | 12 +- ...mb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out | 82 +- ... Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" | 22 +- ...r 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out | 24 +- ...omb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out | 14 +- ...nput_output[compare.tz-Unit-Unit-Unit].out | 358 ++++----- ...; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out | 200 ++--- ...-{ \"World!\" }-{ \"Hello World!\" }].out" | 16 +- ..."test2\" }-{ \"Hello test1.c27e8c3ee6.out" | 22 +- ...input_output[concat_hello.tz-{}-{}-{}].out | 10 +- ...}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out | 22 +- ...hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out | 16 +- ...output[concat_hello_bytes.tz-{}-{}-{}].out | 10 +- ...; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" | 86 +- ...\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" | 68 +- ...t_output[concat_list.tz-\"\"-{}-\"\"].out" | 14 +- ...ns.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out | 10 +- ..._output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out | 10 +- ...act_input_output[cons.tz-{}-10-{ 10 }].out | 10 +- ...ir { \"A\" } { \"B\" })-(Some False)].out" | 100 +-- ...\"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" | 244 +++--- ...\"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" | 266 +++---- ...air { \"B\" } { \"B\" })-(Some True)].out" | 100 +-- ...ir { \"c\" } { \"B\" })-(Some False)].out" | 100 +-- ..._all.tz-None-(Pair {} {})-(Some True)].out | 38 +- ...wnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" | 18 +- ...Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" | 24 +- ...970-01-01T00:03:20Z\" \"19.90e9215d17.out" | 20 +- ...t[diff_timestamps.tz-111-(Pair 0 0)-0].out | 20 +- ...[diff_timestamps.tz-111-(Pair 0 1)--1].out | 20 +- ...t[diff_timestamps.tz-111-(Pair 1 0)-1].out | 20 +- ...r 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out | 748 +++++++++--------- ... 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out | 748 +++++++++--------- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out | 30 +- ...p.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out | 20 +- ...z-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out | 20 +- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out | 42 +- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out | 18 +- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out | 26 +- ..._input_output[dup-n.tz-Unit-Unit-Unit].out | 82 +- ... None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out | 70 +- ... None)-(Pair 10 -3)-(Pair (.3caea50555.out | 70 +- ... None)-(Pair 10 0)-(Pair No.f9448c04fb.out | 70 +- ... None)-(Pair 10 (Left 0))-(Left None)].out | 22 +- ...air 10 (Left 10))-(Left (So.f782cc1dec.out | 22 +- ...air 10 (Left 3))-(Left (Som.016b4db96c.out | 22 +- ...one)-(Pair 10 (Right 0))-(Right None)].out | 22 +- ...air 10 (Right 10))-(Right (.e705a30e07.out | 22 +- ...air 10 (Right 3))-(Right (S.44485eda6a.out | 22 +- ...air 5 (Right 10))-(Right (S.8ab987af15.out | 22 +- ...t_input_output[emit.tz-Unit-Unit-Unit].out | 30 +- ...-{}-Unit-{ Elt \"hello\" \"world\" }].out" | 18 +- ...t[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" | 28 +- ...oncat.tz-\"?\"-\"test\"-\"test_abc\"].out" | 28 +- ...tput[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out | 18 +- ...act_input_output[first.tz-111-{ 4 }-4].out | 18 +- ...me 4) {})-\"hello\"-(Pair .161d86cef6.out" | 18 +- ...me 5) { Elt \"hello\" 4 }).684ab7e326.out" | 18 +- ...me 5) { Elt \"hello\" 4 }).d49817fb83.out" | 18 +- ...e { Elt \"1\" 1 ; .6900b1da14.out" | 18 +- ...e { Elt \"1\" 1 ; .bca0ede8be.out" | 18 +- ... { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" | 18 +- ...ir None {})-\"hello\"-(Pair None {})].out" | 18 +- ... \"1\" \"one\" ; .bc4127094e.out" | 24 +- ..."hello\" \"hi\" })-\"\"-(P.0c03056487.out" | 24 +- ...\"hello\" \"hi\" })-\"hell.cc45544c66.out" | 24 +- ...nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" | 12 +- ...2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" | 12 +- ...xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" | 12 +- ...-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" | 12 +- ..._output[if.tz-None-False-(Some False)].out | 16 +- ...ut_output[if.tz-None-True-(Some True)].out | 16 +- ....tz-\"?\"-(Some \"hello\")-\"hello\"].out" | 12 +- ...ut_output[if_some.tz-\"?\"-None-\"\"].out" | 14 +- ...t_input_output[int.tz-None-0-(Some 0)].out | 12 +- ...t_input_output[int.tz-None-1-(Some 1)].out | 12 +- ...t_output[int.tz-None-9999-(Some 9999)].out | 12 +- ...c20776f726c6421-(Some 0xb6e.34c02678c9.out | 12 +- ...Left \"X\")-(Left True)-(Right True)].out" | 14 +- ...ft \"X\")-(Right \"a\")-(Left \"a\")].out" | 14 +- ...ract_input_output[level.tz-111-Unit-1].out | 10 +- ...{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" | 14 +- ...ut[list_concat.tz-\"abc\"-{}-\"abc\"].out" | 14 +- ...tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out | 14 +- ..._output[list_concat_bytes.tz-0x-{}-0x].out | 14 +- ...b-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out | 14 +- ...list_concat_bytes.tz-0xabcd-{}-0xabcd].out | 14 +- ... ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" | 8 +- ... ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 8 +- ...input_output[list_id.tz-{\"\"}-{}-{}].out" | 8 +- ... ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" | 16 +- ... ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 16 +- ...t_output[list_id_map.tz-{\"\"}-{}-{}].out" | 10 +- ...tput[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out | 26 +- ...tput[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out | 26 +- ...}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out | 92 +-- ...}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out | 92 +-- ...ut_output[list_map_block.tz-{0}-{}-{}].out | 20 +- ...ze.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out | 10 +- ...tput[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out | 10 +- ...input_output[list_size.tz-111-{ 1 }-1].out | 10 +- ...ct_input_output[list_size.tz-111-{}-0].out | 10 +- ... ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 120 +-- ...put_output[loop_left.tz-{\"\"}-{}-{}].out" | 36 +- ...0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out | 8 +- ...[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out | 8 +- ...[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out | 8 +- ... Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out | 94 +-- ...-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out | 94 +-- ...foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" | 42 +- ...lt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" | 30 +- ...ract_input_output[map_map.tz-{}-10-{}].out | 18 +- ... 1 } None)-1-(Pair { Elt 0 .7396e5f090.out | 24 +- ... 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out | 24 +- ... 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out | 24 +- ... 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out | 24 +- ... 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out | 24 +- ...air {} None)-1-(Pair {} (Some False))].out | 24 +- ...ar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" | 24 +- ...ar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" | 24 +- ...ar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" | 24 +- ...oo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" | 24 +- ...oo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" | 24 +- ...None)-\"bar\"-(Pair {} (Some False))].out" | 24 +- ... \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" | 10 +- ...\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" | 10 +- ...ut[map_size.tz-111-{ Elt \"a\" 1 }-1].out" | 10 +- ...act_input_output[map_size.tz-111-{}-0].out | 10 +- ...ct_input_output[mul.tz-Unit-Unit-Unit].out | 108 +-- ...0-257-0x0101000000000000000.be11332c7f.out | 24 +- ...2-16-0x10000000000000000000.8230fb4fac.out | 24 +- ...act_input_output[neg.tz-0-(Left -2)-2].out | 14 +- ...ract_input_output[neg.tz-0-(Left 0)-0].out | 14 +- ...act_input_output[neg.tz-0-(Left 2)--2].out | 14 +- ...act_input_output[neg.tz-0-(Right 0)-0].out | 14 +- ...ct_input_output[neg.tz-0-(Right 2)--2].out | 14 +- ...nput_output[none.tz-Some 10-Unit-None].out | 10 +- ..._output[not.tz-None-False-(Some True)].out | 12 +- ..._output[not.tz-None-True-(Some False)].out | 12 +- ...not_binary.tz-None-(Left -8)-(Some 7)].out | 16 +- ...not_binary.tz-None-(Left -9)-(Some 8)].out | 16 +- ...not_binary.tz-None-(Left 0)-(Some -1)].out | 16 +- ...not_binary.tz-None-(Left 7)-(Some -8)].out | 16 +- ...not_binary.tz-None-(Left 8)-(Some -9)].out | 16 +- ...ot_binary.tz-None-(Right 0)-(Some -1)].out | 16 +- ...ot_binary.tz-None-(Right 7)-(Some -8)].out | 16 +- ...ot_binary.tz-None-(Right 8)-(Some -9)].out | 16 +- ...-None-(Pair False False)-(Some False)].out | 20 +- ...tz-None-(Pair False True)-(Some True)].out | 20 +- ...tz-None-(Pair True False)-(Some True)].out | 20 +- ....tz-None-(Pair True True)-(Some True)].out | 20 +- ...or_binary.tz-None-(Pair 0 8)-(Some 8)].out | 14 +- ..._binary.tz-None-(Pair 14 1)-(Some 15)].out | 14 +- ..._binary.tz-None-(Pair 15 4)-(Some 15)].out | 14 +- ...r_binary.tz-None-(Pair 4 8)-(Some 12)].out | 14 +- ...or_binary.tz-None-(Pair 7 7)-(Some 7)].out | 14 +- ...or_binary.tz-None-(Pair 8 0)-(Some 8)].out | 14 +- ... (Pair 1 (Pair \"foobar\".368bdfd73a.out" | 282 +++---- ... (Pair 1 (Pair \"foobar\".735d9ae802.out" | 282 +++---- ...ir \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" | 342 ++++---- ...ir \"edpkuBknW28nW72KG6RoH.4e20b52378.out" | 342 ++++---- ...alse False)-(Some (Pair False False))].out | 10 +- ... False True)-(Some (Pair False True))].out | 10 +- ... True False)-(Some (Pair True False))].out | 10 +- ...ir True True)-(Some (Pair True True))].out | 10 +- ...ntract_input_output[pexec.tz-14-38-52].out | 28 +- ... 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out | 148 ++-- ...utput[ret_int.tz-None-Unit-(Some 300)].out | 12 +- ... ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 26 +- ...input_output[reverse.tz-{\"\"}-{}-{}].out" | 14 +- ... ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 76 +- ..._output[reverse_loop.tz-{\"\"}-{}-{}].out" | 28 +- ...tput[sapling_empty_state.tz-{}-Unit-0].out | 10 +- ...output[self_address.tz-Unit-Unit-Unit].out | 32 +- ..._default_entrypoint.tz-Unit-Unit-Unit].out | 34 +- ...entrypoint.tz-Unit-Left (Left 0)-Unit].out | 70 +- ...Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" | 28 +- ..."hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" | 28 +- ...lo\" 0)-\"world\"-(Pair \"world\" 0)].out" | 28 +- ...ir \"hello\" 0)-1-(Pair \"hello\" 1)].out" | 26 +- ... \"hello\" 500)-3-(Pair \"hello\" 3)].out" | 26 +- ..."hello\" 7)-100-(Pair \"hello\" 100)].out" | 26 +- ... ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 8 +- ...; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" | 8 +- ...tract_input_output[set_id.tz-{}-{}-{}].out | 8 +- ..._iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out | 30 +- ..._input_output[set_iter.tz-111-{ 1 }-1].out | 18 +- ...act_input_output[set_iter.tz-111-{}-0].out | 14 +- ..."World\" } None)-\"\"-(Pai.3d2044726e.out" | 36 +- ...)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" | 36 +- ... None)-\"Hi\"-(Pair {} (Some False))].out" | 36 +- ...ze.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out | 10 +- ...utput[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out | 10 +- ..._input_output[set_size.tz-111-{ 1 }-1].out | 10 +- ...act_input_output[set_size.tz-111-{}-0].out | 10 +- ...0776f726c6421-(Some 0xf345a.a07ae9dddf.out | 12 +- ...ts.tz-None-(Left (Pair 0 0))-(Some 0)].out | 18 +- ...ts.tz-None-(Left (Pair 0 1))-(Some 0)].out | 18 +- ...ts.tz-None-(Left (Pair 1 2))-(Some 4)].out | 18 +- ....tz-None-(Left (Pair 15 2))-(Some 60)].out | 18 +- ...s.tz-None-(Left (Pair 8 1))-(Some 16)].out | 18 +- ...s.tz-None-(Right (Pair 0 0))-(Some 0)].out | 18 +- ...s.tz-None-(Right (Pair 0 1))-(Some 0)].out | 18 +- ...s.tz-None-(Right (Pair 1 2))-(Some 0)].out | 18 +- ....tz-None-(Right (Pair 15 2))-(Some 3)].out | 18 +- ...s.tz-None-(Right (Pair 8 1))-(Some 4)].out | 18 +- ...ut_output[slice.tz-None-Pair 0 0-None].out | 18 +- ...tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" | 20 +- ...slice.tz-Some \"Foo\"-Pair 0 10-None].out" | 20 +- ...-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" | 20 +- ...z-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" | 20 +- ...[slice.tz-Some \"Foo\"-Pair 1 3-None].out" | 20 +- ...slice.tz-Some \"Foo\"-Pair 10 5-None].out" | 20 +- ...FooFooFooFooFooFooFooFooFo.c508d67bb0.out" | 20 +- ...put[slice_bytes.tz-None-Pair 0 1-None].out | 18 +- ...s.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out | 20 +- ...tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out | 20 +- ...z-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out | 20 +- ...z-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out | 20 +- ...-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out | 20 +- ..._bytes.tz-Some 0xaabbcc-Pair 1 3-None].out | 20 +- ...aabbccaabbccaabbccaabbccaab.df5895de85.out | 20 +- ...d.tz-None-\"Hello\"-(Some \"Hello\")].out" | 10 +- ..._id.tz-None-\"abcd\"-(Some \"abcd\")].out" | 10 +- ...r 100 -100)-\"1970-01-01T00:03:20Z\"].out" | 20 +- ...ir 100 100)-\"1970-01-01T00:00:00Z\"].out" | 20 +- ...Pair 100 200000000000000000.3db82d2c25.out | 20 +- ...00000 1000000)-(Some (Pair .b461aa042b.out | 46 +- ...10000 1010000)-(Some (Pair .1e8cf7679c.out | 46 +- ...t_output[uncomb.tz-0-(Pair 1 4 2)-142].out | 24 +- ...input_output[unpair.tz-Unit-Unit-Unit].out | 318 ++++---- ...dpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" | 20 +- ...Pair False False)-(Some (Left False))].out | 20 +- ... (Pair False True)-(Some (Left True))].out | 20 +- ... (Pair True False)-(Some (Left True))].out | 20 +- ... (Pair True True)-(Some (Left False))].out | 20 +- ...one-Right (Pair 0 0)-(Some (Right 0))].out | 20 +- ...one-Right (Pair 0 1)-(Some (Right 1))].out | 20 +- ...one-Right (Pair 1 0)-(Some (Right 1))].out | 20 +- ...one-Right (Pair 1 1)-(Some (Right 0))].out | 20 +- ...-Right (Pair 42 21)-(Some (Right 63))].out | 20 +- ...-Right (Pair 42 63)-(Some (Right 21))].out | 20 +- ...s::test_hash_consistency_michelson_cli.out | 24 +- ...pcodes.TestContractOpcodes::test_level.out | 10 +- ...bar\" 5 ; Elt \"foo\" 1 } .480b9afc63.out" | 84 +- ...\"foo\" 1 } 1)-10-(Pair { .811573b5a7.out" | 58 +- ...eeffect.tz-(Pair {} 0)-10-(Pair {} 0)].out | 32 +- ..._opcodes.TestContractOpcodes::test_now.out | 10 +- ...s.TestContractOpcodes::test_packunpack.out | 58 +- 375 files changed, 6209 insertions(+), 6209 deletions(-) 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 8f833bffea76..e620729d8982 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, remaining gas: 1039991.421 units remaining) [ (Pair "hello" (Some 4) {}) ] - - location: 13 (remaining gas: 1039991.411 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.411 units remaining) [ "hello" (Pair (Some 4) {}) ] - - location: 14 (remaining gas: 1039991.411 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039991.411 units remaining) [ (Pair (Some 4) {}) ] - - location: 16 (remaining gas: 1039991.401 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.401 units remaining) [ (Some 4) {} ] - - location: 14 (remaining gas: 1039991.376 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.376 units remaining) [ "hello" (Some 4) {} ] - - location: 17 (remaining gas: 1039990.589 units remaining) + - location: 17 (just consumed gas: 0.787, remaining gas: 1039990.589 units remaining) [ None { Elt "hello" 4 } ] - - location: 18 (remaining gas: 1039990.579 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.579 units remaining) [ (Pair None { Elt "hello" 4 }) ] - - location: 19 (remaining gas: 1039990.569 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.569 units remaining) [ {} (Pair None { Elt "hello" 4 }) ] - - location: 21 (remaining gas: 1039990.559 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.559 units remaining) [ (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 cbea1e7f24ce..f5e5302795b7 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, remaining gas: 1039990.391 units remaining) [ (Pair "hello" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039990.381 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039990.381 units remaining) [ "hello" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039990.381 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039990.381 units remaining) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039990.371 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.371 units remaining) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039990.346 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039990.346 units remaining) [ "hello" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039989.554 units remaining) + - location: 17 (just consumed gas: 0.792, remaining gas: 1039989.554 units remaining) [ (Some 4) { Elt "hello" 5 } ] - - location: 18 (remaining gas: 1039989.544 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.544 units remaining) [ (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 19 (remaining gas: 1039989.534 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.534 units remaining) [ {} (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 21 (remaining gas: 1039989.524 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.524 units remaining) [ (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 8682a14413f9..921725ffbea2 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, remaining gas: 1039990.421 units remaining) [ (Pair "hi" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039990.411 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039990.411 units remaining) [ "hi" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039990.411 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039990.411 units remaining) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039990.401 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.401 units remaining) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039990.376 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039990.376 units remaining) [ "hi" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039989.617 units remaining) + - location: 17 (just consumed gas: 0.759, remaining gas: 1039989.617 units remaining) [ None { Elt "hello" 4 ; Elt "hi" 5 } ] - - location: 18 (remaining gas: 1039989.607 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.607 units remaining) [ (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 19 (remaining gas: 1039989.597 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.597 units remaining) [ {} (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 21 (remaining gas: 1039989.587 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.587 units remaining) [ (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 c406a8b6a648..ca582ec82eb9 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, remaining gas: 1039989.633 units remaining) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039989.623 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.623 units remaining) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039989.623 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039989.623 units remaining) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039989.613 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.613 units remaining) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039989.588 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039989.588 units remaining) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039988.837 units remaining) + - location: 17 (just consumed gas: 0.751, remaining gas: 1039988.837 units remaining) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039988.827 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.827 units remaining) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039988.817 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.817 units remaining) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039988.807 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.807 units remaining) [ (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 e7a1701eb40b..7f8f1ffdbdce 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, remaining gas: 1039989.633 units remaining) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039989.623 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.623 units remaining) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039989.623 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039989.623 units remaining) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039989.613 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.613 units remaining) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039989.588 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039989.588 units remaining) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039988.837 units remaining) + - location: 17 (just consumed gas: 0.751, remaining gas: 1039988.837 units remaining) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039988.827 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.827 units remaining) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039988.817 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.817 units remaining) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039988.807 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.807 units remaining) [ (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 09b4fca70874..8912ab67c81b 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, remaining gas: 1039990.491 units remaining) [ (Pair "hello" None { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039990.481 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039990.481 units remaining) [ "hello" (Pair None { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039990.481 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039990.481 units remaining) [ (Pair None { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039990.471 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.471 units remaining) [ None { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039990.446 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039990.446 units remaining) [ "hello" None { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039989.654 units remaining) + - location: 17 (just consumed gas: 0.792, remaining gas: 1039989.654 units remaining) [ (Some 4) {} ] - - location: 18 (remaining gas: 1039989.644 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.644 units remaining) [ (Pair (Some 4) {}) ] - - location: 19 (remaining gas: 1039989.634 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.634 units remaining) [ {} (Pair (Some 4) {}) ] - - location: 21 (remaining gas: 1039989.624 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.624 units remaining) [ (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 6c748db809bf..ec42d069db77 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, remaining gas: 1039991.521 units remaining) [ (Pair "hello" None {}) ] - - location: 13 (remaining gas: 1039991.511 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.511 units remaining) [ "hello" (Pair None {}) ] - - location: 14 (remaining gas: 1039991.511 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039991.511 units remaining) [ (Pair None {}) ] - - location: 16 (remaining gas: 1039991.501 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.501 units remaining) [ None {} ] - - location: 14 (remaining gas: 1039991.476 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.476 units remaining) [ "hello" None {} ] - - location: 17 (remaining gas: 1039990.689 units remaining) + - location: 17 (just consumed gas: 0.787, remaining gas: 1039990.689 units remaining) [ None {} ] - - location: 18 (remaining gas: 1039990.679 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.679 units remaining) [ (Pair None {}) ] - - location: 19 (remaining gas: 1039990.669 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.669 units remaining) [ {} (Pair None {}) ] - - location: 21 (remaining gas: 1039990.659 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.659 units remaining) [ (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 44656f6ffdb5..d639c3c254a2 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, remaining gas: 1039986.474 units remaining) [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 12 (remaining gas: 1039986.464 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039986.464 units remaining) [ (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, remaining gas: 1039986.454 units remaining) [ "1" (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 14 (remaining gas: 1039986.454 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039986.454 units remaining) [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 17 (remaining gas: 1039986.444 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039986.444 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 18 (remaining gas: 1039986.434 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039986.434 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } ] - - location: 19 (remaining gas: 1039986.424 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039986.424 units remaining) [ { 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, remaining gas: 1039986.399 units remaining) [ "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, remaining gas: 1039985.687 units remaining) [ (Some "one") { Elt "1" "one" ; Elt "2" "two" } ] - - location: 21 (remaining gas: 1039985.677 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.677 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } (Some "one") ] - - location: 22 (remaining gas: 1039985.667 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039985.667 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] - - location: 23 (remaining gas: 1039985.657 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039985.657 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] - - location: 25 (remaining gas: 1039985.647 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039985.647 units remaining) [ (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 fc8c6ef6ccb4..1e07278c8607 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, remaining gas: 1039987.436 units remaining) [ (Pair "" { Elt "hello" "hi" } None) ] - - location: 12 (remaining gas: 1039987.426 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039987.426 units remaining) [ (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, remaining gas: 1039987.416 units remaining) [ "" (Pair "" { Elt "hello" "hi" } None) ] - - location: 14 (remaining gas: 1039987.416 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039987.416 units remaining) [ (Pair "" { Elt "hello" "hi" } None) ] - - location: 17 (remaining gas: 1039987.406 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039987.406 units remaining) [ (Pair { Elt "hello" "hi" } None) ] - - location: 18 (remaining gas: 1039987.396 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.396 units remaining) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039987.386 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.386 units remaining) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039987.361 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039987.361 units remaining) [ "" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039986.661 units remaining) + - location: 20 (just consumed gas: 0.700, remaining gas: 1039986.661 units remaining) [ None { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039986.651 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039986.651 units remaining) [ { Elt "hello" "hi" } None ] - - location: 22 (remaining gas: 1039986.641 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039986.641 units remaining) [ (Pair { Elt "hello" "hi" } None) ] - - location: 23 (remaining gas: 1039986.631 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.631 units remaining) [ {} (Pair { Elt "hello" "hi" } None) ] - - location: 25 (remaining gas: 1039986.621 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039986.621 units remaining) [ (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 57efd12e7cd3..c4d496c60740 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, remaining gas: 1039987.386 units remaining) [ (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 12 (remaining gas: 1039987.376 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039987.376 units remaining) [ (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, remaining gas: 1039987.366 units remaining) [ "hello" (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 14 (remaining gas: 1039987.366 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039987.366 units remaining) [ (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 17 (remaining gas: 1039987.356 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039987.356 units remaining) [ (Pair { Elt "hello" "hi" } None) ] - - location: 18 (remaining gas: 1039987.346 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.346 units remaining) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039987.336 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.336 units remaining) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039987.311 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039987.311 units remaining) [ "hello" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039986.555 units remaining) + - location: 20 (just consumed gas: 0.756, remaining gas: 1039986.555 units remaining) [ (Some "hi") { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039986.545 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039986.545 units remaining) [ { Elt "hello" "hi" } (Some "hi") ] - - location: 22 (remaining gas: 1039986.535 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039986.535 units remaining) [ (Pair { Elt "hello" "hi" } (Some "hi")) ] - - location: 23 (remaining gas: 1039986.525 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.525 units remaining) [ {} (Pair { Elt "hello" "hi" } (Some "hi")) ] - - location: 25 (remaining gas: 1039986.515 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039986.515 units remaining) [ (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 a92cb7c6bc87..666f1a247457 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, remaining gas: 1039987.935 units remaining) [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039987.925 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039987.925 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039987.925 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039987.925 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.915 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.915 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.890 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.890 units remaining) [ {} { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.890 units remaining) + - location: 19 (just consumed gas: 0, remaining gas: 1039987.890 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039987.880 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039987.880 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039987.870 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039987.870 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039987.860 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039987.860 units remaining) [ (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 e7a929e6bd8e..65194a6ba29c 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, remaining gas: 1039987.485 units remaining) [ (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, remaining gas: 1039987.475 units remaining) [ { 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, remaining gas: 1039987.475 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.465 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.465 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.440 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.440 units remaining) [ { 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, remaining gas: 1039987.440 units remaining) [ (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, remaining gas: 1039987.430 units remaining) [ "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, remaining gas: 1039986.703 units remaining) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039986.688 units remaining) + - location: 19 (just consumed gas: 0.015, remaining gas: 1039986.688 units remaining) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039986.678 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.678 units remaining) [ (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039986.668 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039986.668 units remaining) [ {} (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039986.658 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039986.658 units remaining) [ (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 f040567ba851..dfcd05e9b2e5 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, remaining gas: 1039987.485 units remaining) [ (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, remaining gas: 1039987.475 units remaining) [ { 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, remaining gas: 1039987.475 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.465 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.465 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.440 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.440 units remaining) [ { 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, remaining gas: 1039987.440 units remaining) [ (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, remaining gas: 1039987.430 units remaining) [ "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, remaining gas: 1039986.703 units remaining) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039986.688 units remaining) + - location: 19 (just consumed gas: 0.015, remaining gas: 1039986.688 units remaining) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039986.678 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.678 units remaining) [ (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039986.668 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039986.668 units remaining) [ {} (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039986.658 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039986.658 units remaining) [ (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 c45d4ffcda4d..90ec835a29d6 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, remaining gas: 1039987.465 units remaining) [ (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, remaining gas: 1039987.455 units remaining) [ { 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, remaining gas: 1039987.455 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.445 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.445 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.420 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.420 units remaining) [ { 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, remaining gas: 1039987.420 units remaining) [ (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, remaining gas: 1039987.410 units remaining) [ "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, remaining gas: 1039986.683 units remaining) [ { 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, remaining gas: 1039986.668 units remaining) [ { 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, remaining gas: 1039986.658 units remaining) [ (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, remaining gas: 1039986.648 units remaining) [ {} (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, remaining gas: 1039986.638 units remaining) [ (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 dca0ace11d78..7fc7ba95bdf3 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, remaining gas: 1039987.629 units remaining) [ (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, remaining gas: 1039987.619 units remaining) [ { 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, remaining gas: 1039987.619 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.609 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.609 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.584 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.584 units remaining) [ { Elt "3" None } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.584 units remaining) + - location: 19 (just consumed gas: 0, remaining gas: 1039987.584 units remaining) [ (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, remaining gas: 1039987.574 units remaining) [ "3" None { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039986.847 units remaining) + - location: 22 (just consumed gas: 0.727, remaining gas: 1039986.847 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039986.832 units remaining) + - location: 19 (just consumed gas: 0.015, remaining gas: 1039986.832 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039986.822 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.822 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039986.812 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039986.812 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039986.802 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039986.802 units remaining) [ (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 ef0f839c63d9..9c8228b0fdc2 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, remaining gas: 1039987.629 units remaining) [ (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, remaining gas: 1039987.619 units remaining) [ { 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, remaining gas: 1039987.619 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.609 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.609 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.584 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.584 units remaining) [ { Elt "2" None } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.584 units remaining) + - location: 19 (just consumed gas: 0, remaining gas: 1039987.584 units remaining) [ (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, remaining gas: 1039987.574 units remaining) [ "2" None { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039986.847 units remaining) + - location: 22 (just consumed gas: 0.727, remaining gas: 1039986.847 units remaining) [ { Elt "1" "one" } Unit ] - - location: 19 (remaining gas: 1039986.832 units remaining) + - location: 19 (just consumed gas: 0.015, remaining gas: 1039986.832 units remaining) [ { Elt "1" "one" } Unit ] - - location: 23 (remaining gas: 1039986.822 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.822 units remaining) [ (Pair { Elt "1" "one" } Unit) ] - - location: 24 (remaining gas: 1039986.812 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039986.812 units remaining) [ {} (Pair { Elt "1" "one" } Unit) ] - - location: 26 (remaining gas: 1039986.802 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039986.802 units remaining) [ (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 d8a81e29bbd0..a0a7050def7c 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, remaining gas: 1039988.754 units remaining) [ (Pair (Left Unit) Unit) ] - - location: 9 (remaining gas: 1039988.744 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039988.744 units remaining) [ (Left Unit) ] - - location: 10 (remaining gas: 1039988.744 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039988.744 units remaining) [ Unit ] - - location: 12 (remaining gas: 1039988.734 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.734 units remaining) [ 922337203685477580700 Unit ] - - location: 15 (remaining gas: 1039988.724 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.724 units remaining) [ 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 0235bfdde906..d9177c8f5f3f 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, remaining gas: 1039988.754 units remaining) [ (Pair (Right Unit) Unit) ] - - location: 9 (remaining gas: 1039988.744 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039988.744 units remaining) [ (Right Unit) ] - - location: 10 (remaining gas: 1039988.744 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039988.744 units remaining) [ Unit ] - - location: 21 (remaining gas: 1039988.734 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.734 units remaining) [ 10 Unit ] - - location: 24 (remaining gas: 1039988.724 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.724 units remaining) [ 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 711cbc578330..a7d96b4636d6 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, remaining gas: 1039991.189 units remaining) [ (Pair (Left (Pair 1 257)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Left (Pair 1 257)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 1 257) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 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 d818d78bde3a..532a77d72294 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, remaining gas: 1039991.189 units remaining) [ (Pair (Left (Pair 123 257)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Left (Pair 123 257)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 123 257) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 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 01871dc127fc..aa9a0dfe964c 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, remaining gas: 1039991.189 units remaining) [ (Pair (Right (Pair 1 257)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Right (Pair 1 257)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 1 257) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 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 4bdbdf85afc6..964ce3b942f6 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, remaining gas: 1039991.189 units remaining) [ (Pair (Right (Pair 123 257)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Right (Pair 123 257)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 123 257) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 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 eec483839a4b..01d73592a618 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, remaining gas: 1039995.733 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) [ 500000 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) [ {} 500000 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.693 units remaining) [ (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 8c7c4dbe4ee1..ba8bed4794ed 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, remaining gas: 1039995.733 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) [ 0 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) [ {} 0 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.693 units remaining) [ (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 f7edacace175..d30e4d930ab5 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, remaining gas: 1039995.733 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) [ 1000000000 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) [ {} 1000000000 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.693 units remaining) [ (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 3b4aaad003c2..c8917f70d76b 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, remaining gas: 1039995.733 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) [ 1000000 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) [ {} 1000000 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.693 units remaining) [ (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 cf11c25ce395..647691572b1e 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, remaining gas: 1039995.733 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) [ 1 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) [ {} 1 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.693 units remaining) [ (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 ed4d948ccaec..0e59b22e9477 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, remaining gas: 1039995.733 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) [ 5000000 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) [ {} 5000000 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.693 units remaining) [ (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 1ce6d7a299a1..1c37ec9f3892 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, remaining gas: 1039995.733 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) [ 8000000000000000000 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) [ {} 8000000000000000000 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.693 units remaining) [ (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 a3d05fb971f4..a139118566fe 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, remaining gas: 1039936.964 units remaining) [ (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, remaining gas: 1039936.954 units remaining) [ (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, remaining gas: 1039936.954 units remaining) [ (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, remaining gas: 1039936.954 units remaining) [ (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, remaining gas: 1039936.954 units remaining) [ (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, remaining gas: 1039936.954 units remaining) [ { 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, remaining gas: 1039936.954 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 113 (remaining gas: 1039936.954 units remaining) + - location: 113 (just consumed gas: 0, remaining gas: 1039936.954 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 113 (remaining gas: 1039936.939 units remaining) + - location: 113 (just consumed gas: 0.015, remaining gas: 1039936.939 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 119 (remaining gas: 1039936.929 units remaining) + - location: 119 (just consumed gas: 0.010, remaining gas: 1039936.929 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 110 (remaining gas: 1039936.904 units remaining) + - location: 110 (just consumed gas: 0.025, remaining gas: 1039936.904 units remaining) [ { Pair "3" "three" } { Elt "1" "one" } { Elt "2" "two" } ] - - location: 120 (remaining gas: 1039936.904 units remaining) + - location: 120 (just consumed gas: 0, remaining gas: 1039936.904 units remaining) [ (Pair "3" "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 122 (remaining gas: 1039936.894 units remaining) + - location: 122 (just consumed gas: 0.010, remaining gas: 1039936.894 units remaining) [ "3" "three" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 123 (remaining gas: 1039936.894 units remaining) + - location: 123 (just consumed gas: 0, remaining gas: 1039936.894 units remaining) [ "three" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 125 (remaining gas: 1039936.884 units remaining) + - location: 125 (just consumed gas: 0.010, remaining gas: 1039936.884 units remaining) [ (Some "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 123 (remaining gas: 1039936.859 units remaining) + - location: 123 (just consumed gas: 0.025, remaining gas: 1039936.859 units remaining) [ "3" (Some "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 126 (remaining gas: 1039936.135 units remaining) + - location: 126 (just consumed gas: 0.724, remaining gas: 1039936.135 units remaining) [ { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" } ] - - location: 120 (remaining gas: 1039936.120 units remaining) + - location: 120 (just consumed gas: 0.015, remaining gas: 1039936.120 units remaining) [ { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" } ] - - location: 127 (remaining gas: 1039936.110 units remaining) + - location: 127 (just consumed gas: 0.010, remaining gas: 1039936.110 units remaining) [ (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, remaining gas: 1039936.100 units remaining) [ (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, remaining gas: 1039936.085 units remaining) [ (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, remaining gas: 1039936.070 units remaining) [ (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, remaining gas: 1039936.055 units remaining) [ (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, remaining gas: 1039936.040 units remaining) [ (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, remaining gas: 1039936.030 units remaining) [ {} (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, remaining gas: 1039936.020 units remaining) [ (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 9ef942574adf..30724e8dae3d 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, remaining gas: 1039937.872 units remaining) [ (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, remaining gas: 1039937.862 units remaining) [ (Left Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039937.862 units remaining) + - location: 44 (just consumed gas: 0, remaining gas: 1039937.862 units remaining) [ Unit (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 46 (remaining gas: 1039937.852 units remaining) + - location: 46 (just consumed gas: 0.010, remaining gas: 1039937.852 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 48 (remaining gas: 1039937.852 units remaining) + - location: 48 (just consumed gas: 0, remaining gas: 1039937.852 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 48 (remaining gas: 1039937.837 units remaining) + - location: 48 (just consumed gas: 0.015, remaining gas: 1039937.837 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 54 (remaining gas: 1039937.827 units remaining) + - location: 54 (just consumed gas: 0.010, remaining gas: 1039937.827 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 55 (remaining gas: 1039937.817 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039937.817 units remaining) [ { Elt "2" "two" } { Elt "1" "one" } ] - - location: 56 (remaining gas: 1039937.807 units remaining) + - location: 56 (just consumed gas: 0.010, remaining gas: 1039937.807 units remaining) [ (Pair { Elt "2" "two" } { Elt "1" "one" }) ] - - location: 57 (remaining gas: 1039937.797 units remaining) + - location: 57 (just consumed gas: 0.010, remaining gas: 1039937.797 units remaining) [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 44 (remaining gas: 1039937.782 units remaining) + - location: 44 (just consumed gas: 0.015, remaining gas: 1039937.782 units remaining) [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 151 (remaining gas: 1039937.772 units remaining) + - location: 151 (just consumed gas: 0.010, remaining gas: 1039937.772 units remaining) [ {} (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 153 (remaining gas: 1039937.762 units remaining) + - location: 153 (just consumed gas: 0.010, remaining gas: 1039937.762 units remaining) [ (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 703f59f09251..50d4110d5bb1 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, remaining gas: 1039934.584 units remaining) [ (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, remaining gas: 1039934.574 units remaining) [ (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, remaining gas: 1039934.574 units remaining) [ (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, remaining gas: 1039934.574 units remaining) [ (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, remaining gas: 1039934.564 units remaining) [ (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, remaining gas: 1039934.554 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 60 (remaining gas: 1039934.539 units remaining) + - location: 60 (just consumed gas: 0.015, remaining gas: 1039934.539 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 44 (remaining gas: 1039934.524 units remaining) + - location: 44 (just consumed gas: 0.015, remaining gas: 1039934.524 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 151 (remaining gas: 1039934.514 units remaining) + - location: 151 (just consumed gas: 0.010, remaining gas: 1039934.514 units remaining) [ {} (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 153 (remaining gas: 1039934.504 units remaining) + - location: 153 (just consumed gas: 0.010, remaining gas: 1039934.504 units remaining) [ (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 9e8724b6b969..323f89ba0595 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, remaining gas: 1039937.232 units remaining) [ (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, remaining gas: 1039937.222 units remaining) [ (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, remaining gas: 1039937.222 units remaining) [ (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, remaining gas: 1039937.222 units remaining) [ (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, remaining gas: 1039937.212 units remaining) [ (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, remaining gas: 1039937.202 units remaining) [ (Right Unit) ] - - location: 60 (remaining gas: 1039937.187 units remaining) + - location: 60 (just consumed gas: 0.015, remaining gas: 1039937.187 units remaining) [ (Right Unit) ] - - location: 44 (remaining gas: 1039937.172 units remaining) + - location: 44 (just consumed gas: 0.015, remaining gas: 1039937.172 units remaining) [ (Right Unit) ] - - location: 151 (remaining gas: 1039937.162 units remaining) + - location: 151 (just consumed gas: 0.010, remaining gas: 1039937.162 units remaining) [ {} (Right Unit) ] - - location: 153 (remaining gas: 1039937.152 units remaining) + - location: 153 (just consumed gas: 0.010, remaining gas: 1039937.152 units remaining) [ (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 cb9e0c8a96f0..4a454c7cc371 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, remaining gas: 1039937.228 units remaining) [ (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, remaining gas: 1039937.218 units remaining) [ (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, remaining gas: 1039937.218 units remaining) [ (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, remaining gas: 1039937.218 units remaining) [ (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, remaining gas: 1039937.218 units remaining) [ (Right { "1" }) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039937.218 units remaining) + - location: 108 (just consumed gas: 0, remaining gas: 1039937.218 units remaining) [ { "1" } (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 131 (remaining gas: 1039937.218 units remaining) + - location: 131 (just consumed gas: 0, remaining gas: 1039937.218 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 134 (remaining gas: 1039937.218 units remaining) + - location: 134 (just consumed gas: 0, remaining gas: 1039937.218 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 134 (remaining gas: 1039937.203 units remaining) + - location: 134 (just consumed gas: 0.015, remaining gas: 1039937.203 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 140 (remaining gas: 1039937.193 units remaining) + - location: 140 (just consumed gas: 0.010, remaining gas: 1039937.193 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 131 (remaining gas: 1039937.168 units remaining) + - location: 131 (just consumed gas: 0.025, remaining gas: 1039937.168 units remaining) [ { "1" } { Elt "1" "one" } { Elt "2" "two" } ] - - location: 141 (remaining gas: 1039937.168 units remaining) + - location: 141 (just consumed gas: 0, remaining gas: 1039937.168 units remaining) [ "1" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 143 (remaining gas: 1039937.168 units remaining) + - location: 143 (just consumed gas: 0, remaining gas: 1039937.168 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 145 (remaining gas: 1039937.158 units remaining) + - location: 145 (just consumed gas: 0.010, remaining gas: 1039937.158 units remaining) [ None { Elt "1" "one" } { Elt "2" "two" } ] - - location: 143 (remaining gas: 1039937.133 units remaining) + - location: 143 (just consumed gas: 0.025, remaining gas: 1039937.133 units remaining) [ "1" None { Elt "1" "one" } { Elt "2" "two" } ] - - location: 147 (remaining gas: 1039936.409 units remaining) + - location: 147 (just consumed gas: 0.724, remaining gas: 1039936.409 units remaining) [ {} { Elt "2" "two" } ] - - location: 141 (remaining gas: 1039936.394 units remaining) + - location: 141 (just consumed gas: 0.015, remaining gas: 1039936.394 units remaining) [ {} { Elt "2" "two" } ] - - location: 148 (remaining gas: 1039936.384 units remaining) + - location: 148 (just consumed gas: 0.010, remaining gas: 1039936.384 units remaining) [ (Pair {} { Elt "2" "two" }) ] - - location: 149 (remaining gas: 1039936.374 units remaining) + - location: 149 (just consumed gas: 0.010, remaining gas: 1039936.374 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039936.359 units remaining) + - location: 108 (just consumed gas: 0.015, remaining gas: 1039936.359 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039936.344 units remaining) + - location: 65 (just consumed gas: 0.015, remaining gas: 1039936.344 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039936.329 units remaining) + - location: 60 (just consumed gas: 0.015, remaining gas: 1039936.329 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039936.314 units remaining) + - location: 44 (just consumed gas: 0.015, remaining gas: 1039936.314 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 151 (remaining gas: 1039936.304 units remaining) + - location: 151 (just consumed gas: 0.010, remaining gas: 1039936.304 units remaining) [ {} (Left (Pair {} { Elt "2" "two" })) ] - - location: 153 (remaining gas: 1039936.294 units remaining) + - location: 153 (just consumed gas: 0.010, remaining gas: 1039936.294 units remaining) [ (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 6cd9042e381c..0fca098be290 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, remaining gas: 1039939.094 units remaining) [ (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, remaining gas: 1039939.084 units remaining) [ (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, remaining gas: 1039939.084 units remaining) [ (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, remaining gas: 1039939.084 units remaining) [ (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })) (Right Unit) ] - - location: 65 (remaining gas: 1039939.084 units remaining) + - location: 65 (just consumed gas: 0, remaining gas: 1039939.084 units remaining) [ (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) (Right Unit) ] - - location: 67 (remaining gas: 1039939.084 units remaining) + - location: 67 (just consumed gas: 0, remaining gas: 1039939.084 units remaining) [ (Right Unit) ] - - location: 70 (remaining gas: 1039939.084 units remaining) + - location: 70 (just consumed gas: 0, remaining gas: 1039939.084 units remaining) [ Unit ] - - location: 70 (remaining gas: 1039939.069 units remaining) + - location: 70 (just consumed gas: 0.015, remaining gas: 1039939.069 units remaining) [ Unit ] - - location: 76 (remaining gas: 1039939.059 units remaining) + - location: 76 (just consumed gas: 0.010, remaining gas: 1039939.059 units remaining) [ ] - - location: 67 (remaining gas: 1039939.034 units remaining) + - location: 67 (just consumed gas: 0.025, remaining gas: 1039939.034 units remaining) [ (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) ] - - location: 77 (remaining gas: 1039939.024 units remaining) + - location: 77 (just consumed gas: 0.010, remaining gas: 1039939.024 units remaining) [ { Pair "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 78 (remaining gas: 1039939.024 units remaining) + - location: 78 (just consumed gas: 0, remaining gas: 1039939.024 units remaining) [ { Pair "gaz" "baz" } ] - - location: 80 (remaining gas: 1039938.724 units remaining) + - location: 80 (just consumed gas: 0.300, remaining gas: 1039938.724 units remaining) [ {} { Pair "gaz" "baz" } ] - - location: 78 (remaining gas: 1039938.699 units remaining) + - location: 78 (just consumed gas: 0.025, remaining gas: 1039938.699 units remaining) [ { Pair "foo" "bar" } {} { Pair "gaz" "baz" } ] - - location: 83 (remaining gas: 1039938.699 units remaining) + - location: 83 (just consumed gas: 0, remaining gas: 1039938.699 units remaining) [ (Pair "foo" "bar") {} { Pair "gaz" "baz" } ] - - location: 85 (remaining gas: 1039938.689 units remaining) + - location: 85 (just consumed gas: 0.010, remaining gas: 1039938.689 units remaining) [ "foo" "bar" {} { Pair "gaz" "baz" } ] - - location: 86 (remaining gas: 1039938.689 units remaining) + - location: 86 (just consumed gas: 0, remaining gas: 1039938.689 units remaining) [ "bar" {} { Pair "gaz" "baz" } ] - - location: 88 (remaining gas: 1039938.679 units remaining) + - location: 88 (just consumed gas: 0.010, remaining gas: 1039938.679 units remaining) [ (Some "bar") {} { Pair "gaz" "baz" } ] - - location: 86 (remaining gas: 1039938.654 units remaining) + - location: 86 (just consumed gas: 0.025, remaining gas: 1039938.654 units remaining) [ "foo" (Some "bar") {} { Pair "gaz" "baz" } ] - - location: 89 (remaining gas: 1039937.910 units remaining) + - location: 89 (just consumed gas: 0.744, remaining gas: 1039937.910 units remaining) [ { Elt "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 83 (remaining gas: 1039937.895 units remaining) + - location: 83 (just consumed gas: 0.015, remaining gas: 1039937.895 units remaining) [ { Elt "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 90 (remaining gas: 1039937.885 units remaining) + - location: 90 (just consumed gas: 0.010, remaining gas: 1039937.885 units remaining) [ { Pair "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 91 (remaining gas: 1039937.885 units remaining) + - location: 91 (just consumed gas: 0, remaining gas: 1039937.885 units remaining) [ { Elt "foo" "bar" } ] - - location: 93 (remaining gas: 1039937.585 units remaining) + - location: 93 (just consumed gas: 0.300, remaining gas: 1039937.585 units remaining) [ {} { Elt "foo" "bar" } ] - - location: 91 (remaining gas: 1039937.560 units remaining) + - location: 91 (just consumed gas: 0.025, remaining gas: 1039937.560 units remaining) [ { Pair "gaz" "baz" } {} { Elt "foo" "bar" } ] - - location: 96 (remaining gas: 1039937.560 units remaining) + - location: 96 (just consumed gas: 0, remaining gas: 1039937.560 units remaining) [ (Pair "gaz" "baz") {} { Elt "foo" "bar" } ] - - location: 98 (remaining gas: 1039937.550 units remaining) + - location: 98 (just consumed gas: 0.010, remaining gas: 1039937.550 units remaining) [ "gaz" "baz" {} { Elt "foo" "bar" } ] - - location: 99 (remaining gas: 1039937.550 units remaining) + - location: 99 (just consumed gas: 0, remaining gas: 1039937.550 units remaining) [ "baz" {} { Elt "foo" "bar" } ] - - location: 101 (remaining gas: 1039937.540 units remaining) + - location: 101 (just consumed gas: 0.010, remaining gas: 1039937.540 units remaining) [ (Some "baz") {} { Elt "foo" "bar" } ] - - location: 99 (remaining gas: 1039937.515 units remaining) + - location: 99 (just consumed gas: 0.025, remaining gas: 1039937.515 units remaining) [ "gaz" (Some "baz") {} { Elt "foo" "bar" } ] - - location: 102 (remaining gas: 1039936.771 units remaining) + - location: 102 (just consumed gas: 0.744, remaining gas: 1039936.771 units remaining) [ { Elt "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 96 (remaining gas: 1039936.756 units remaining) + - location: 96 (just consumed gas: 0.015, remaining gas: 1039936.756 units remaining) [ { Elt "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 103 (remaining gas: 1039936.746 units remaining) + - location: 103 (just consumed gas: 0.010, remaining gas: 1039936.746 units remaining) [ { Elt "foo" "bar" } { Elt "gaz" "baz" } ] - - location: 104 (remaining gas: 1039936.736 units remaining) + - location: 104 (just consumed gas: 0.010, remaining gas: 1039936.736 units remaining) [ (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" }) ] - - location: 105 (remaining gas: 1039936.726 units remaining) + - location: 105 (just consumed gas: 0.010, remaining gas: 1039936.726 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 65 (remaining gas: 1039936.711 units remaining) + - location: 65 (just consumed gas: 0.015, remaining gas: 1039936.711 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 60 (remaining gas: 1039936.696 units remaining) + - location: 60 (just consumed gas: 0.015, remaining gas: 1039936.696 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 44 (remaining gas: 1039936.681 units remaining) + - location: 44 (just consumed gas: 0.015, remaining gas: 1039936.681 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 151 (remaining gas: 1039936.671 units remaining) + - location: 151 (just consumed gas: 0.010, remaining gas: 1039936.671 units remaining) [ {} (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 153 (remaining gas: 1039936.661 units remaining) + - location: 153 (just consumed gas: 0.010, remaining gas: 1039936.661 units remaining) [ (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 3c897022da99..c5de54906763 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, remaining gas: 1039653.720 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 9 (remaining gas: 1039653.710 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039653.710 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 10 (remaining gas: 1039653.700 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039653.700 units remaining) [ (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, remaining gas: 1039653.700 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 13 (remaining gas: 1039653.690 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039653.690 units remaining) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 14 (remaining gas: 1039653.680 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039653.680 units remaining) [ (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, remaining gas: 1039653.670 units remaining) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 16 (remaining gas: 1039653.670 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039653.670 units remaining) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 18 (remaining gas: 1039653.660 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039653.660 units remaining) [ "hello" (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 19 (remaining gas: 1039653.394 units remaining) + - location: 19 (just consumed gas: 0.266, remaining gas: 1039653.394 units remaining) [ 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 16 (remaining gas: 1039653.369 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039653.369 units remaining) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 11 (remaining gas: 1039653.344 units remaining) + - location: 11 (just consumed gas: 0.025, remaining gas: 1039653.344 units remaining) [ (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, remaining gas: 1039653.334 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 21 (remaining gas: 1039587.522 units remaining) + - location: 21 (just consumed gas: 65.812, remaining gas: 1039587.522 units remaining) [ True (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 22 (remaining gas: 1039587.522 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039587.522 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 22 (remaining gas: 1039587.507 units remaining) + - location: 22 (just consumed gas: 0.015, remaining gas: 1039587.507 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 28 (remaining gas: 1039587.497 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039587.497 units remaining) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 29 (remaining gas: 1039587.487 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039587.487 units remaining) [ {} (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 31 (remaining gas: 1039587.477 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039587.477 units remaining) [ (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, remaining gas: 1039653.730 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 9 (remaining gas: 1039653.720 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039653.720 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 10 (remaining gas: 1039653.710 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039653.710 units remaining) [ (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, remaining gas: 1039653.710 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 13 (remaining gas: 1039653.700 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039653.700 units remaining) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 14 (remaining gas: 1039653.690 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039653.690 units remaining) [ (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, remaining gas: 1039653.680 units remaining) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 16 (remaining gas: 1039653.680 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039653.680 units remaining) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 18 (remaining gas: 1039653.670 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039653.670 units remaining) [ "abcd" (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 19 (remaining gas: 1039653.414 units remaining) + - location: 19 (just consumed gas: 0.256, remaining gas: 1039653.414 units remaining) [ 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 16 (remaining gas: 1039653.389 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039653.389 units remaining) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 11 (remaining gas: 1039653.364 units remaining) + - location: 11 (just consumed gas: 0.025, remaining gas: 1039653.364 units remaining) [ (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, remaining gas: 1039653.354 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 21 (remaining gas: 1039587.543 units remaining) + - location: 21 (just consumed gas: 65.811, remaining gas: 1039587.543 units remaining) [ False (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 22 (remaining gas: 1039587.543 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039587.543 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 26 (remaining gas: 1039587.533 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039587.533 units remaining) [ 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 839297d87b66..ade37c675453 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, remaining gas: 1039989.789 units remaining) [ (Pair 0 Unit) ] - - location: 7 (remaining gas: 1039989.779 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.779 units remaining) [ 0 ] - - location: 8 (remaining gas: 1039989.769 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.769 units remaining) [ 0 0 ] - - location: 9 (remaining gas: 1039989.744 units remaining) + - location: 9 (just consumed gas: 0.025, remaining gas: 1039989.744 units remaining) [ 0 0 ] - - location: 10 (remaining gas: 1039989.724 units remaining) + - location: 10 (just consumed gas: 0.020, remaining gas: 1039989.724 units remaining) [ 0 0 ] - - location: 11 (remaining gas: 1039989.689 units remaining) + - location: 11 (just consumed gas: 0.035, remaining gas: 1039989.689 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039989.679 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.679 units remaining) [ True ] - - location: 14 (remaining gas: 1039989.679 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039989.679 units remaining) [ ] - - location: 14 (remaining gas: 1039989.664 units remaining) + - location: 14 (just consumed gas: 0.015, remaining gas: 1039989.664 units remaining) [ ] - - location: 20 (remaining gas: 1039989.654 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.654 units remaining) [ Unit ] - - location: 21 (remaining gas: 1039989.644 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.644 units remaining) [ {} Unit ] - - location: 23 (remaining gas: 1039989.634 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.634 units remaining) [ (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 7dea5e6520e5..d4ece7e891cc 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, remaining gas: 1039989.789 units remaining) [ (Pair 12039123919239192312931 Unit) ] - - location: 7 (remaining gas: 1039989.779 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.779 units remaining) [ 12039123919239192312931 ] - - location: 8 (remaining gas: 1039989.769 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.769 units remaining) [ 12039123919239192312931 12039123919239192312931 ] - - location: 9 (remaining gas: 1039989.739 units remaining) + - location: 9 (just consumed gas: 0.030, remaining gas: 1039989.739 units remaining) [ -12039123919239192312931 12039123919239192312931 ] - - location: 10 (remaining gas: 1039989.714 units remaining) + - location: 10 (just consumed gas: 0.025, remaining gas: 1039989.714 units remaining) [ 12039123919239192312931 12039123919239192312931 ] - - location: 11 (remaining gas: 1039989.679 units remaining) + - location: 11 (just consumed gas: 0.035, remaining gas: 1039989.679 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039989.669 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.669 units remaining) [ True ] - - location: 14 (remaining gas: 1039989.669 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039989.669 units remaining) [ ] - - location: 14 (remaining gas: 1039989.654 units remaining) + - location: 14 (just consumed gas: 0.015, remaining gas: 1039989.654 units remaining) [ ] - - location: 20 (remaining gas: 1039989.644 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.644 units remaining) [ Unit ] - - location: 21 (remaining gas: 1039989.634 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.634 units remaining) [ {} Unit ] - - location: 23 (remaining gas: 1039989.624 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.624 units remaining) [ (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 2920a18d298e..0fb7e7609199 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, remaining gas: 1039989.789 units remaining) [ (Pair 948 Unit) ] - - location: 7 (remaining gas: 1039989.779 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.779 units remaining) [ 948 ] - - location: 8 (remaining gas: 1039989.769 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.769 units remaining) [ 948 948 ] - - location: 9 (remaining gas: 1039989.743 units remaining) + - location: 9 (just consumed gas: 0.026, remaining gas: 1039989.743 units remaining) [ -948 948 ] - - location: 10 (remaining gas: 1039989.722 units remaining) + - location: 10 (just consumed gas: 0.021, remaining gas: 1039989.722 units remaining) [ 948 948 ] - - location: 11 (remaining gas: 1039989.687 units remaining) + - location: 11 (just consumed gas: 0.035, remaining gas: 1039989.687 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039989.677 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.677 units remaining) [ True ] - - location: 14 (remaining gas: 1039989.677 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039989.677 units remaining) [ ] - - location: 14 (remaining gas: 1039989.662 units remaining) + - location: 14 (just consumed gas: 0.015, remaining gas: 1039989.662 units remaining) [ ] - - location: 20 (remaining gas: 1039989.652 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.652 units remaining) [ Unit ] - - location: 21 (remaining gas: 1039989.642 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.642 units remaining) [ {} Unit ] - - location: 23 (remaining gas: 1039989.632 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.632 units remaining) [ (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 d62ce4406523..52d689f5c568 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, remaining gas: 1039931.551 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039931.541 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039931.541 units remaining) [ Unit ] - - location: 8 (remaining gas: 1039931.531 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039931.531 units remaining) [ 2 Unit ] - - location: 11 (remaining gas: 1039931.521 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039931.521 units remaining) [ 2 2 Unit ] - - location: 14 (remaining gas: 1039931.486 units remaining) + - location: 14 (just consumed gas: 0.035, remaining gas: 1039931.486 units remaining) [ 4 Unit ] - - location: 15 (remaining gas: 1039931.476 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039931.476 units remaining) [ 4 4 Unit ] - - location: 20 (remaining gas: 1039931.441 units remaining) + - location: 20 (just consumed gas: 0.035, remaining gas: 1039931.441 units remaining) [ 0 Unit ] - - location: 21 (remaining gas: 1039931.431 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039931.431 units remaining) [ True Unit ] - - location: 22 (remaining gas: 1039931.431 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039931.431 units remaining) [ Unit ] - - location: 22 (remaining gas: 1039931.416 units remaining) + - location: 22 (just consumed gas: 0.015, remaining gas: 1039931.416 units remaining) [ Unit ] - - location: 28 (remaining gas: 1039931.406 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039931.406 units remaining) [ 2 Unit ] - - location: 31 (remaining gas: 1039931.396 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039931.396 units remaining) [ 2 2 Unit ] - - location: 34 (remaining gas: 1039931.361 units remaining) + - location: 34 (just consumed gas: 0.035, remaining gas: 1039931.361 units remaining) [ 4 Unit ] - - location: 35 (remaining gas: 1039931.351 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039931.351 units remaining) [ 4 4 Unit ] - - location: 40 (remaining gas: 1039931.316 units remaining) + - location: 40 (just consumed gas: 0.035, remaining gas: 1039931.316 units remaining) [ 0 Unit ] - - location: 41 (remaining gas: 1039931.306 units remaining) + - location: 41 (just consumed gas: 0.010, remaining gas: 1039931.306 units remaining) [ True Unit ] - - location: 42 (remaining gas: 1039931.306 units remaining) + - location: 42 (just consumed gas: 0, remaining gas: 1039931.306 units remaining) [ Unit ] - - location: 42 (remaining gas: 1039931.291 units remaining) + - location: 42 (just consumed gas: 0.015, remaining gas: 1039931.291 units remaining) [ Unit ] - - location: 48 (remaining gas: 1039931.281 units remaining) + - location: 48 (just consumed gas: 0.010, remaining gas: 1039931.281 units remaining) [ 2 Unit ] - - location: 51 (remaining gas: 1039931.271 units remaining) + - location: 51 (just consumed gas: 0.010, remaining gas: 1039931.271 units remaining) [ 2 2 Unit ] - - location: 54 (remaining gas: 1039931.236 units remaining) + - location: 54 (just consumed gas: 0.035, remaining gas: 1039931.236 units remaining) [ 4 Unit ] - - location: 55 (remaining gas: 1039931.226 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039931.226 units remaining) [ 4 4 Unit ] - - location: 60 (remaining gas: 1039931.191 units remaining) + - location: 60 (just consumed gas: 0.035, remaining gas: 1039931.191 units remaining) [ 0 Unit ] - - location: 61 (remaining gas: 1039931.181 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039931.181 units remaining) [ True Unit ] - - location: 62 (remaining gas: 1039931.181 units remaining) + - location: 62 (just consumed gas: 0, remaining gas: 1039931.181 units remaining) [ Unit ] - - location: 62 (remaining gas: 1039931.166 units remaining) + - location: 62 (just consumed gas: 0.015, remaining gas: 1039931.166 units remaining) [ Unit ] - - location: 68 (remaining gas: 1039931.156 units remaining) + - location: 68 (just consumed gas: 0.010, remaining gas: 1039931.156 units remaining) [ 2 Unit ] - - location: 71 (remaining gas: 1039931.146 units remaining) + - location: 71 (just consumed gas: 0.010, remaining gas: 1039931.146 units remaining) [ 2 2 Unit ] - - location: 74 (remaining gas: 1039931.111 units remaining) + - location: 74 (just consumed gas: 0.035, remaining gas: 1039931.111 units remaining) [ 4 Unit ] - - location: 75 (remaining gas: 1039931.101 units remaining) + - location: 75 (just consumed gas: 0.010, remaining gas: 1039931.101 units remaining) [ 4 4 Unit ] - - location: 80 (remaining gas: 1039931.066 units remaining) + - location: 80 (just consumed gas: 0.035, remaining gas: 1039931.066 units remaining) [ 0 Unit ] - - location: 81 (remaining gas: 1039931.056 units remaining) + - location: 81 (just consumed gas: 0.010, remaining gas: 1039931.056 units remaining) [ True Unit ] - - location: 82 (remaining gas: 1039931.056 units remaining) + - location: 82 (just consumed gas: 0, remaining gas: 1039931.056 units remaining) [ Unit ] - - location: 82 (remaining gas: 1039931.041 units remaining) + - location: 82 (just consumed gas: 0.015, remaining gas: 1039931.041 units remaining) [ Unit ] - - location: 88 (remaining gas: 1039931.031 units remaining) + - location: 88 (just consumed gas: 0.010, remaining gas: 1039931.031 units remaining) [ 2 Unit ] - - location: 91 (remaining gas: 1039931.021 units remaining) + - location: 91 (just consumed gas: 0.010, remaining gas: 1039931.021 units remaining) [ 2 2 Unit ] - - location: 94 (remaining gas: 1039930.986 units remaining) + - location: 94 (just consumed gas: 0.035, remaining gas: 1039930.986 units remaining) [ 4 Unit ] - - location: 95 (remaining gas: 1039930.976 units remaining) + - location: 95 (just consumed gas: 0.010, remaining gas: 1039930.976 units remaining) [ 4 4 Unit ] - - location: 100 (remaining gas: 1039930.941 units remaining) + - location: 100 (just consumed gas: 0.035, remaining gas: 1039930.941 units remaining) [ 0 Unit ] - - location: 101 (remaining gas: 1039930.931 units remaining) + - location: 101 (just consumed gas: 0.010, remaining gas: 1039930.931 units remaining) [ True Unit ] - - location: 102 (remaining gas: 1039930.931 units remaining) + - location: 102 (just consumed gas: 0, remaining gas: 1039930.931 units remaining) [ Unit ] - - location: 102 (remaining gas: 1039930.916 units remaining) + - location: 102 (just consumed gas: 0.015, remaining gas: 1039930.916 units remaining) [ Unit ] - - location: 108 (remaining gas: 1039930.906 units remaining) + - location: 108 (just consumed gas: 0.010, remaining gas: 1039930.906 units remaining) [ 60 Unit ] - - location: 111 (remaining gas: 1039930.896 units remaining) + - location: 111 (just consumed gas: 0.010, remaining gas: 1039930.896 units remaining) [ "2019-09-09T12:08:37Z" 60 Unit ] - - location: 114 (remaining gas: 1039930.859 units remaining) + - location: 114 (just consumed gas: 0.037, remaining gas: 1039930.859 units remaining) [ "2019-09-09T12:09:37Z" Unit ] - - location: 115 (remaining gas: 1039930.849 units remaining) + - location: 115 (just consumed gas: 0.010, remaining gas: 1039930.849 units remaining) [ "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, remaining gas: 1039930.814 units remaining) [ 0 Unit ] - - location: 121 (remaining gas: 1039930.804 units remaining) + - location: 121 (just consumed gas: 0.010, remaining gas: 1039930.804 units remaining) [ True Unit ] - - location: 122 (remaining gas: 1039930.804 units remaining) + - location: 122 (just consumed gas: 0, remaining gas: 1039930.804 units remaining) [ Unit ] - - location: 122 (remaining gas: 1039930.789 units remaining) + - location: 122 (just consumed gas: 0.015, remaining gas: 1039930.789 units remaining) [ Unit ] - - location: 128 (remaining gas: 1039930.779 units remaining) + - location: 128 (just consumed gas: 0.010, remaining gas: 1039930.779 units remaining) [ "2019-09-09T12:08:37Z" Unit ] - - location: 131 (remaining gas: 1039930.769 units remaining) + - location: 131 (just consumed gas: 0.010, remaining gas: 1039930.769 units remaining) [ 60 "2019-09-09T12:08:37Z" Unit ] - - location: 134 (remaining gas: 1039930.732 units remaining) + - location: 134 (just consumed gas: 0.037, remaining gas: 1039930.732 units remaining) [ "2019-09-09T12:09:37Z" Unit ] - - location: 135 (remaining gas: 1039930.722 units remaining) + - location: 135 (just consumed gas: 0.010, remaining gas: 1039930.722 units remaining) [ "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, remaining gas: 1039930.687 units remaining) [ 0 Unit ] - - location: 141 (remaining gas: 1039930.677 units remaining) + - location: 141 (just consumed gas: 0.010, remaining gas: 1039930.677 units remaining) [ True Unit ] - - location: 142 (remaining gas: 1039930.677 units remaining) + - location: 142 (just consumed gas: 0, remaining gas: 1039930.677 units remaining) [ Unit ] - - location: 142 (remaining gas: 1039930.662 units remaining) + - location: 142 (just consumed gas: 0.015, remaining gas: 1039930.662 units remaining) [ Unit ] - - location: 148 (remaining gas: 1039930.652 units remaining) + - location: 148 (just consumed gas: 0.010, remaining gas: 1039930.652 units remaining) [ 1000 Unit ] - - location: 151 (remaining gas: 1039930.642 units remaining) + - location: 151 (just consumed gas: 0.010, remaining gas: 1039930.642 units remaining) [ 1000 1000 Unit ] - - location: 154 (remaining gas: 1039930.622 units remaining) + - location: 154 (just consumed gas: 0.020, remaining gas: 1039930.622 units remaining) [ 2000 Unit ] - - location: 155 (remaining gas: 1039930.612 units remaining) + - location: 155 (just consumed gas: 0.010, remaining gas: 1039930.612 units remaining) [ 2000 2000 Unit ] - - location: 160 (remaining gas: 1039930.577 units remaining) + - location: 160 (just consumed gas: 0.035, remaining gas: 1039930.577 units remaining) [ 0 Unit ] - - location: 161 (remaining gas: 1039930.567 units remaining) + - location: 161 (just consumed gas: 0.010, remaining gas: 1039930.567 units remaining) [ True Unit ] - - location: 162 (remaining gas: 1039930.567 units remaining) + - location: 162 (just consumed gas: 0, remaining gas: 1039930.567 units remaining) [ Unit ] - - location: 162 (remaining gas: 1039930.552 units remaining) + - location: 162 (just consumed gas: 0.015, remaining gas: 1039930.552 units remaining) [ Unit ] - - location: 168 (remaining gas: 1039930.542 units remaining) + - location: 168 (just consumed gas: 0.010, remaining gas: 1039930.542 units remaining) [ {} Unit ] - - location: 170 (remaining gas: 1039930.532 units remaining) + - location: 170 (just consumed gas: 0.010, remaining gas: 1039930.532 units remaining) [ (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 dc1e4aa83d9e..5ac099df841a 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, remaining gas: 1039993.619 units remaining) [ (Pair (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (remaining gas: 1039993.609 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.609 units remaining) [ (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (remaining gas: 1039993.599 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.599 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.569 units remaining) + - location: 12 (just consumed gas: 0.030, remaining gas: 1039993.569 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (remaining gas: 1039993.559 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.559 units remaining) [ (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (remaining gas: 1039993.549 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.549 units remaining) [ {} (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (remaining gas: 1039993.539 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.539 units remaining) [ (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 6e17002f1222..4caee87aa81a 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, remaining gas: 1039993.619 units remaining) [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (remaining gas: 1039993.609 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.609 units remaining) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (remaining gas: 1039993.599 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.599 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.569 units remaining) + - location: 12 (just consumed gas: 0.030, remaining gas: 1039993.569 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (remaining gas: 1039993.559 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.559 units remaining) [ (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (remaining gas: 1039993.549 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.549 units remaining) [ {} (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (remaining gas: 1039993.539 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.539 units remaining) [ (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 5d355eba3791..6bc753451e54 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, remaining gas: 1039993.619 units remaining) [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (remaining gas: 1039993.609 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.609 units remaining) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (remaining gas: 1039993.599 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.599 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.569 units remaining) + - location: 12 (just consumed gas: 0.030, remaining gas: 1039993.569 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (remaining gas: 1039993.559 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.559 units remaining) [ (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (remaining gas: 1039993.549 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.549 units remaining) [ {} (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (remaining gas: 1039993.539 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.539 units remaining) [ (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 b061665049eb..bfb170dff27d 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, remaining gas: 1039993.619 units remaining) [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (remaining gas: 1039993.609 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.609 units remaining) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (remaining gas: 1039993.599 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.599 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.569 units remaining) + - location: 12 (just consumed gas: 0.030, remaining gas: 1039993.569 units remaining) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (remaining gas: 1039993.559 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.559 units remaining) [ (Some 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (remaining gas: 1039993.549 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.549 units remaining) [ {} (Some 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (remaining gas: 1039993.539 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.539 units remaining) [ (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 38eb64657827..1a37b9b83db0 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, remaining gas: 1039991.768 units remaining) [ (Pair (Pair -100 "1970-01-01T00:01:40Z") None) ] - - location: 10 (remaining gas: 1039991.758 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.758 units remaining) [ (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 11 (remaining gas: 1039991.748 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.748 units remaining) [ (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, remaining gas: 1039991.738 units remaining) [ -100 (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 13 (remaining gas: 1039991.738 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039991.738 units remaining) [ (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 15 (remaining gas: 1039991.728 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.728 units remaining) [ "1970-01-01T00:01:40Z" ] - - location: 13 (remaining gas: 1039991.703 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039991.703 units remaining) [ -100 "1970-01-01T00:01:40Z" ] - - location: 16 (remaining gas: 1039991.668 units remaining) + - location: 16 (just consumed gas: 0.035, remaining gas: 1039991.668 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039991.658 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.658 units remaining) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039991.648 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.648 units remaining) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039991.638 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.638 units remaining) [ (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 2794d5d50abf..1394f6a34e12 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, remaining gas: 1039991.660 units remaining) [ (Pair (Pair 0 "1970-01-01T00:00:00Z") None) ] - - location: 10 (remaining gas: 1039991.650 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.650 units remaining) [ (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 11 (remaining gas: 1039991.640 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.640 units remaining) [ (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, remaining gas: 1039991.630 units remaining) [ 0 (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 13 (remaining gas: 1039991.630 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039991.630 units remaining) [ (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 15 (remaining gas: 1039991.620 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.620 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 13 (remaining gas: 1039991.595 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039991.595 units remaining) [ 0 "1970-01-01T00:00:00Z" ] - - location: 16 (remaining gas: 1039991.560 units remaining) + - location: 16 (just consumed gas: 0.035, remaining gas: 1039991.560 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039991.550 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.550 units remaining) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039991.540 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.540 units remaining) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039991.530 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.530 units remaining) [ (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 d063d924b767..26bb226a4152 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, remaining gas: 1039991.768 units remaining) [ (Pair (Pair 100 "1970-01-01T00:01:40Z") None) ] - - location: 10 (remaining gas: 1039991.758 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.758 units remaining) [ (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 11 (remaining gas: 1039991.748 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.748 units remaining) [ (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, remaining gas: 1039991.738 units remaining) [ 100 (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 13 (remaining gas: 1039991.738 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039991.738 units remaining) [ (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 15 (remaining gas: 1039991.728 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.728 units remaining) [ "1970-01-01T00:01:40Z" ] - - location: 13 (remaining gas: 1039991.703 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039991.703 units remaining) [ 100 "1970-01-01T00:01:40Z" ] - - location: 16 (remaining gas: 1039991.668 units remaining) + - location: 16 (just consumed gas: 0.035, remaining gas: 1039991.668 units remaining) [ "1970-01-01T00:03:20Z" ] - - location: 17 (remaining gas: 1039991.658 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.658 units remaining) [ (Some "1970-01-01T00:03:20Z") ] - - location: 18 (remaining gas: 1039991.648 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.648 units remaining) [ {} (Some "1970-01-01T00:03:20Z") ] - - location: 20 (remaining gas: 1039991.638 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.638 units remaining) [ (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 c80107a27db8..ebdcb4200a3f 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, remaining gas: 1039991.660 units remaining) [ (Pair (Pair "1970-01-01T00:00:00Z" 0) None) ] - - location: 10 (remaining gas: 1039991.650 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.650 units remaining) [ (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 11 (remaining gas: 1039991.640 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.640 units remaining) [ (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, remaining gas: 1039991.630 units remaining) [ "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, remaining gas: 1039991.630 units remaining) [ (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 15 (remaining gas: 1039991.620 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.620 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039991.595 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039991.595 units remaining) [ "1970-01-01T00:00:00Z" 0 ] - - location: 16 (remaining gas: 1039991.560 units remaining) + - location: 16 (just consumed gas: 0.035, remaining gas: 1039991.560 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039991.550 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.550 units remaining) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039991.540 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.540 units remaining) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039991.530 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.530 units remaining) [ (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 fd3e31fb92e8..1342b856cc6a 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, remaining gas: 1039991.768 units remaining) [ (Pair (Pair "1970-01-01T00:01:40Z" -100) None) ] - - location: 10 (remaining gas: 1039991.758 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.758 units remaining) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 11 (remaining gas: 1039991.748 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.748 units remaining) [ (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, remaining gas: 1039991.738 units remaining) [ "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, remaining gas: 1039991.738 units remaining) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 15 (remaining gas: 1039991.728 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.728 units remaining) [ -100 ] - - location: 13 (remaining gas: 1039991.703 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039991.703 units remaining) [ "1970-01-01T00:01:40Z" -100 ] - - location: 16 (remaining gas: 1039991.668 units remaining) + - location: 16 (just consumed gas: 0.035, remaining gas: 1039991.668 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039991.658 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.658 units remaining) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039991.648 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.648 units remaining) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039991.638 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.638 units remaining) [ (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 0c06bd7ac16a..4cd77b9b6086 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, remaining gas: 1039991.768 units remaining) [ (Pair (Pair "1970-01-01T00:01:40Z" 100) None) ] - - location: 10 (remaining gas: 1039991.758 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.758 units remaining) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 11 (remaining gas: 1039991.748 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.748 units remaining) [ (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, remaining gas: 1039991.738 units remaining) [ "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, remaining gas: 1039991.738 units remaining) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 15 (remaining gas: 1039991.728 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.728 units remaining) [ 100 ] - - location: 13 (remaining gas: 1039991.703 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039991.703 units remaining) [ "1970-01-01T00:01:40Z" 100 ] - - location: 16 (remaining gas: 1039991.668 units remaining) + - location: 16 (just consumed gas: 0.035, remaining gas: 1039991.668 units remaining) [ "1970-01-01T00:03:20Z" ] - - location: 17 (remaining gas: 1039991.658 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.658 units remaining) [ (Some "1970-01-01T00:03:20Z") ] - - location: 18 (remaining gas: 1039991.648 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.648 units remaining) [ {} (Some "1970-01-01T00:03:20Z") ] - - location: 20 (remaining gas: 1039991.638 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.638 units remaining) [ (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 0cabc4b6b773..0f7d656eccb2 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, remaining gas: 1039991.239 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" None) ] - - location: 9 (remaining gas: 1039991.229 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039991.229 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 10 (remaining gas: 1039991.219 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.219 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 11 (remaining gas: 1039991.209 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.209 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 12 (remaining gas: 1039991.199 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039991.199 units remaining) [ {} (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 14 (remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.189 units remaining) [ (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 30eb2ad22f42..b5a3936c123d 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, remaining gas: 1039992.428 units remaining) [ (Pair (Pair False False) None) ] - - location: 10 (remaining gas: 1039992.418 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039992.418 units remaining) [ (Pair False False) ] - - location: 11 (remaining gas: 1039992.408 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.408 units remaining) [ False False ] - - location: 12 (remaining gas: 1039992.398 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.398 units remaining) [ False ] - - location: 13 (remaining gas: 1039992.388 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.388 units remaining) [ (Some False) ] - - location: 14 (remaining gas: 1039992.378 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.378 units remaining) [ {} (Some False) ] - - location: 16 (remaining gas: 1039992.368 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.368 units remaining) [ (Pair {} (Some False)) ] - - location: 17 (remaining gas: 1039992.358 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.358 units remaining) [ {} (Some False) ] - - location: 18 (remaining gas: 1039992.348 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.348 units remaining) [ (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 7e393c214348..a6fa1f750ef7 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, remaining gas: 1039992.428 units remaining) [ (Pair (Pair False True) None) ] - - location: 10 (remaining gas: 1039992.418 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039992.418 units remaining) [ (Pair False True) ] - - location: 11 (remaining gas: 1039992.408 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.408 units remaining) [ False True ] - - location: 12 (remaining gas: 1039992.398 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.398 units remaining) [ False ] - - location: 13 (remaining gas: 1039992.388 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.388 units remaining) [ (Some False) ] - - location: 14 (remaining gas: 1039992.378 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.378 units remaining) [ {} (Some False) ] - - location: 16 (remaining gas: 1039992.368 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.368 units remaining) [ (Pair {} (Some False)) ] - - location: 17 (remaining gas: 1039992.358 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.358 units remaining) [ {} (Some False) ] - - location: 18 (remaining gas: 1039992.348 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.348 units remaining) [ (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 2e0ad2866a8e..cbc08af9e52f 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, remaining gas: 1039992.428 units remaining) [ (Pair (Pair True False) None) ] - - location: 10 (remaining gas: 1039992.418 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039992.418 units remaining) [ (Pair True False) ] - - location: 11 (remaining gas: 1039992.408 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.408 units remaining) [ True False ] - - location: 12 (remaining gas: 1039992.398 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.398 units remaining) [ False ] - - location: 13 (remaining gas: 1039992.388 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.388 units remaining) [ (Some False) ] - - location: 14 (remaining gas: 1039992.378 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.378 units remaining) [ {} (Some False) ] - - location: 16 (remaining gas: 1039992.368 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.368 units remaining) [ (Pair {} (Some False)) ] - - location: 17 (remaining gas: 1039992.358 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.358 units remaining) [ {} (Some False) ] - - location: 18 (remaining gas: 1039992.348 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.348 units remaining) [ (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 a9eea2d17842..156a9a6961ea 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, remaining gas: 1039992.428 units remaining) [ (Pair (Pair True True) None) ] - - location: 10 (remaining gas: 1039992.418 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039992.418 units remaining) [ (Pair True True) ] - - location: 11 (remaining gas: 1039992.408 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.408 units remaining) [ True True ] - - location: 12 (remaining gas: 1039992.398 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.398 units remaining) [ True ] - - location: 13 (remaining gas: 1039992.388 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.388 units remaining) [ (Some True) ] - - location: 14 (remaining gas: 1039992.378 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.378 units remaining) [ {} (Some True) ] - - location: 16 (remaining gas: 1039992.368 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.368 units remaining) [ (Pair {} (Some True)) ] - - location: 17 (remaining gas: 1039992.358 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.358 units remaining) [ {} (Some True) ] - - location: 18 (remaining gas: 1039992.348 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.348 units remaining) [ (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 02775f4c7d0b..d1afb996d586 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, remaining gas: 1039963.751 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039963.741 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039963.741 units remaining) [ ] - - location: 8 (remaining gas: 1039963.731 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039963.731 units remaining) [ 5 ] - - location: 11 (remaining gas: 1039963.721 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039963.721 units remaining) [ 6 5 ] - - location: 14 (remaining gas: 1039963.686 units remaining) + - location: 14 (just consumed gas: 0.035, remaining gas: 1039963.686 units remaining) [ 4 ] - - location: 15 (remaining gas: 1039963.676 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039963.676 units remaining) [ 4 4 ] - - location: 20 (remaining gas: 1039963.641 units remaining) + - location: 20 (just consumed gas: 0.035, remaining gas: 1039963.641 units remaining) [ 0 ] - - location: 21 (remaining gas: 1039963.631 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039963.631 units remaining) [ True ] - - location: 22 (remaining gas: 1039963.631 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039963.631 units remaining) [ ] - - location: 22 (remaining gas: 1039963.616 units remaining) + - location: 22 (just consumed gas: 0.015, remaining gas: 1039963.616 units remaining) [ ] - - location: 28 (remaining gas: 1039963.606 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039963.606 units remaining) [ 6 ] - - location: 31 (remaining gas: 1039963.596 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039963.596 units remaining) [ 5 6 ] - - location: 34 (remaining gas: 1039963.561 units remaining) + - location: 34 (just consumed gas: 0.035, remaining gas: 1039963.561 units remaining) [ 4 ] - - location: 35 (remaining gas: 1039963.551 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039963.551 units remaining) [ 4 4 ] - - location: 40 (remaining gas: 1039963.516 units remaining) + - location: 40 (just consumed gas: 0.035, remaining gas: 1039963.516 units remaining) [ 0 ] - - location: 41 (remaining gas: 1039963.506 units remaining) + - location: 41 (just consumed gas: 0.010, remaining gas: 1039963.506 units remaining) [ True ] - - location: 42 (remaining gas: 1039963.506 units remaining) + - location: 42 (just consumed gas: 0, remaining gas: 1039963.506 units remaining) [ ] - - location: 42 (remaining gas: 1039963.491 units remaining) + - location: 42 (just consumed gas: 0.015, remaining gas: 1039963.491 units remaining) [ ] - - location: 48 (remaining gas: 1039963.481 units remaining) + - location: 48 (just consumed gas: 0.010, remaining gas: 1039963.481 units remaining) [ 12 ] - - location: 51 (remaining gas: 1039963.471 units remaining) + - location: 51 (just consumed gas: 0.010, remaining gas: 1039963.471 units remaining) [ -1 12 ] - - location: 54 (remaining gas: 1039963.436 units remaining) + - location: 54 (just consumed gas: 0.035, remaining gas: 1039963.436 units remaining) [ 12 ] - - location: 55 (remaining gas: 1039963.426 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039963.426 units remaining) [ 12 12 ] - - location: 60 (remaining gas: 1039963.391 units remaining) + - location: 60 (just consumed gas: 0.035, remaining gas: 1039963.391 units remaining) [ 0 ] - - location: 61 (remaining gas: 1039963.381 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039963.381 units remaining) [ True ] - - location: 62 (remaining gas: 1039963.381 units remaining) + - location: 62 (just consumed gas: 0, remaining gas: 1039963.381 units remaining) [ ] - - location: 62 (remaining gas: 1039963.366 units remaining) + - location: 62 (just consumed gas: 0.015, remaining gas: 1039963.366 units remaining) [ ] - - location: 68 (remaining gas: 1039963.356 units remaining) + - location: 68 (just consumed gas: 0.010, remaining gas: 1039963.356 units remaining) [ 12 ] - - location: 71 (remaining gas: 1039963.346 units remaining) + - location: 71 (just consumed gas: 0.010, remaining gas: 1039963.346 units remaining) [ -5 12 ] - - location: 74 (remaining gas: 1039963.311 units remaining) + - location: 74 (just consumed gas: 0.035, remaining gas: 1039963.311 units remaining) [ 8 ] - - location: 75 (remaining gas: 1039963.301 units remaining) + - location: 75 (just consumed gas: 0.010, remaining gas: 1039963.301 units remaining) [ 8 8 ] - - location: 80 (remaining gas: 1039963.266 units remaining) + - location: 80 (just consumed gas: 0.035, remaining gas: 1039963.266 units remaining) [ 0 ] - - location: 81 (remaining gas: 1039963.256 units remaining) + - location: 81 (just consumed gas: 0.010, remaining gas: 1039963.256 units remaining) [ True ] - - location: 82 (remaining gas: 1039963.256 units remaining) + - location: 82 (just consumed gas: 0, remaining gas: 1039963.256 units remaining) [ ] - - location: 82 (remaining gas: 1039963.241 units remaining) + - location: 82 (just consumed gas: 0.015, remaining gas: 1039963.241 units remaining) [ ] - - location: 88 (remaining gas: 1039963.231 units remaining) + - location: 88 (just consumed gas: 0.010, remaining gas: 1039963.231 units remaining) [ Unit ] - - location: 89 (remaining gas: 1039963.221 units remaining) + - location: 89 (just consumed gas: 0.010, remaining gas: 1039963.221 units remaining) [ {} Unit ] - - location: 91 (remaining gas: 1039963.211 units remaining) + - location: 91 (just consumed gas: 0.010, remaining gas: 1039963.211 units remaining) [ (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 62336a17b142..52408b63dc49 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, remaining gas: 1039994.634 units remaining) [ (Pair (Pair False False) False) ] - - location: 9 (remaining gas: 1039994.624 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.624 units remaining) [ (Pair False False) ] - - location: 10 (remaining gas: 1039994.614 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.614 units remaining) [ False False ] - - location: 11 (remaining gas: 1039994.604 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.604 units remaining) [ False ] - - location: 12 (remaining gas: 1039994.594 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.594 units remaining) [ {} False ] - - location: 14 (remaining gas: 1039994.584 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.584 units remaining) [ (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 335689c17a19..2c0eb5686a68 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, remaining gas: 1039994.634 units remaining) [ (Pair (Pair False True) False) ] - - location: 9 (remaining gas: 1039994.624 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.624 units remaining) [ (Pair False True) ] - - location: 10 (remaining gas: 1039994.614 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.614 units remaining) [ False True ] - - location: 11 (remaining gas: 1039994.604 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.604 units remaining) [ False ] - - location: 12 (remaining gas: 1039994.594 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.594 units remaining) [ {} False ] - - location: 14 (remaining gas: 1039994.584 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.584 units remaining) [ (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 15b16581ab1e..78bd9ae30ee9 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, remaining gas: 1039994.634 units remaining) [ (Pair (Pair True False) False) ] - - location: 9 (remaining gas: 1039994.624 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.624 units remaining) [ (Pair True False) ] - - location: 10 (remaining gas: 1039994.614 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.614 units remaining) [ True False ] - - location: 11 (remaining gas: 1039994.604 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.604 units remaining) [ False ] - - location: 12 (remaining gas: 1039994.594 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.594 units remaining) [ {} False ] - - location: 14 (remaining gas: 1039994.584 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.584 units remaining) [ (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 37d45b4b84e9..a94c14a46a71 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, remaining gas: 1039994.634 units remaining) [ (Pair (Pair True True) False) ] - - location: 9 (remaining gas: 1039994.624 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.624 units remaining) [ (Pair True True) ] - - location: 10 (remaining gas: 1039994.614 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.614 units remaining) [ True True ] - - location: 11 (remaining gas: 1039994.604 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.604 units remaining) [ True ] - - location: 12 (remaining gas: 1039994.594 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.594 units remaining) [ {} True ] - - location: 14 (remaining gas: 1039994.584 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.584 units remaining) [ (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 c3fff51cb699..f8f989ce3e86 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, remaining gas: 1039995.733 units remaining) [ (Pair Unit 111) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) [ 4000000000000 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) [ {} 4000000000000 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.693 units remaining) [ (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 383edc04061a..957d76334e62 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, remaining gas: 1039989.157 units remaining) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (remaining gas: 1039989.147 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.147 units remaining) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (remaining gas: 1039989.147 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.147 units remaining) [ (Pair { Elt 0 1 } None) ] - - location: 15 (remaining gas: 1039989.137 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.137 units remaining) [ { Elt 0 1 } ] - - location: 16 (remaining gas: 1039989.127 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.127 units remaining) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (remaining gas: 1039989.102 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039989.102 units remaining) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (remaining gas: 1039988.380 units remaining) + - location: 17 (just consumed gas: 0.722, remaining gas: 1039988.380 units remaining) [ False { Elt 0 1 } ] - - location: 18 (remaining gas: 1039988.370 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.370 units remaining) [ (Some False) { Elt 0 1 } ] - - location: 19 (remaining gas: 1039988.360 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.360 units remaining) [ { Elt 0 1 } (Some False) ] - - location: 20 (remaining gas: 1039988.350 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.350 units remaining) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039988.340 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.340 units remaining) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039988.330 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039988.330 units remaining) [ (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 8d5aae07f4dc..996526b5b02c 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, remaining gas: 1039989.157 units remaining) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (remaining gas: 1039989.147 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.147 units remaining) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (remaining gas: 1039989.147 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.147 units remaining) [ (Pair { Elt 0 1 } None) ] - - location: 15 (remaining gas: 1039989.137 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.137 units remaining) [ { Elt 0 1 } ] - - location: 16 (remaining gas: 1039989.127 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.127 units remaining) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (remaining gas: 1039989.102 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039989.102 units remaining) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (remaining gas: 1039988.380 units remaining) + - location: 17 (just consumed gas: 0.722, remaining gas: 1039988.380 units remaining) [ False { Elt 0 1 } ] - - location: 18 (remaining gas: 1039988.370 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.370 units remaining) [ (Some False) { Elt 0 1 } ] - - location: 19 (remaining gas: 1039988.360 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.360 units remaining) [ { Elt 0 1 } (Some False) ] - - location: 20 (remaining gas: 1039988.350 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.350 units remaining) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039988.340 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.340 units remaining) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039988.330 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039988.330 units remaining) [ (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 987ad130285e..13942358ae15 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, remaining gas: 1039989.132 units remaining) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (remaining gas: 1039989.122 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.122 units remaining) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (remaining gas: 1039989.122 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.122 units remaining) [ (Pair { Elt 1 0 } None) ] - - location: 15 (remaining gas: 1039989.112 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.112 units remaining) [ { Elt 1 0 } ] - - location: 16 (remaining gas: 1039989.102 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.102 units remaining) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (remaining gas: 1039989.077 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039989.077 units remaining) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (remaining gas: 1039988.355 units remaining) + - location: 17 (just consumed gas: 0.722, remaining gas: 1039988.355 units remaining) [ True { Elt 1 0 } ] - - location: 18 (remaining gas: 1039988.345 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.345 units remaining) [ (Some True) { Elt 1 0 } ] - - location: 19 (remaining gas: 1039988.335 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.335 units remaining) [ { Elt 1 0 } (Some True) ] - - location: 20 (remaining gas: 1039988.325 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.325 units remaining) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039988.315 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.315 units remaining) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039988.305 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039988.305 units remaining) [ (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 5bfeb260a335..4a39434b5687 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, remaining gas: 1039989.132 units remaining) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (remaining gas: 1039989.122 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.122 units remaining) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (remaining gas: 1039989.122 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.122 units remaining) [ (Pair { Elt 1 0 } None) ] - - location: 15 (remaining gas: 1039989.112 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.112 units remaining) [ { Elt 1 0 } ] - - location: 16 (remaining gas: 1039989.102 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.102 units remaining) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (remaining gas: 1039989.077 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039989.077 units remaining) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (remaining gas: 1039988.355 units remaining) + - location: 17 (just consumed gas: 0.722, remaining gas: 1039988.355 units remaining) [ True { Elt 1 0 } ] - - location: 18 (remaining gas: 1039988.345 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.345 units remaining) [ (Some True) { Elt 1 0 } ] - - location: 19 (remaining gas: 1039988.335 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.335 units remaining) [ { Elt 1 0 } (Some True) ] - - location: 20 (remaining gas: 1039988.325 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.325 units remaining) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039988.315 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.315 units remaining) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039988.305 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039988.305 units remaining) [ (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 765b4a747183..9c162097ac95 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, remaining gas: 1039988.162 units remaining) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.152 units remaining) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039988.152 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.142 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.132 units remaining) [ { 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, remaining gas: 1039988.107 units remaining) [ 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, remaining gas: 1039987.384 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.374 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.364 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.354 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.344 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039987.334 units remaining) [ (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 bf9b661f5e8c..0674e87a4324 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, remaining gas: 1039988.162 units remaining) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.152 units remaining) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039988.152 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.142 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.132 units remaining) [ { 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, remaining gas: 1039988.107 units remaining) [ 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, remaining gas: 1039987.384 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.374 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.364 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.354 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.344 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039987.334 units remaining) [ (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 04ebf6074d59..86ae657d20ee 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, remaining gas: 1039988.162 units remaining) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.152 units remaining) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039988.152 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.142 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.132 units remaining) [ { 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, remaining gas: 1039988.107 units remaining) [ 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, remaining gas: 1039987.384 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.374 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.364 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.354 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.344 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039987.334 units remaining) [ (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 b704ceefd234..57c057d8ea90 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, remaining gas: 1039988.162 units remaining) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.152 units remaining) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039988.152 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.142 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.132 units remaining) [ { 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, remaining gas: 1039988.107 units remaining) [ 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, remaining gas: 1039987.384 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.374 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.364 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.354 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.344 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039987.334 units remaining) [ (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 cbb7c2e6820d..4927cee2acc2 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, remaining gas: 1039988.162 units remaining) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.152 units remaining) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039988.152 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.142 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.132 units remaining) [ { 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, remaining gas: 1039988.107 units remaining) [ 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, remaining gas: 1039987.384 units remaining) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.374 units remaining) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.364 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.354 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.344 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039987.334 units remaining) [ (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 81c26ba7a83d..cab5ee4edacf 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, remaining gas: 1039988.162 units remaining) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.152 units remaining) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039988.152 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.142 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.132 units remaining) [ { 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, remaining gas: 1039988.107 units remaining) [ 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, remaining gas: 1039987.384 units remaining) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.374 units remaining) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.364 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.354 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.344 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039987.334 units remaining) [ (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 216f84993286..a90ac4f1e1f1 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, remaining gas: 1039990.064 units remaining) [ (Pair 1 {} None) ] - - location: 12 (remaining gas: 1039990.054 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.054 units remaining) [ 1 (Pair {} None) ] - - location: 13 (remaining gas: 1039990.054 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.054 units remaining) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039990.044 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.044 units remaining) [ {} ] - - location: 16 (remaining gas: 1039990.034 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.034 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039990.009 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.009 units remaining) [ 1 {} {} ] - - location: 17 (remaining gas: 1039989.289 units remaining) + - location: 17 (just consumed gas: 0.720, remaining gas: 1039989.289 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039989.279 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.279 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039989.269 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.269 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039989.259 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.259 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039989.249 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.249 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039989.239 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.239 units remaining) [ (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 f905c8930aa8..02d1f1d8a18a 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, remaining gas: 1039990.064 units remaining) [ (Pair 1 {} None) ] - - location: 12 (remaining gas: 1039990.054 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.054 units remaining) [ 1 (Pair {} None) ] - - location: 13 (remaining gas: 1039990.054 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.054 units remaining) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039990.044 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.044 units remaining) [ {} ] - - location: 16 (remaining gas: 1039990.034 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.034 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039990.009 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.009 units remaining) [ 1 {} {} ] - - location: 17 (remaining gas: 1039989.289 units remaining) + - location: 17 (just consumed gas: 0.720, remaining gas: 1039989.289 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039989.279 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.279 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039989.269 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.269 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039989.259 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.259 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039989.249 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.249 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039989.239 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.239 units remaining) [ (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 beabb4357205..d83737fd59f6 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, remaining gas: 1039988.006 units remaining) [ (Pair "baz" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039987.996 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039987.996 units remaining) [ "baz" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039987.996 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039987.996 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039987.986 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039987.986 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039987.976 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039987.976 units remaining) [ { 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, remaining gas: 1039987.951 units remaining) [ "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, remaining gas: 1039987.216 units remaining) [ False { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039987.206 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.206 units remaining) [ (Some False) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039987.196 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.196 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some False) ] - - location: 20 (remaining gas: 1039987.186 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.186 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 21 (remaining gas: 1039987.176 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.176 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 23 (remaining gas: 1039987.166 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039987.166 units remaining) [ (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 d352542b12fc..c9aa1e09c425 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, remaining gas: 1039988.006 units remaining) [ (Pair "foo" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039987.996 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039987.996 units remaining) [ "foo" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039987.996 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039987.996 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039987.986 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039987.986 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039987.976 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039987.976 units remaining) [ { 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, remaining gas: 1039987.951 units remaining) [ "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, remaining gas: 1039987.216 units remaining) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039987.206 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.206 units remaining) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039987.196 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.196 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.186 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.186 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.176 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.176 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.166 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039987.166 units remaining) [ (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 fd88d7e9d06d..671a55efe0d4 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, remaining gas: 1039988.006 units remaining) [ (Pair "bar" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039987.996 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039987.996 units remaining) [ "bar" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039987.996 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039987.996 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039987.986 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039987.986 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039987.976 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039987.976 units remaining) [ { 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, remaining gas: 1039987.951 units remaining) [ "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, remaining gas: 1039987.216 units remaining) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039987.206 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.206 units remaining) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039987.196 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.196 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.186 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.186 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.176 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.176 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.166 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039987.166 units remaining) [ (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 2baff56c26f1..15c74611979a 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, remaining gas: 1039989.032 units remaining) [ (Pair "foo" { Elt "foo" 0 } None) ] - - location: 12 (remaining gas: 1039989.022 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.022 units remaining) [ "foo" (Pair { Elt "foo" 0 } None) ] - - location: 13 (remaining gas: 1039989.022 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.022 units remaining) [ (Pair { Elt "foo" 0 } None) ] - - location: 15 (remaining gas: 1039989.012 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.012 units remaining) [ { Elt "foo" 0 } ] - - location: 16 (remaining gas: 1039989.002 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.002 units remaining) [ { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 13 (remaining gas: 1039988.977 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039988.977 units remaining) [ "foo" { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 17 (remaining gas: 1039988.243 units remaining) + - location: 17 (just consumed gas: 0.734, remaining gas: 1039988.243 units remaining) [ True { Elt "foo" 0 } ] - - location: 18 (remaining gas: 1039988.233 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.233 units remaining) [ (Some True) { Elt "foo" 0 } ] - - location: 19 (remaining gas: 1039988.223 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.223 units remaining) [ { Elt "foo" 0 } (Some True) ] - - location: 20 (remaining gas: 1039988.213 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.213 units remaining) [ (Pair { Elt "foo" 0 } (Some True)) ] - - location: 21 (remaining gas: 1039988.203 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.203 units remaining) [ {} (Pair { Elt "foo" 0 } (Some True)) ] - - location: 23 (remaining gas: 1039988.193 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039988.193 units remaining) [ (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 dd335781a987..153538cd9854 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, remaining gas: 1039989.032 units remaining) [ (Pair "bar" { Elt "foo" 1 } None) ] - - location: 12 (remaining gas: 1039989.022 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.022 units remaining) [ "bar" (Pair { Elt "foo" 1 } None) ] - - location: 13 (remaining gas: 1039989.022 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.022 units remaining) [ (Pair { Elt "foo" 1 } None) ] - - location: 15 (remaining gas: 1039989.012 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.012 units remaining) [ { Elt "foo" 1 } ] - - location: 16 (remaining gas: 1039989.002 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.002 units remaining) [ { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 13 (remaining gas: 1039988.977 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039988.977 units remaining) [ "bar" { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 17 (remaining gas: 1039988.243 units remaining) + - location: 17 (just consumed gas: 0.734, remaining gas: 1039988.243 units remaining) [ False { Elt "foo" 1 } ] - - location: 18 (remaining gas: 1039988.233 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.233 units remaining) [ (Some False) { Elt "foo" 1 } ] - - location: 19 (remaining gas: 1039988.223 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.223 units remaining) [ { Elt "foo" 1 } (Some False) ] - - location: 20 (remaining gas: 1039988.213 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.213 units remaining) [ (Pair { Elt "foo" 1 } (Some False)) ] - - location: 21 (remaining gas: 1039988.203 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.203 units remaining) [ {} (Pair { Elt "foo" 1 } (Some False)) ] - - location: 23 (remaining gas: 1039988.193 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039988.193 units remaining) [ (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 bb2697257348..9ee94556ae50 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, remaining gas: 1039990.020 units remaining) [ (Pair "bar" {} None) ] - - location: 12 (remaining gas: 1039990.010 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.010 units remaining) [ "bar" (Pair {} None) ] - - location: 13 (remaining gas: 1039990.010 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.010 units remaining) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039990 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039990 units remaining) [ {} ] - - location: 16 (remaining gas: 1039989.990 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.990 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039989.965 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039989.965 units remaining) [ "bar" {} {} ] - - location: 17 (remaining gas: 1039989.233 units remaining) + - location: 17 (just consumed gas: 0.732, remaining gas: 1039989.233 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039989.223 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.223 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039989.213 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.213 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039989.203 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.203 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039989.193 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.193 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039989.183 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.183 units remaining) [ (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 5e613afcbedf..b49e37a5bbe9 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, remaining gas: 1039994.366 units remaining) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039994.356 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.356 units remaining) [ ] - - location: 9 (remaining gas: 1039994.346 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.346 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.336 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.336 units remaining) [ (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 13 (remaining gas: 1039994.326 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.326 units remaining) [ {} (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 15 (remaining gas: 1039994.316 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039994.316 units remaining) [ (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 edaca46edd0b..98c63725d59b 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, remaining gas: 1039994.366 units remaining) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039994.356 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.356 units remaining) [ ] - - location: 9 (remaining gas: 1039994.346 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.346 units remaining) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.336 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.336 units remaining) [ (Some 0x1000000000000000000000000000000000000000000000000000000000000000) ] - - location: 13 (remaining gas: 1039994.326 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.326 units remaining) [ {} (Some 0x1000000000000000000000000000000000000000000000000000000000000000) ] - - location: 15 (remaining gas: 1039994.316 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039994.316 units remaining) [ (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 fa4051346001..c99cb67b3b33 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, remaining gas: 1039995.613 units remaining) [ (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.488 units remaining) + - location: 8 (just consumed gas: 0.115, remaining gas: 1039995.488 units remaining) [ 0 ] - - location: 9 (remaining gas: 1039995.478 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.478 units remaining) [ {} 0 ] - - location: 11 (remaining gas: 1039995.468 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.468 units remaining) [ (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 998313d16e0c..fa2b7aac3a82 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, remaining gas: 1039995.613 units remaining) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.488 units remaining) + - location: 8 (just consumed gas: 0.115, remaining gas: 1039995.488 units remaining) [ 1 ] - - location: 9 (remaining gas: 1039995.478 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.478 units remaining) [ {} 1 ] - - location: 11 (remaining gas: 1039995.468 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.468 units remaining) [ (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 77ead20db045..0cb8d4928ad4 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, remaining gas: 1039995.613 units remaining) [ (Pair 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 0) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 ] - - location: 8 (remaining gas: 1039995.488 units remaining) + - location: 8 (just consumed gas: 0.115, remaining gas: 1039995.488 units remaining) [ 17832688077013577776524784494464728518213913213412866604053735695200962927400 ] - - location: 9 (remaining gas: 1039995.478 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.478 units remaining) [ {} 17832688077013577776524784494464728518213913213412866604053735695200962927400 ] - - location: 11 (remaining gas: 1039995.468 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.468 units remaining) [ (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 f0b5ca3478fe..c9a03d4289c3 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, remaining gas: 1039995.613 units remaining) [ (Pair 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 0) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 ] - - location: 8 (remaining gas: 1039995.488 units remaining) + - location: 8 (just consumed gas: 0.115, remaining gas: 1039995.488 units remaining) [ 11320265829256585830781521966149529460476767408210445238902869222031333517497 ] - - location: 9 (remaining gas: 1039995.478 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.478 units remaining) [ {} 11320265829256585830781521966149529460476767408210445238902869222031333517497 ] - - location: 11 (remaining gas: 1039995.468 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.468 units remaining) [ (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 e138f036dfe8..cacc17759ac6 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, remaining gas: 1039990.684 units remaining) [ (Pair 0x1000000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (remaining gas: 1039990.674 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039990.674 units remaining) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039990.559 units remaining) + - location: 8 (just consumed gas: 0.115, remaining gas: 1039990.559 units remaining) [ 16 ] - - location: 9 (remaining gas: 1039990.549 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039990.549 units remaining) [ (Some 16) ] - - location: 11 (remaining gas: 1039990.549 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039990.549 units remaining) [ 16 ] - - location: 11 (remaining gas: 1039990.534 units remaining) + - location: 11 (just consumed gas: 0.015, remaining gas: 1039990.534 units remaining) [ 16 ] - - location: 17 (remaining gas: 1039990.524 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039990.524 units remaining) [ 1 16 ] - - location: 20 (remaining gas: 1039990.524 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039990.524 units remaining) [ 16 ] - - location: 21 (remaining gas: 1039990.514 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.514 units remaining) [ {} 16 ] - - location: 23 (remaining gas: 1039990.504 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039990.504 units remaining) [ (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 c1d2e0d764f4..cff106943b84 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, remaining gas: 1039995.613 units remaining) [ (Pair -42 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ -42 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266, remaining gas: 1039995.337 units remaining) [ 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 9 (remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.327 units remaining) [ {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 11 (remaining gas: 1039995.317 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.317 units remaining) [ (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 4445c21fd960..033d91572532 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, remaining gas: 1039995.613 units remaining) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266, remaining gas: 1039995.337 units remaining) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.327 units remaining) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.317 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.317 units remaining) [ (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 58dce8d2b6f4..e3ea49f1973e 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, remaining gas: 1039995.613 units remaining) [ (Pair -1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ -1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266, remaining gas: 1039995.337 units remaining) [ 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 9 (remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.327 units remaining) [ {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 11 (remaining gas: 1039995.317 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.317 units remaining) [ (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 481b2e85b93c..7d47dcdae8fa 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, remaining gas: 1039995.613 units remaining) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.338 units remaining) + - location: 8 (just consumed gas: 0.265, remaining gas: 1039995.338 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.328 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.328 units remaining) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.318 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.318 units remaining) [ (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 4f80791ad1f7..73cb0104bc17 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, remaining gas: 1039995.613 units remaining) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.284 units remaining) [ (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 961cea14183e..152f31f8e841 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, remaining gas: 1039995.613 units remaining) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266, remaining gas: 1039995.337 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.327 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.317 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.317 units remaining) [ (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 3d4b4b90d8d9..fb23a9bba912 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, remaining gas: 1039995.613 units remaining) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.284 units remaining) [ (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 152d055f04f7..2140aeb04cf9 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, remaining gas: 1039995.613 units remaining) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.284 units remaining) [ (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 06cd577c391d..9fee5c0341d3 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, remaining gas: 1039995.613 units remaining) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.284 units remaining) [ (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 4af52f2f0d51..d3809403bdee 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, remaining gas: 1039995.613 units remaining) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.284 units remaining) [ (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 ea24be63588e..54e711c58d85 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, remaining gas: 1039995.613 units remaining) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266, remaining gas: 1039995.337 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.327 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.317 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.317 units remaining) [ (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 0c3c5c8b8261..bf45a38aa708 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, remaining gas: 1039995.613 units remaining) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.338 units remaining) + - location: 8 (just consumed gas: 0.265, remaining gas: 1039995.338 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.328 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.328 units remaining) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.318 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.318 units remaining) [ (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 5affd13eeafc..962961c98fd8 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, remaining gas: 1039995.613 units remaining) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.284 units remaining) [ (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 70d1bc99ea31..844cfe09df39 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, remaining gas: 1039995.613 units remaining) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266, remaining gas: 1039995.337 units remaining) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.327 units remaining) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039995.317 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.317 units remaining) [ (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 bd1565da0841..08ff7fd414cb 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, remaining gas: 1039995.613 units remaining) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.284 units remaining) [ (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 3223d6ff0fef..074d99c965e6 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, remaining gas: 1039995.613 units remaining) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.284 units remaining) [ (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 ab75809a2061..b57cd2d60d79 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, remaining gas: 1039995.613 units remaining) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.284 units remaining) [ (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 e6ca3f7def91..13e3fe7b4a73 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, remaining gas: 1039995.613 units remaining) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.284 units remaining) [ (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 5a12f30d3b7e..3274e5507af4 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, remaining gas: 1039995.060 units remaining) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 2 ] - - location: 9 (remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266, remaining gas: 1039994.774 units remaining) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.764 units remaining) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.754 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.754 units remaining) [ (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 5ed335cd29fa..e5f0c828643f 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, remaining gas: 1039995.060 units remaining) [ (Pair -1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ -1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 -1 ] - - location: 9 (remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266, remaining gas: 1039994.774 units remaining) [ 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 10 (remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.764 units remaining) [ {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 12 (remaining gas: 1039994.754 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.754 units remaining) [ (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 2f44c05213a0..98b308ffccca 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, remaining gas: 1039995.060 units remaining) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0 ] - - location: 9 (remaining gas: 1039994.775 units remaining) + - location: 9 (just consumed gas: 0.265, remaining gas: 1039994.775 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.765 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.765 units remaining) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.755 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.755 units remaining) [ (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 9fb6cf6de61f..97c02e3b4351 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, remaining gas: 1039995.060 units remaining) [ (Pair -42 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ -42 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 -42 ] - - location: 9 (remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266, remaining gas: 1039994.774 units remaining) [ 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 10 (remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.764 units remaining) [ {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 12 (remaining gas: 1039994.754 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.754 units remaining) [ (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 1d0f7cd55428..d949cbb6d91c 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, remaining gas: 1039995.060 units remaining) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 1 ] - - location: 9 (remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266, remaining gas: 1039994.774 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.764 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.754 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.754 units remaining) [ (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 1f4508f927b4..7d307e69f540 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, remaining gas: 1039995.060 units remaining) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 52435875175126190479447740508185965837690552500527637822603658699938581184514 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.721 units remaining) [ (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 613328d1b23d..a32e82354803 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, remaining gas: 1039995.060 units remaining) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f 22620284817922784902564672469917992996328211127984472897491698543785655336309 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.721 units remaining) [ (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 21f8d9c53b44..168ab89a7266 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, remaining gas: 1039995.060 units remaining) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f 33644916630334844239120348434626468649534186770809802792596996408934105684394 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.721 units remaining) [ (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 61630f7fd737..79998e979a7d 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, remaining gas: 1039995.060 units remaining) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 17180093072794558806177035834397932205917577288483739652510482486858834123369 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.721 units remaining) [ (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 b3465aac1020..7e75104802b6 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, remaining gas: 1039995.060 units remaining) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 69615968247920749285624776342583898043608129789011377475114141186797415307882 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.721 units remaining) [ (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 de4392998e93..852ce0c1184e 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, remaining gas: 1039995.060 units remaining) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 52435875175126190479447740508185965837690552500527637822603658699938581184514 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.721 units remaining) [ (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 a1da9bdd3a0d..44384ec33c0f 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, remaining gas: 1039995.060 units remaining) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0 ] - - location: 9 (remaining gas: 1039994.775 units remaining) + - location: 9 (just consumed gas: 0.265, remaining gas: 1039994.775 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.765 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.765 units remaining) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.755 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.755 units remaining) [ (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 4885a668dbf0..4cc03eebb8c0 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, remaining gas: 1039995.060 units remaining) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 1 ] - - location: 9 (remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266, remaining gas: 1039994.774 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.764 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.754 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.754 units remaining) [ (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 2648fea43839..6c8a62f4a295 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, remaining gas: 1039995.060 units remaining) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 2 ] - - location: 9 (remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266, remaining gas: 1039994.774 units remaining) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.764 units remaining) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039994.754 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.754 units remaining) [ (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 69b3914db86e..344c811b5917 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, remaining gas: 1039995.060 units remaining) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f 22620284817922784902564672469917992996328211127984472897491698543785655336309 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.721 units remaining) [ (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 f7c1345658f0..33ee2f91206f 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, remaining gas: 1039995.060 units remaining) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f 33644916630334844239120348434626468649534186770809802792596996408934105684394 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.721 units remaining) [ (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 2e98e9a4f071..54407af575b0 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, remaining gas: 1039995.060 units remaining) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 69615968247920749285624776342583898043608129789011377475114141186797415307882 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.721 units remaining) [ (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 f58aa3ada5e4..375d5893b0e6 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, remaining gas: 1039995.060 units remaining) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 17180093072794558806177035834397932205917577288483739652510482486858834123369 ] - - location: 9 (remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (remaining gas: 1039994.721 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.721 units remaining) [ (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 9facbcfb252b..6fb8e4d7930c 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, remaining gas: 1039995.277 units remaining) [ (Pair (Pair 34 17) 0) ] - - location: 9 (remaining gas: 1039995.267 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.267 units remaining) [ (Pair 34 17) ] - - location: 10 (remaining gas: 1039995.257 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.257 units remaining) [ 34 ] - - location: 11 (remaining gas: 1039995.247 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.247 units remaining) [ {} 34 ] - - location: 13 (remaining gas: 1039995.237 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039995.237 units remaining) [ (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 17513835c15f..2655e8edf7f3 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, remaining gas: 1039995.277 units remaining) [ (Pair (Pair 34 17) 0) ] - - location: 9 (remaining gas: 1039995.267 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.267 units remaining) [ (Pair 34 17) ] - - location: 10 (remaining gas: 1039995.257 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.257 units remaining) [ 17 ] - - location: 11 (remaining gas: 1039995.247 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.247 units remaining) [ {} 17 ] - - location: 13 (remaining gas: 1039995.237 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039995.237 units remaining) [ (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 245d9c4a5ff5..f12c9bfb6f42 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, remaining gas: 1039993.247 units remaining) [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] - - location: 8 (remaining gas: 1039993.237 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039993.237 units remaining) [ ] - - location: 9 (remaining gas: 1039993.222 units remaining) + - location: 9 (just consumed gas: 0.015, remaining gas: 1039993.222 units remaining) [ "NetXdQprcVkpaWU" ] - - location: 10 (remaining gas: 1039993.212 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.212 units remaining) [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (remaining gas: 1039993.202 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.202 units remaining) [ {} (Some "NetXdQprcVkpaWU") ] - - location: 13 (remaining gas: 1039993.192 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.192 units remaining) [ (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 7566240fbdc8..d35f137c2f5f 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, remaining gas: 1039994.797 units remaining) [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] - - location: 8 (remaining gas: 1039994.787 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.787 units remaining) [ ] - - location: 9 (remaining gas: 1039994.772 units remaining) + - location: 9 (just consumed gas: 0.015, remaining gas: 1039994.772 units remaining) [ "NetXdQprcVkpaWU" ] - - location: 10 (remaining gas: 1039994.762 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.762 units remaining) [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (remaining gas: 1039994.752 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.752 units remaining) [ {} (Some "NetXdQprcVkpaWU") ] - - location: 13 (remaining gas: 1039994.742 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.742 units remaining) [ (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 78496b08b1a3..a04dd0ede5c0 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, remaining gas: 1039994.947 units remaining) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) [ ] - - location: 9 (remaining gas: 1039994.922 units remaining) + - location: 9 (just consumed gas: 0.015, remaining gas: 1039994.922 units remaining) [ "NetXdQprcVkpaWU" ] - - location: 10 (remaining gas: 1039994.912 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.912 units remaining) [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (remaining gas: 1039994.902 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.902 units remaining) [ {} (Some "NetXdQprcVkpaWU") ] - - location: 13 (remaining gas: 1039994.892 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.892 units remaining) [ (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 7ae31c2795c4..b3371a8d49ce 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, remaining gas: 1039956.652 units remaining) [ (Pair (Pair 1 4 2 Unit) Unit) ] - - location: 11 (remaining gas: 1039956.642 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039956.642 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 12 (remaining gas: 1039956.632 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039956.632 units remaining) [ (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, remaining gas: 1039956.622 units remaining) [ 1 (Pair 1 4 2 Unit) ] - - location: 14 (remaining gas: 1039956.612 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039956.612 units remaining) [ 1 1 (Pair 1 4 2 Unit) ] - - location: 19 (remaining gas: 1039956.577 units remaining) + - location: 19 (just consumed gas: 0.035, remaining gas: 1039956.577 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 20 (remaining gas: 1039956.567 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039956.567 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 21 (remaining gas: 1039956.567 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039956.567 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 21 (remaining gas: 1039956.552 units remaining) + - location: 21 (just consumed gas: 0.015, remaining gas: 1039956.552 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 27 (remaining gas: 1039956.542 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039956.542 units remaining) [ (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, remaining gas: 1039956.522 units remaining) [ 1 (Pair 1 4 2 Unit) ] - - location: 30 (remaining gas: 1039956.512 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039956.512 units remaining) [ 1 1 (Pair 1 4 2 Unit) ] - - location: 35 (remaining gas: 1039956.477 units remaining) + - location: 35 (just consumed gas: 0.035, remaining gas: 1039956.477 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 36 (remaining gas: 1039956.467 units remaining) + - location: 36 (just consumed gas: 0.010, remaining gas: 1039956.467 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 37 (remaining gas: 1039956.467 units remaining) + - location: 37 (just consumed gas: 0, remaining gas: 1039956.467 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 37 (remaining gas: 1039956.452 units remaining) + - location: 37 (just consumed gas: 0.015, remaining gas: 1039956.452 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 43 (remaining gas: 1039956.442 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039956.442 units remaining) [ (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, remaining gas: 1039956.421 units remaining) [ 4 (Pair 1 4 2 Unit) ] - - location: 46 (remaining gas: 1039956.411 units remaining) + - location: 46 (just consumed gas: 0.010, remaining gas: 1039956.411 units remaining) [ 4 4 (Pair 1 4 2 Unit) ] - - location: 51 (remaining gas: 1039956.376 units remaining) + - location: 51 (just consumed gas: 0.035, remaining gas: 1039956.376 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 52 (remaining gas: 1039956.366 units remaining) + - location: 52 (just consumed gas: 0.010, remaining gas: 1039956.366 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 53 (remaining gas: 1039956.366 units remaining) + - location: 53 (just consumed gas: 0, remaining gas: 1039956.366 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 53 (remaining gas: 1039956.351 units remaining) + - location: 53 (just consumed gas: 0.015, remaining gas: 1039956.351 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 59 (remaining gas: 1039956.341 units remaining) + - location: 59 (just consumed gas: 0.010, remaining gas: 1039956.341 units remaining) [ (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, remaining gas: 1039956.319 units remaining) [ 2 (Pair 1 4 2 Unit) ] - - location: 62 (remaining gas: 1039956.309 units remaining) + - location: 62 (just consumed gas: 0.010, remaining gas: 1039956.309 units remaining) [ 2 2 (Pair 1 4 2 Unit) ] - - location: 67 (remaining gas: 1039956.274 units remaining) + - location: 67 (just consumed gas: 0.035, remaining gas: 1039956.274 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 68 (remaining gas: 1039956.264 units remaining) + - location: 68 (just consumed gas: 0.010, remaining gas: 1039956.264 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 69 (remaining gas: 1039956.264 units remaining) + - location: 69 (just consumed gas: 0, remaining gas: 1039956.264 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 69 (remaining gas: 1039956.249 units remaining) + - location: 69 (just consumed gas: 0.015, remaining gas: 1039956.249 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 75 (remaining gas: 1039956.239 units remaining) + - location: 75 (just consumed gas: 0.010, remaining gas: 1039956.239 units remaining) [ (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, remaining gas: 1039956.216 units remaining) [ Unit (Pair 1 4 2 Unit) ] - - location: 78 (remaining gas: 1039956.206 units remaining) + - location: 78 (just consumed gas: 0.010, remaining gas: 1039956.206 units remaining) [ Unit Unit (Pair 1 4 2 Unit) ] - - location: 81 (remaining gas: 1039956.196 units remaining) + - location: 81 (just consumed gas: 0.010, remaining gas: 1039956.196 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 82 (remaining gas: 1039956.186 units remaining) + - location: 82 (just consumed gas: 0.010, remaining gas: 1039956.186 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 83 (remaining gas: 1039956.186 units remaining) + - location: 83 (just consumed gas: 0, remaining gas: 1039956.186 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 83 (remaining gas: 1039956.171 units remaining) + - location: 83 (just consumed gas: 0.015, remaining gas: 1039956.171 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 89 (remaining gas: 1039956.161 units remaining) + - location: 89 (just consumed gas: 0.010, remaining gas: 1039956.161 units remaining) [ ] - - location: 90 (remaining gas: 1039956.151 units remaining) + - location: 90 (just consumed gas: 0.010, remaining gas: 1039956.151 units remaining) [ Unit ] - - location: 91 (remaining gas: 1039956.141 units remaining) + - location: 91 (just consumed gas: 0.010, remaining gas: 1039956.141 units remaining) [ {} Unit ] - - location: 93 (remaining gas: 1039956.131 units remaining) + - location: 93 (just consumed gas: 0.010, remaining gas: 1039956.131 units remaining) [ (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 33cf1133e830..70202c5ecde0 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, remaining gas: 1039987.156 units remaining) [ (Pair (Pair 1 4 2 Unit) None) ] - - location: 16 (remaining gas: 1039987.146 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039987.146 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 17 (remaining gas: 1039987.136 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039987.136 units remaining) [ 2 (Pair 1 4 2 Unit) ] - - location: 20 (remaining gas: 1039987.115 units remaining) + - location: 20 (just consumed gas: 0.021, remaining gas: 1039987.115 units remaining) [ (Pair 2 4 2 Unit) ] - - location: 22 (remaining gas: 1039987.105 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.105 units remaining) [ "toto" (Pair 2 4 2 Unit) ] - - location: 25 (remaining gas: 1039987.079 units remaining) + - location: 25 (just consumed gas: 0.026, remaining gas: 1039987.079 units remaining) [ (Pair 2 4 "toto" Unit) ] - - location: 27 (remaining gas: 1039987.069 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039987.069 units remaining) [ 0x01 (Pair 2 4 "toto" Unit) ] - - location: 30 (remaining gas: 1039987.042 units remaining) + - location: 30 (just consumed gas: 0.027, remaining gas: 1039987.042 units remaining) [ (Pair 2 4 "toto" 0x01) ] - - location: 32 (remaining gas: 1039987.032 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039987.032 units remaining) [ (Some (Pair 2 4 "toto" 0x01)) ] - - location: 33 (remaining gas: 1039987.022 units remaining) + - location: 33 (just consumed gas: 0.010, remaining gas: 1039987.022 units remaining) [ {} (Some (Pair 2 4 "toto" 0x01)) ] - - location: 35 (remaining gas: 1039987.012 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039987.012 units remaining) [ (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 434d34da249d..7cb50b6be378 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, remaining gas: 1039987.333 units remaining) [ (Pair Unit 1 4 2 Unit) ] - - location: 11 (remaining gas: 1039987.323 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039987.323 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 12 (remaining gas: 1039987.313 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039987.313 units remaining) [ 2 (Pair 1 4 2 Unit) ] - - location: 15 (remaining gas: 1039987.292 units remaining) + - location: 15 (just consumed gas: 0.021, remaining gas: 1039987.292 units remaining) [ (Pair 2 4 2 Unit) ] - - location: 17 (remaining gas: 1039987.282 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039987.282 units remaining) [ 12 (Pair 2 4 2 Unit) ] - - location: 20 (remaining gas: 1039987.259 units remaining) + - location: 20 (just consumed gas: 0.023, remaining gas: 1039987.259 units remaining) [ (Pair 2 12 2 Unit) ] - - location: 22 (remaining gas: 1039987.249 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.249 units remaining) [ 8 (Pair 2 12 2 Unit) ] - - location: 25 (remaining gas: 1039987.223 units remaining) + - location: 25 (just consumed gas: 0.026, remaining gas: 1039987.223 units remaining) [ (Pair 2 12 8 Unit) ] - - location: 27 (remaining gas: 1039987.213 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039987.213 units remaining) [ Unit (Pair 2 12 8 Unit) ] - - location: 28 (remaining gas: 1039987.186 units remaining) + - location: 28 (just consumed gas: 0.027, remaining gas: 1039987.186 units remaining) [ (Pair 2 12 8 Unit) ] - - location: 30 (remaining gas: 1039987.176 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039987.176 units remaining) [ {} (Pair 2 12 8 Unit) ] - - location: 32 (remaining gas: 1039987.166 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039987.166 units remaining) [ (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 c0d103246fe0..7f3eee9daedd 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, remaining gas: 1039991.779 units remaining) [ (Pair Unit 0 0 0) ] - - location: 10 (remaining gas: 1039991.769 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.769 units remaining) [ ] - - location: 11 (remaining gas: 1039991.759 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.759 units remaining) [ 3 ] - - location: 14 (remaining gas: 1039991.749 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.749 units remaining) [ 2 3 ] - - location: 17 (remaining gas: 1039991.739 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.739 units remaining) [ 1 2 3 ] - - location: 20 (remaining gas: 1039991.729 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.729 units remaining) [ {} 1 2 3 ] - - location: 22 (remaining gas: 1039991.715 units remaining) + - location: 22 (just consumed gas: 0.014, remaining gas: 1039991.715 units remaining) [ (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 d5df0593941a..c7cac00afc64 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, remaining gas: 1039801.028 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039801.018 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039801.018 units remaining) [ ] - - location: 8 (remaining gas: 1039801.008 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039801.008 units remaining) [ True ] - - location: 11 (remaining gas: 1039800.998 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039800.998 units remaining) [ True True ] - - location: 12 (remaining gas: 1039800.963 units remaining) + - location: 12 (just consumed gas: 0.035, remaining gas: 1039800.963 units remaining) [ 0 ] - - location: 14 (remaining gas: 1039800.953 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039800.953 units remaining) [ True ] - - location: 15 (remaining gas: 1039800.953 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039800.953 units remaining) [ ] - - location: 15 (remaining gas: 1039800.938 units remaining) + - location: 15 (just consumed gas: 0.015, remaining gas: 1039800.938 units remaining) [ ] - - location: 21 (remaining gas: 1039800.928 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039800.928 units remaining) [ False ] - - location: 24 (remaining gas: 1039800.918 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039800.918 units remaining) [ False False ] - - location: 25 (remaining gas: 1039800.883 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039800.883 units remaining) [ 0 ] - - location: 27 (remaining gas: 1039800.873 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039800.873 units remaining) [ True ] - - location: 28 (remaining gas: 1039800.873 units remaining) + - location: 28 (just consumed gas: 0, remaining gas: 1039800.873 units remaining) [ ] - - location: 28 (remaining gas: 1039800.858 units remaining) + - location: 28 (just consumed gas: 0.015, remaining gas: 1039800.858 units remaining) [ ] - - location: 34 (remaining gas: 1039800.848 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039800.848 units remaining) [ False ] - - location: 37 (remaining gas: 1039800.838 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039800.838 units remaining) [ True False ] - - location: 40 (remaining gas: 1039800.803 units remaining) + - location: 40 (just consumed gas: 0.035, remaining gas: 1039800.803 units remaining) [ 1 ] - - location: 42 (remaining gas: 1039800.793 units remaining) + - location: 42 (just consumed gas: 0.010, remaining gas: 1039800.793 units remaining) [ True ] - - location: 43 (remaining gas: 1039800.793 units remaining) + - location: 43 (just consumed gas: 0, remaining gas: 1039800.793 units remaining) [ ] - - location: 43 (remaining gas: 1039800.778 units remaining) + - location: 43 (just consumed gas: 0.015, remaining gas: 1039800.778 units remaining) [ ] - - location: 49 (remaining gas: 1039800.768 units remaining) + - location: 49 (just consumed gas: 0.010, remaining gas: 1039800.768 units remaining) [ True ] - - location: 52 (remaining gas: 1039800.758 units remaining) + - location: 52 (just consumed gas: 0.010, remaining gas: 1039800.758 units remaining) [ False True ] - - location: 55 (remaining gas: 1039800.723 units remaining) + - location: 55 (just consumed gas: 0.035, remaining gas: 1039800.723 units remaining) [ -1 ] - - location: 57 (remaining gas: 1039800.713 units remaining) + - location: 57 (just consumed gas: 0.010, remaining gas: 1039800.713 units remaining) [ True ] - - location: 58 (remaining gas: 1039800.713 units remaining) + - location: 58 (just consumed gas: 0, remaining gas: 1039800.713 units remaining) [ ] - - location: 58 (remaining gas: 1039800.698 units remaining) + - location: 58 (just consumed gas: 0.015, remaining gas: 1039800.698 units remaining) [ ] - - location: 64 (remaining gas: 1039800.688 units remaining) + - location: 64 (just consumed gas: 0.010, remaining gas: 1039800.688 units remaining) [ 0xaabbcc ] - - location: 67 (remaining gas: 1039800.678 units remaining) + - location: 67 (just consumed gas: 0.010, remaining gas: 1039800.678 units remaining) [ 0xaabbcc 0xaabbcc ] - - location: 68 (remaining gas: 1039800.643 units remaining) + - location: 68 (just consumed gas: 0.035, remaining gas: 1039800.643 units remaining) [ 0 ] - - location: 70 (remaining gas: 1039800.633 units remaining) + - location: 70 (just consumed gas: 0.010, remaining gas: 1039800.633 units remaining) [ True ] - - location: 71 (remaining gas: 1039800.633 units remaining) + - location: 71 (just consumed gas: 0, remaining gas: 1039800.633 units remaining) [ ] - - location: 71 (remaining gas: 1039800.618 units remaining) + - location: 71 (just consumed gas: 0.015, remaining gas: 1039800.618 units remaining) [ ] - - location: 77 (remaining gas: 1039800.608 units remaining) + - location: 77 (just consumed gas: 0.010, remaining gas: 1039800.608 units remaining) [ 0x ] - - location: 80 (remaining gas: 1039800.598 units remaining) + - location: 80 (just consumed gas: 0.010, remaining gas: 1039800.598 units remaining) [ 0x 0x ] - - location: 83 (remaining gas: 1039800.563 units remaining) + - location: 83 (just consumed gas: 0.035, remaining gas: 1039800.563 units remaining) [ 0 ] - - location: 85 (remaining gas: 1039800.553 units remaining) + - location: 85 (just consumed gas: 0.010, remaining gas: 1039800.553 units remaining) [ True ] - - location: 86 (remaining gas: 1039800.553 units remaining) + - location: 86 (just consumed gas: 0, remaining gas: 1039800.553 units remaining) [ ] - - location: 86 (remaining gas: 1039800.538 units remaining) + - location: 86 (just consumed gas: 0.015, remaining gas: 1039800.538 units remaining) [ ] - - location: 92 (remaining gas: 1039800.528 units remaining) + - location: 92 (just consumed gas: 0.010, remaining gas: 1039800.528 units remaining) [ 0x ] - - location: 95 (remaining gas: 1039800.518 units remaining) + - location: 95 (just consumed gas: 0.010, remaining gas: 1039800.518 units remaining) [ 0x01 0x ] - - location: 98 (remaining gas: 1039800.483 units remaining) + - location: 98 (just consumed gas: 0.035, remaining gas: 1039800.483 units remaining) [ 1 ] - - location: 100 (remaining gas: 1039800.473 units remaining) + - location: 100 (just consumed gas: 0.010, remaining gas: 1039800.473 units remaining) [ True ] - - location: 101 (remaining gas: 1039800.473 units remaining) + - location: 101 (just consumed gas: 0, remaining gas: 1039800.473 units remaining) [ ] - - location: 101 (remaining gas: 1039800.458 units remaining) + - location: 101 (just consumed gas: 0.015, remaining gas: 1039800.458 units remaining) [ ] - - location: 107 (remaining gas: 1039800.448 units remaining) + - location: 107 (just consumed gas: 0.010, remaining gas: 1039800.448 units remaining) [ 0x01 ] - - location: 110 (remaining gas: 1039800.438 units remaining) + - location: 110 (just consumed gas: 0.010, remaining gas: 1039800.438 units remaining) [ 0x02 0x01 ] - - location: 113 (remaining gas: 1039800.403 units remaining) + - location: 113 (just consumed gas: 0.035, remaining gas: 1039800.403 units remaining) [ 1 ] - - location: 115 (remaining gas: 1039800.393 units remaining) + - location: 115 (just consumed gas: 0.010, remaining gas: 1039800.393 units remaining) [ True ] - - location: 116 (remaining gas: 1039800.393 units remaining) + - location: 116 (just consumed gas: 0, remaining gas: 1039800.393 units remaining) [ ] - - location: 116 (remaining gas: 1039800.378 units remaining) + - location: 116 (just consumed gas: 0.015, remaining gas: 1039800.378 units remaining) [ ] - - location: 122 (remaining gas: 1039800.368 units remaining) + - location: 122 (just consumed gas: 0.010, remaining gas: 1039800.368 units remaining) [ 0x02 ] - - location: 125 (remaining gas: 1039800.358 units remaining) + - location: 125 (just consumed gas: 0.010, remaining gas: 1039800.358 units remaining) [ 0x01 0x02 ] - - location: 128 (remaining gas: 1039800.323 units remaining) + - location: 128 (just consumed gas: 0.035, remaining gas: 1039800.323 units remaining) [ -1 ] - - location: 130 (remaining gas: 1039800.313 units remaining) + - location: 130 (just consumed gas: 0.010, remaining gas: 1039800.313 units remaining) [ True ] - - location: 131 (remaining gas: 1039800.313 units remaining) + - location: 131 (just consumed gas: 0, remaining gas: 1039800.313 units remaining) [ ] - - location: 131 (remaining gas: 1039800.298 units remaining) + - location: 131 (just consumed gas: 0.015, remaining gas: 1039800.298 units remaining) [ ] - - location: 137 (remaining gas: 1039800.288 units remaining) + - location: 137 (just consumed gas: 0.010, remaining gas: 1039800.288 units remaining) [ 1 ] - - location: 140 (remaining gas: 1039800.278 units remaining) + - location: 140 (just consumed gas: 0.010, remaining gas: 1039800.278 units remaining) [ 1 1 ] - - location: 141 (remaining gas: 1039800.243 units remaining) + - location: 141 (just consumed gas: 0.035, remaining gas: 1039800.243 units remaining) [ 0 ] - - location: 143 (remaining gas: 1039800.233 units remaining) + - location: 143 (just consumed gas: 0.010, remaining gas: 1039800.233 units remaining) [ True ] - - location: 144 (remaining gas: 1039800.233 units remaining) + - location: 144 (just consumed gas: 0, remaining gas: 1039800.233 units remaining) [ ] - - location: 144 (remaining gas: 1039800.218 units remaining) + - location: 144 (just consumed gas: 0.015, remaining gas: 1039800.218 units remaining) [ ] - - location: 150 (remaining gas: 1039800.208 units remaining) + - location: 150 (just consumed gas: 0.010, remaining gas: 1039800.208 units remaining) [ 10 ] - - location: 153 (remaining gas: 1039800.198 units remaining) + - location: 153 (just consumed gas: 0.010, remaining gas: 1039800.198 units remaining) [ 5 10 ] - - location: 156 (remaining gas: 1039800.163 units remaining) + - location: 156 (just consumed gas: 0.035, remaining gas: 1039800.163 units remaining) [ -1 ] - - location: 158 (remaining gas: 1039800.153 units remaining) + - location: 158 (just consumed gas: 0.010, remaining gas: 1039800.153 units remaining) [ True ] - - location: 159 (remaining gas: 1039800.153 units remaining) + - location: 159 (just consumed gas: 0, remaining gas: 1039800.153 units remaining) [ ] - - location: 159 (remaining gas: 1039800.138 units remaining) + - location: 159 (just consumed gas: 0.015, remaining gas: 1039800.138 units remaining) [ ] - - location: 165 (remaining gas: 1039800.128 units remaining) + - location: 165 (just consumed gas: 0.010, remaining gas: 1039800.128 units remaining) [ -4 ] - - location: 168 (remaining gas: 1039800.118 units remaining) + - location: 168 (just consumed gas: 0.010, remaining gas: 1039800.118 units remaining) [ 1923 -4 ] - - location: 171 (remaining gas: 1039800.083 units remaining) + - location: 171 (just consumed gas: 0.035, remaining gas: 1039800.083 units remaining) [ 1 ] - - location: 173 (remaining gas: 1039800.073 units remaining) + - location: 173 (just consumed gas: 0.010, remaining gas: 1039800.073 units remaining) [ True ] - - location: 174 (remaining gas: 1039800.073 units remaining) + - location: 174 (just consumed gas: 0, remaining gas: 1039800.073 units remaining) [ ] - - location: 174 (remaining gas: 1039800.058 units remaining) + - location: 174 (just consumed gas: 0.015, remaining gas: 1039800.058 units remaining) [ ] - - location: 180 (remaining gas: 1039800.048 units remaining) + - location: 180 (just consumed gas: 0.010, remaining gas: 1039800.048 units remaining) [ 1 ] - - location: 183 (remaining gas: 1039800.038 units remaining) + - location: 183 (just consumed gas: 0.010, remaining gas: 1039800.038 units remaining) [ 1 1 ] - - location: 184 (remaining gas: 1039800.003 units remaining) + - location: 184 (just consumed gas: 0.035, remaining gas: 1039800.003 units remaining) [ 0 ] - - location: 186 (remaining gas: 1039799.993 units remaining) + - location: 186 (just consumed gas: 0.010, remaining gas: 1039799.993 units remaining) [ True ] - - location: 187 (remaining gas: 1039799.993 units remaining) + - location: 187 (just consumed gas: 0, remaining gas: 1039799.993 units remaining) [ ] - - location: 187 (remaining gas: 1039799.978 units remaining) + - location: 187 (just consumed gas: 0.015, remaining gas: 1039799.978 units remaining) [ ] - - location: 193 (remaining gas: 1039799.968 units remaining) + - location: 193 (just consumed gas: 0.010, remaining gas: 1039799.968 units remaining) [ 10 ] - - location: 196 (remaining gas: 1039799.958 units remaining) + - location: 196 (just consumed gas: 0.010, remaining gas: 1039799.958 units remaining) [ 5 10 ] - - location: 199 (remaining gas: 1039799.923 units remaining) + - location: 199 (just consumed gas: 0.035, remaining gas: 1039799.923 units remaining) [ -1 ] - - location: 201 (remaining gas: 1039799.913 units remaining) + - location: 201 (just consumed gas: 0.010, remaining gas: 1039799.913 units remaining) [ True ] - - location: 202 (remaining gas: 1039799.913 units remaining) + - location: 202 (just consumed gas: 0, remaining gas: 1039799.913 units remaining) [ ] - - location: 202 (remaining gas: 1039799.898 units remaining) + - location: 202 (just consumed gas: 0.015, remaining gas: 1039799.898 units remaining) [ ] - - location: 208 (remaining gas: 1039799.888 units remaining) + - location: 208 (just consumed gas: 0.010, remaining gas: 1039799.888 units remaining) [ 4 ] - - location: 211 (remaining gas: 1039799.878 units remaining) + - location: 211 (just consumed gas: 0.010, remaining gas: 1039799.878 units remaining) [ 1923 4 ] - - location: 214 (remaining gas: 1039799.843 units remaining) + - location: 214 (just consumed gas: 0.035, remaining gas: 1039799.843 units remaining) [ 1 ] - - location: 216 (remaining gas: 1039799.833 units remaining) + - location: 216 (just consumed gas: 0.010, remaining gas: 1039799.833 units remaining) [ True ] - - location: 217 (remaining gas: 1039799.833 units remaining) + - location: 217 (just consumed gas: 0, remaining gas: 1039799.833 units remaining) [ ] - - location: 217 (remaining gas: 1039799.818 units remaining) + - location: 217 (just consumed gas: 0.015, remaining gas: 1039799.818 units remaining) [ ] - - location: 223 (remaining gas: 1039799.808 units remaining) + - location: 223 (just consumed gas: 0.010, remaining gas: 1039799.808 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 226 (remaining gas: 1039799.798 units remaining) + - location: 226 (just consumed gas: 0.010, remaining gas: 1039799.798 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 227 (remaining gas: 1039799.762 units remaining) + - location: 227 (just consumed gas: 0.036, remaining gas: 1039799.762 units remaining) [ 0 ] - - location: 229 (remaining gas: 1039799.752 units remaining) + - location: 229 (just consumed gas: 0.010, remaining gas: 1039799.752 units remaining) [ True ] - - location: 230 (remaining gas: 1039799.752 units remaining) + - location: 230 (just consumed gas: 0, remaining gas: 1039799.752 units remaining) [ ] - - location: 230 (remaining gas: 1039799.737 units remaining) + - location: 230 (just consumed gas: 0.015, remaining gas: 1039799.737 units remaining) [ ] - - location: 236 (remaining gas: 1039799.727 units remaining) + - location: 236 (just consumed gas: 0.010, remaining gas: 1039799.727 units remaining) [ "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" ] - - location: 239 (remaining gas: 1039799.717 units remaining) + - location: 239 (just consumed gas: 0.010, remaining gas: 1039799.717 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" ] - - location: 242 (remaining gas: 1039799.681 units remaining) + - location: 242 (just consumed gas: 0.036, remaining gas: 1039799.681 units remaining) [ -1 ] - - location: 244 (remaining gas: 1039799.671 units remaining) + - location: 244 (just consumed gas: 0.010, remaining gas: 1039799.671 units remaining) [ True ] - - location: 245 (remaining gas: 1039799.671 units remaining) + - location: 245 (just consumed gas: 0, remaining gas: 1039799.671 units remaining) [ ] - - location: 245 (remaining gas: 1039799.656 units remaining) + - location: 245 (just consumed gas: 0.015, remaining gas: 1039799.656 units remaining) [ ] - - location: 251 (remaining gas: 1039799.646 units remaining) + - location: 251 (just consumed gas: 0.010, remaining gas: 1039799.646 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 254 (remaining gas: 1039799.636 units remaining) + - location: 254 (just consumed gas: 0.010, remaining gas: 1039799.636 units remaining) [ "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 257 (remaining gas: 1039799.600 units remaining) + - location: 257 (just consumed gas: 0.036, remaining gas: 1039799.600 units remaining) [ 1 ] - - location: 259 (remaining gas: 1039799.590 units remaining) + - location: 259 (just consumed gas: 0.010, remaining gas: 1039799.590 units remaining) [ True ] - - location: 260 (remaining gas: 1039799.590 units remaining) + - location: 260 (just consumed gas: 0, remaining gas: 1039799.590 units remaining) [ ] - - location: 260 (remaining gas: 1039799.575 units remaining) + - location: 260 (just consumed gas: 0.015, remaining gas: 1039799.575 units remaining) [ ] - - location: 266 (remaining gas: 1039799.565 units remaining) + - location: 266 (just consumed gas: 0.010, remaining gas: 1039799.565 units remaining) [ 1 ] - - location: 269 (remaining gas: 1039799.555 units remaining) + - location: 269 (just consumed gas: 0.010, remaining gas: 1039799.555 units remaining) [ 1 1 ] - - location: 270 (remaining gas: 1039799.520 units remaining) + - location: 270 (just consumed gas: 0.035, remaining gas: 1039799.520 units remaining) [ 0 ] - - location: 272 (remaining gas: 1039799.510 units remaining) + - location: 272 (just consumed gas: 0.010, remaining gas: 1039799.510 units remaining) [ True ] - - location: 273 (remaining gas: 1039799.510 units remaining) + - location: 273 (just consumed gas: 0, remaining gas: 1039799.510 units remaining) [ ] - - location: 273 (remaining gas: 1039799.495 units remaining) + - location: 273 (just consumed gas: 0.015, remaining gas: 1039799.495 units remaining) [ ] - - location: 279 (remaining gas: 1039799.485 units remaining) + - location: 279 (just consumed gas: 0.010, remaining gas: 1039799.485 units remaining) [ 10 ] - - location: 282 (remaining gas: 1039799.475 units remaining) + - location: 282 (just consumed gas: 0.010, remaining gas: 1039799.475 units remaining) [ 5 10 ] - - location: 285 (remaining gas: 1039799.440 units remaining) + - location: 285 (just consumed gas: 0.035, remaining gas: 1039799.440 units remaining) [ -1 ] - - location: 287 (remaining gas: 1039799.430 units remaining) + - location: 287 (just consumed gas: 0.010, remaining gas: 1039799.430 units remaining) [ True ] - - location: 288 (remaining gas: 1039799.430 units remaining) + - location: 288 (just consumed gas: 0, remaining gas: 1039799.430 units remaining) [ ] - - location: 288 (remaining gas: 1039799.415 units remaining) + - location: 288 (just consumed gas: 0.015, remaining gas: 1039799.415 units remaining) [ ] - - location: 294 (remaining gas: 1039799.405 units remaining) + - location: 294 (just consumed gas: 0.010, remaining gas: 1039799.405 units remaining) [ 4 ] - - location: 297 (remaining gas: 1039799.395 units remaining) + - location: 297 (just consumed gas: 0.010, remaining gas: 1039799.395 units remaining) [ 1923 4 ] - - location: 300 (remaining gas: 1039799.360 units remaining) + - location: 300 (just consumed gas: 0.035, remaining gas: 1039799.360 units remaining) [ 1 ] - - location: 302 (remaining gas: 1039799.350 units remaining) + - location: 302 (just consumed gas: 0.010, remaining gas: 1039799.350 units remaining) [ True ] - - location: 303 (remaining gas: 1039799.350 units remaining) + - location: 303 (just consumed gas: 0, remaining gas: 1039799.350 units remaining) [ ] - - location: 303 (remaining gas: 1039799.335 units remaining) + - location: 303 (just consumed gas: 0.015, remaining gas: 1039799.335 units remaining) [ ] - - location: 309 (remaining gas: 1039799.325 units remaining) + - location: 309 (just consumed gas: 0.010, remaining gas: 1039799.325 units remaining) [ "AABBCC" ] - - location: 312 (remaining gas: 1039799.315 units remaining) + - location: 312 (just consumed gas: 0.010, remaining gas: 1039799.315 units remaining) [ "AABBCC" "AABBCC" ] - - location: 313 (remaining gas: 1039799.280 units remaining) + - location: 313 (just consumed gas: 0.035, remaining gas: 1039799.280 units remaining) [ 0 ] - - location: 315 (remaining gas: 1039799.270 units remaining) + - location: 315 (just consumed gas: 0.010, remaining gas: 1039799.270 units remaining) [ True ] - - location: 316 (remaining gas: 1039799.270 units remaining) + - location: 316 (just consumed gas: 0, remaining gas: 1039799.270 units remaining) [ ] - - location: 316 (remaining gas: 1039799.255 units remaining) + - location: 316 (just consumed gas: 0.015, remaining gas: 1039799.255 units remaining) [ ] - - location: 322 (remaining gas: 1039799.245 units remaining) + - location: 322 (just consumed gas: 0.010, remaining gas: 1039799.245 units remaining) [ "" ] - - location: 325 (remaining gas: 1039799.235 units remaining) + - location: 325 (just consumed gas: 0.010, remaining gas: 1039799.235 units remaining) [ "" "" ] - - location: 328 (remaining gas: 1039799.200 units remaining) + - location: 328 (just consumed gas: 0.035, remaining gas: 1039799.200 units remaining) [ 0 ] - - location: 330 (remaining gas: 1039799.190 units remaining) + - location: 330 (just consumed gas: 0.010, remaining gas: 1039799.190 units remaining) [ True ] - - location: 331 (remaining gas: 1039799.190 units remaining) + - location: 331 (just consumed gas: 0, remaining gas: 1039799.190 units remaining) [ ] - - location: 331 (remaining gas: 1039799.175 units remaining) + - location: 331 (just consumed gas: 0.015, remaining gas: 1039799.175 units remaining) [ ] - - location: 337 (remaining gas: 1039799.165 units remaining) + - location: 337 (just consumed gas: 0.010, remaining gas: 1039799.165 units remaining) [ "" ] - - location: 340 (remaining gas: 1039799.155 units remaining) + - location: 340 (just consumed gas: 0.010, remaining gas: 1039799.155 units remaining) [ "a" "" ] - - location: 343 (remaining gas: 1039799.120 units remaining) + - location: 343 (just consumed gas: 0.035, remaining gas: 1039799.120 units remaining) [ 1 ] - - location: 345 (remaining gas: 1039799.110 units remaining) + - location: 345 (just consumed gas: 0.010, remaining gas: 1039799.110 units remaining) [ True ] - - location: 346 (remaining gas: 1039799.110 units remaining) + - location: 346 (just consumed gas: 0, remaining gas: 1039799.110 units remaining) [ ] - - location: 346 (remaining gas: 1039799.095 units remaining) + - location: 346 (just consumed gas: 0.015, remaining gas: 1039799.095 units remaining) [ ] - - location: 352 (remaining gas: 1039799.085 units remaining) + - location: 352 (just consumed gas: 0.010, remaining gas: 1039799.085 units remaining) [ "a" ] - - location: 355 (remaining gas: 1039799.075 units remaining) + - location: 355 (just consumed gas: 0.010, remaining gas: 1039799.075 units remaining) [ "b" "a" ] - - location: 358 (remaining gas: 1039799.040 units remaining) + - location: 358 (just consumed gas: 0.035, remaining gas: 1039799.040 units remaining) [ 1 ] - - location: 360 (remaining gas: 1039799.030 units remaining) + - location: 360 (just consumed gas: 0.010, remaining gas: 1039799.030 units remaining) [ True ] - - location: 361 (remaining gas: 1039799.030 units remaining) + - location: 361 (just consumed gas: 0, remaining gas: 1039799.030 units remaining) [ ] - - location: 361 (remaining gas: 1039799.015 units remaining) + - location: 361 (just consumed gas: 0.015, remaining gas: 1039799.015 units remaining) [ ] - - location: 367 (remaining gas: 1039799.005 units remaining) + - location: 367 (just consumed gas: 0.010, remaining gas: 1039799.005 units remaining) [ "b" ] - - location: 370 (remaining gas: 1039798.995 units remaining) + - location: 370 (just consumed gas: 0.010, remaining gas: 1039798.995 units remaining) [ "a" "b" ] - - location: 373 (remaining gas: 1039798.960 units remaining) + - location: 373 (just consumed gas: 0.035, remaining gas: 1039798.960 units remaining) [ -1 ] - - location: 375 (remaining gas: 1039798.950 units remaining) + - location: 375 (just consumed gas: 0.010, remaining gas: 1039798.950 units remaining) [ True ] - - location: 376 (remaining gas: 1039798.950 units remaining) + - location: 376 (just consumed gas: 0, remaining gas: 1039798.950 units remaining) [ ] - - location: 376 (remaining gas: 1039798.935 units remaining) + - location: 376 (just consumed gas: 0.015, remaining gas: 1039798.935 units remaining) [ ] - - location: 382 (remaining gas: 1039798.925 units remaining) + - location: 382 (just consumed gas: 0.010, remaining gas: 1039798.925 units remaining) [ "2019-09-16T08:38:05Z" ] - - location: 385 (remaining gas: 1039798.915 units remaining) + - location: 385 (just consumed gas: 0.010, remaining gas: 1039798.915 units remaining) [ "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, remaining gas: 1039798.880 units remaining) [ 0 ] - - location: 388 (remaining gas: 1039798.870 units remaining) + - location: 388 (just consumed gas: 0.010, remaining gas: 1039798.870 units remaining) [ True ] - - location: 389 (remaining gas: 1039798.870 units remaining) + - location: 389 (just consumed gas: 0, remaining gas: 1039798.870 units remaining) [ ] - - location: 389 (remaining gas: 1039798.855 units remaining) + - location: 389 (just consumed gas: 0.015, remaining gas: 1039798.855 units remaining) [ ] - - location: 395 (remaining gas: 1039798.845 units remaining) + - location: 395 (just consumed gas: 0.010, remaining gas: 1039798.845 units remaining) [ "2017-09-16T08:38:04Z" ] - - location: 398 (remaining gas: 1039798.835 units remaining) + - location: 398 (just consumed gas: 0.010, remaining gas: 1039798.835 units remaining) [ "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, remaining gas: 1039798.800 units remaining) [ 1 ] - - location: 403 (remaining gas: 1039798.790 units remaining) + - location: 403 (just consumed gas: 0.010, remaining gas: 1039798.790 units remaining) [ True ] - - location: 404 (remaining gas: 1039798.790 units remaining) + - location: 404 (just consumed gas: 0, remaining gas: 1039798.790 units remaining) [ ] - - location: 404 (remaining gas: 1039798.775 units remaining) + - location: 404 (just consumed gas: 0.015, remaining gas: 1039798.775 units remaining) [ ] - - location: 410 (remaining gas: 1039798.765 units remaining) + - location: 410 (just consumed gas: 0.010, remaining gas: 1039798.765 units remaining) [ "2019-09-16T08:38:05Z" ] - - location: 413 (remaining gas: 1039798.755 units remaining) + - location: 413 (just consumed gas: 0.010, remaining gas: 1039798.755 units remaining) [ "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, remaining gas: 1039798.720 units remaining) [ -1 ] - - location: 418 (remaining gas: 1039798.710 units remaining) + - location: 418 (just consumed gas: 0.010, remaining gas: 1039798.710 units remaining) [ True ] - - location: 419 (remaining gas: 1039798.710 units remaining) + - location: 419 (just consumed gas: 0, remaining gas: 1039798.710 units remaining) [ ] - - location: 419 (remaining gas: 1039798.695 units remaining) + - location: 419 (just consumed gas: 0.015, remaining gas: 1039798.695 units remaining) [ ] - - location: 425 (remaining gas: 1039798.685 units remaining) + - location: 425 (just consumed gas: 0.010, remaining gas: 1039798.685 units remaining) [ Unit ] - - location: 426 (remaining gas: 1039798.675 units remaining) + - location: 426 (just consumed gas: 0.010, remaining gas: 1039798.675 units remaining) [ {} Unit ] - - location: 428 (remaining gas: 1039798.665 units remaining) + - location: 428 (just consumed gas: 0.010, remaining gas: 1039798.665 units remaining) [ (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 b715861c8589..3834dd947743 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, remaining gas: 1039970.367 units remaining) [ (Pair { -9999999 ; -1 ; 0 ; 1 ; 9999999 } {}) ] - - location: 10 (remaining gas: 1039970.357 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039970.357 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 11 (remaining gas: 1039970.347 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039970.347 units remaining) [ {} { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 14 (remaining gas: 1039970.347 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039970.347 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 16 (remaining gas: 1039970.337 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039970.337 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.337 units remaining) + - location: 17 (just consumed gas: 0, remaining gas: 1039970.337 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.327 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039970.327 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.312 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039970.312 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.302 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039970.302 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.287 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039970.287 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.277 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039970.277 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.262 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039970.262 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.252 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039970.252 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.237 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039970.237 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.227 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039970.227 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.212 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039970.212 units remaining) [ { 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, remaining gas: 1039970.187 units remaining) [ {} { 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, remaining gas: 1039970.177 units remaining) [ { 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, remaining gas: 1039970.167 units remaining) [ { { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 22 (remaining gas: 1039970.167 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039970.167 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 24 (remaining gas: 1039970.157 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039970.157 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.157 units remaining) + - location: 25 (just consumed gas: 0, remaining gas: 1039970.157 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.147 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039970.147 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.132 units remaining) + - location: 25 (just consumed gas: 0.015, remaining gas: 1039970.132 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.122 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039970.122 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.107 units remaining) + - location: 25 (just consumed gas: 0.015, remaining gas: 1039970.107 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.097 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039970.097 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.082 units remaining) + - location: 25 (just consumed gas: 0.015, remaining gas: 1039970.082 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.072 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039970.072 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.057 units remaining) + - location: 25 (just consumed gas: 0.015, remaining gas: 1039970.057 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.047 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039970.047 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.032 units remaining) + - location: 25 (just consumed gas: 0.015, remaining gas: 1039970.032 units remaining) [ { 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, remaining gas: 1039970.007 units remaining) [ { { 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, remaining gas: 1039969.997 units remaining) [ { 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, remaining gas: 1039969.987 units remaining) [ { { 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, remaining gas: 1039969.987 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 32 (remaining gas: 1039969.977 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039969.977 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.977 units remaining) + - location: 33 (just consumed gas: 0, remaining gas: 1039969.977 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039969.967 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039969.967 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.952 units remaining) + - location: 33 (just consumed gas: 0.015, remaining gas: 1039969.952 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039969.942 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039969.942 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.927 units remaining) + - location: 33 (just consumed gas: 0.015, remaining gas: 1039969.927 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039969.917 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039969.917 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.902 units remaining) + - location: 33 (just consumed gas: 0.015, remaining gas: 1039969.902 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039969.892 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039969.892 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.877 units remaining) + - location: 33 (just consumed gas: 0.015, remaining gas: 1039969.877 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039969.867 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039969.867 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.852 units remaining) + - location: 33 (just consumed gas: 0.015, remaining gas: 1039969.852 units remaining) [ { 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, remaining gas: 1039969.827 units remaining) [ { { 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, remaining gas: 1039969.817 units remaining) [ { 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, remaining gas: 1039969.807 units remaining) [ { { 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, remaining gas: 1039969.807 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 40 (remaining gas: 1039969.797 units remaining) + - location: 40 (just consumed gas: 0.010, remaining gas: 1039969.797 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.797 units remaining) + - location: 41 (just consumed gas: 0, remaining gas: 1039969.797 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.787 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039969.787 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.772 units remaining) + - location: 41 (just consumed gas: 0.015, remaining gas: 1039969.772 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.762 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039969.762 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.747 units remaining) + - location: 41 (just consumed gas: 0.015, remaining gas: 1039969.747 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.737 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039969.737 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.722 units remaining) + - location: 41 (just consumed gas: 0.015, remaining gas: 1039969.722 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.712 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039969.712 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.697 units remaining) + - location: 41 (just consumed gas: 0.015, remaining gas: 1039969.697 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.687 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039969.687 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.672 units remaining) + - location: 41 (just consumed gas: 0.015, remaining gas: 1039969.672 units remaining) [ { 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, remaining gas: 1039969.647 units remaining) [ { { 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, remaining gas: 1039969.637 units remaining) [ { 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, remaining gas: 1039969.627 units remaining) [ { { 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, remaining gas: 1039969.627 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 48 (remaining gas: 1039969.617 units remaining) + - location: 48 (just consumed gas: 0.010, remaining gas: 1039969.617 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.617 units remaining) + - location: 49 (just consumed gas: 0, remaining gas: 1039969.617 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.607 units remaining) + - location: 51 (just consumed gas: 0.010, remaining gas: 1039969.607 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.592 units remaining) + - location: 49 (just consumed gas: 0.015, remaining gas: 1039969.592 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.582 units remaining) + - location: 51 (just consumed gas: 0.010, remaining gas: 1039969.582 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.567 units remaining) + - location: 49 (just consumed gas: 0.015, remaining gas: 1039969.567 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.557 units remaining) + - location: 51 (just consumed gas: 0.010, remaining gas: 1039969.557 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.542 units remaining) + - location: 49 (just consumed gas: 0.015, remaining gas: 1039969.542 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.532 units remaining) + - location: 51 (just consumed gas: 0.010, remaining gas: 1039969.532 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.517 units remaining) + - location: 49 (just consumed gas: 0.015, remaining gas: 1039969.517 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.507 units remaining) + - location: 51 (just consumed gas: 0.010, remaining gas: 1039969.507 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.492 units remaining) + - location: 49 (just consumed gas: 0.015, remaining gas: 1039969.492 units remaining) [ { 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, remaining gas: 1039969.467 units remaining) [ { { 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, remaining gas: 1039969.457 units remaining) [ { 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, remaining gas: 1039969.447 units remaining) [ { { 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, remaining gas: 1039969.447 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 56 (remaining gas: 1039969.447 units remaining) + - location: 56 (just consumed gas: 0, remaining gas: 1039969.447 units remaining) [ -9999999 ] - - location: 58 (remaining gas: 1039969.437 units remaining) + - location: 58 (just consumed gas: 0.010, remaining gas: 1039969.437 units remaining) [ False ] - - location: 56 (remaining gas: 1039969.422 units remaining) + - location: 56 (just consumed gas: 0.015, remaining gas: 1039969.422 units remaining) [ -1 ] - - location: 58 (remaining gas: 1039969.412 units remaining) + - location: 58 (just consumed gas: 0.010, remaining gas: 1039969.412 units remaining) [ False ] - - location: 56 (remaining gas: 1039969.397 units remaining) + - location: 56 (just consumed gas: 0.015, remaining gas: 1039969.397 units remaining) [ 0 ] - - location: 58 (remaining gas: 1039969.387 units remaining) + - location: 58 (just consumed gas: 0.010, remaining gas: 1039969.387 units remaining) [ False ] - - location: 56 (remaining gas: 1039969.372 units remaining) + - location: 56 (just consumed gas: 0.015, remaining gas: 1039969.372 units remaining) [ 1 ] - - location: 58 (remaining gas: 1039969.362 units remaining) + - location: 58 (just consumed gas: 0.010, remaining gas: 1039969.362 units remaining) [ True ] - - location: 56 (remaining gas: 1039969.347 units remaining) + - location: 56 (just consumed gas: 0.015, remaining gas: 1039969.347 units remaining) [ 9999999 ] - - location: 58 (remaining gas: 1039969.337 units remaining) + - location: 58 (just consumed gas: 0.010, remaining gas: 1039969.337 units remaining) [ True ] - - location: 56 (remaining gas: 1039969.322 units remaining) + - location: 56 (just consumed gas: 0.015, remaining gas: 1039969.322 units remaining) [ { False ; False ; False ; True ; True } ] - - location: 54 (remaining gas: 1039969.297 units remaining) + - location: 54 (just consumed gas: 0.025, remaining gas: 1039969.297 units remaining) [ { { 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, remaining gas: 1039969.287 units remaining) [ { 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, remaining gas: 1039969.277 units remaining) [ { { 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, remaining gas: 1039969.267 units remaining) [ {} { { 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, remaining gas: 1039969.257 units remaining) [ (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 5e6851411f08..2cab28e920fb 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, remaining gas: 1039993.385 units remaining) [ (Pair { "World!" } {}) ] - - location: 9 (remaining gas: 1039993.375 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.375 units remaining) [ { "World!" } ] - - location: 10 (remaining gas: 1039993.375 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039993.375 units remaining) [ "World!" ] - - location: 12 (remaining gas: 1039993.365 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.365 units remaining) [ "Hello " "World!" ] - - location: 15 (remaining gas: 1039993.314 units remaining) + - location: 15 (just consumed gas: 0.051, remaining gas: 1039993.314 units remaining) [ "Hello World!" ] - - location: 10 (remaining gas: 1039993.299 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.299 units remaining) [ { "Hello World!" } ] - - location: 16 (remaining gas: 1039993.289 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.289 units remaining) [ {} { "Hello World!" } ] - - location: 18 (remaining gas: 1039993.279 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039993.279 units remaining) [ (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 9cbd1acbef40..f11adca5550e 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, remaining gas: 1039993.231 units remaining) [ (Pair { "test1" ; "test2" } {}) ] - - location: 9 (remaining gas: 1039993.221 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.221 units remaining) [ { "test1" ; "test2" } ] - - location: 10 (remaining gas: 1039993.221 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039993.221 units remaining) [ "test1" ] - - location: 12 (remaining gas: 1039993.211 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.211 units remaining) [ "Hello " "test1" ] - - location: 15 (remaining gas: 1039993.161 units remaining) + - location: 15 (just consumed gas: 0.050, remaining gas: 1039993.161 units remaining) [ "Hello test1" ] - - location: 10 (remaining gas: 1039993.146 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.146 units remaining) [ "test2" ] - - location: 12 (remaining gas: 1039993.136 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.136 units remaining) [ "Hello " "test2" ] - - location: 15 (remaining gas: 1039993.086 units remaining) + - location: 15 (just consumed gas: 0.050, remaining gas: 1039993.086 units remaining) [ "Hello test2" ] - - location: 10 (remaining gas: 1039993.071 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.071 units remaining) [ { "Hello test1" ; "Hello test2" } ] - - location: 16 (remaining gas: 1039993.061 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.061 units remaining) [ {} { "Hello test1" ; "Hello test2" } ] - - location: 18 (remaining gas: 1039993.051 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039993.051 units remaining) [ (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 afb754e7e4ce..70e22dd4f843 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, remaining gas: 1039993.559 units remaining) [ (Pair {} {}) ] - - location: 9 (remaining gas: 1039993.549 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.549 units remaining) [ {} ] - - location: 10 (remaining gas: 1039993.549 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039993.549 units remaining) [ {} ] - - location: 16 (remaining gas: 1039993.539 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.539 units remaining) [ {} {} ] - - location: 18 (remaining gas: 1039993.529 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039993.529 units remaining) [ (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 be74315513a2..b59af74950ab 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, remaining gas: 1039993.478 units remaining) [ (Pair { 0xab ; 0xcd } {}) ] - - location: 9 (remaining gas: 1039993.468 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.468 units remaining) [ { 0xab ; 0xcd } ] - - location: 10 (remaining gas: 1039993.468 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039993.468 units remaining) [ 0xab ] - - location: 12 (remaining gas: 1039993.458 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.458 units remaining) [ 0xff 0xab ] - - location: 15 (remaining gas: 1039993.412 units remaining) + - location: 15 (just consumed gas: 0.046, remaining gas: 1039993.412 units remaining) [ 0xffab ] - - location: 10 (remaining gas: 1039993.397 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.397 units remaining) [ 0xcd ] - - location: 12 (remaining gas: 1039993.387 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.387 units remaining) [ 0xff 0xcd ] - - location: 15 (remaining gas: 1039993.341 units remaining) + - location: 15 (just consumed gas: 0.046, remaining gas: 1039993.341 units remaining) [ 0xffcd ] - - location: 10 (remaining gas: 1039993.326 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.326 units remaining) [ { 0xffab ; 0xffcd } ] - - location: 16 (remaining gas: 1039993.316 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.316 units remaining) [ {} { 0xffab ; 0xffcd } ] - - location: 18 (remaining gas: 1039993.306 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039993.306 units remaining) [ (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 714fd8d5ef4b..6f8dfc3a1fb0 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, remaining gas: 1039993.578 units remaining) [ (Pair { 0xcd } {}) ] - - location: 9 (remaining gas: 1039993.568 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.568 units remaining) [ { 0xcd } ] - - location: 10 (remaining gas: 1039993.568 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039993.568 units remaining) [ 0xcd ] - - location: 12 (remaining gas: 1039993.558 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.558 units remaining) [ 0xff 0xcd ] - - location: 15 (remaining gas: 1039993.512 units remaining) + - location: 15 (just consumed gas: 0.046, remaining gas: 1039993.512 units remaining) [ 0xffcd ] - - location: 10 (remaining gas: 1039993.497 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.497 units remaining) [ { 0xffcd } ] - - location: 16 (remaining gas: 1039993.487 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.487 units remaining) [ {} { 0xffcd } ] - - location: 18 (remaining gas: 1039993.477 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039993.477 units remaining) [ (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 2fb1f3732a27..903590740f4d 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, remaining gas: 1039993.678 units remaining) [ (Pair {} {}) ] - - location: 9 (remaining gas: 1039993.668 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.668 units remaining) [ {} ] - - location: 10 (remaining gas: 1039993.668 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039993.668 units remaining) [ {} ] - - location: 16 (remaining gas: 1039993.658 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.658 units remaining) [ {} {} ] - - location: 18 (remaining gas: 1039993.648 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039993.648 units remaining) [ (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 41c160f0584e..eed6e2c357b5 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, remaining gas: 1039988.932 units remaining) [ (Pair { "Hello" ; " " ; "World" ; "!" } "") ] - - location: 8 (remaining gas: 1039988.922 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039988.922 units remaining) [ { "Hello" ; " " ; "World" ; "!" } ] - - location: 9 (remaining gas: 1039988.912 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039988.912 units remaining) [ "" { "Hello" ; " " ; "World" ; "!" } ] - - location: 12 (remaining gas: 1039988.902 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.902 units remaining) [ { "Hello" ; " " ; "World" ; "!" } "" ] - - location: 13 (remaining gas: 1039988.902 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039988.902 units remaining) [ "Hello" "" ] - - location: 15 (remaining gas: 1039988.892 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.892 units remaining) [ "" "Hello" ] - - location: 16 (remaining gas: 1039988.892 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039988.892 units remaining) [ "Hello" ] - - location: 18 (remaining gas: 1039988.882 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.882 units remaining) [ {} "Hello" ] - - location: 20 (remaining gas: 1039988.872 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.872 units remaining) [ "Hello" {} ] - - location: 21 (remaining gas: 1039988.862 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.862 units remaining) [ { "Hello" } ] - - location: 16 (remaining gas: 1039988.837 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039988.837 units remaining) [ "" { "Hello" } ] - - location: 22 (remaining gas: 1039988.827 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.827 units remaining) [ { "" ; "Hello" } ] - - location: 23 (remaining gas: 1039988.705 units remaining) + - location: 23 (just consumed gas: 0.122, remaining gas: 1039988.705 units remaining) [ "Hello" ] - - location: 13 (remaining gas: 1039988.690 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.690 units remaining) [ " " "Hello" ] - - location: 15 (remaining gas: 1039988.680 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.680 units remaining) [ "Hello" " " ] - - location: 16 (remaining gas: 1039988.680 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039988.680 units remaining) [ " " ] - - location: 18 (remaining gas: 1039988.670 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.670 units remaining) [ {} " " ] - - location: 20 (remaining gas: 1039988.660 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.660 units remaining) [ " " {} ] - - location: 21 (remaining gas: 1039988.650 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.650 units remaining) [ { " " } ] - - location: 16 (remaining gas: 1039988.625 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039988.625 units remaining) [ "Hello" { " " } ] - - location: 22 (remaining gas: 1039988.615 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.615 units remaining) [ { "Hello" ; " " } ] - - location: 23 (remaining gas: 1039988.492 units remaining) + - location: 23 (just consumed gas: 0.123, remaining gas: 1039988.492 units remaining) [ "Hello " ] - - location: 13 (remaining gas: 1039988.477 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.477 units remaining) [ "World" "Hello " ] - - location: 15 (remaining gas: 1039988.467 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.467 units remaining) [ "Hello " "World" ] - - location: 16 (remaining gas: 1039988.467 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039988.467 units remaining) [ "World" ] - - location: 18 (remaining gas: 1039988.457 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.457 units remaining) [ {} "World" ] - - location: 20 (remaining gas: 1039988.447 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.447 units remaining) [ "World" {} ] - - location: 21 (remaining gas: 1039988.437 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.437 units remaining) [ { "World" } ] - - location: 16 (remaining gas: 1039988.412 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039988.412 units remaining) [ "Hello " { "World" } ] - - location: 22 (remaining gas: 1039988.402 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.402 units remaining) [ { "Hello " ; "World" } ] - - location: 23 (remaining gas: 1039988.277 units remaining) + - location: 23 (just consumed gas: 0.125, remaining gas: 1039988.277 units remaining) [ "Hello World" ] - - location: 13 (remaining gas: 1039988.262 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.262 units remaining) [ "!" "Hello World" ] - - location: 15 (remaining gas: 1039988.252 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.252 units remaining) [ "Hello World" "!" ] - - location: 16 (remaining gas: 1039988.252 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039988.252 units remaining) [ "!" ] - - location: 18 (remaining gas: 1039988.242 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.242 units remaining) [ {} "!" ] - - location: 20 (remaining gas: 1039988.232 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.232 units remaining) [ "!" {} ] - - location: 21 (remaining gas: 1039988.222 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.222 units remaining) [ { "!" } ] - - location: 16 (remaining gas: 1039988.197 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039988.197 units remaining) [ "Hello World" { "!" } ] - - location: 22 (remaining gas: 1039988.187 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.187 units remaining) [ { "Hello World" ; "!" } ] - - location: 23 (remaining gas: 1039988.061 units remaining) + - location: 23 (just consumed gas: 0.126, remaining gas: 1039988.061 units remaining) [ "Hello World!" ] - - location: 13 (remaining gas: 1039988.046 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.046 units remaining) [ "Hello World!" ] - - location: 24 (remaining gas: 1039988.036 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.036 units remaining) [ {} "Hello World!" ] - - location: 26 (remaining gas: 1039988.026 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.026 units remaining) [ (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 108e7fd4bae4..9ad4657c3c50 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, remaining gas: 1039989.136 units remaining) [ (Pair { "a" ; "b" ; "c" } "") ] - - location: 8 (remaining gas: 1039989.126 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.126 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 9 (remaining gas: 1039989.116 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.116 units remaining) [ "" { "a" ; "b" ; "c" } ] - - location: 12 (remaining gas: 1039989.106 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.106 units remaining) [ { "a" ; "b" ; "c" } "" ] - - location: 13 (remaining gas: 1039989.106 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.106 units remaining) [ "a" "" ] - - location: 15 (remaining gas: 1039989.096 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.096 units remaining) [ "" "a" ] - - location: 16 (remaining gas: 1039989.096 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039989.096 units remaining) [ "a" ] - - location: 18 (remaining gas: 1039989.086 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.086 units remaining) [ {} "a" ] - - location: 20 (remaining gas: 1039989.076 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.076 units remaining) [ "a" {} ] - - location: 21 (remaining gas: 1039989.066 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.066 units remaining) [ { "a" } ] - - location: 16 (remaining gas: 1039989.041 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039989.041 units remaining) [ "" { "a" } ] - - location: 22 (remaining gas: 1039989.031 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039989.031 units remaining) [ { "" ; "a" } ] - - location: 23 (remaining gas: 1039988.911 units remaining) + - location: 23 (just consumed gas: 0.120, remaining gas: 1039988.911 units remaining) [ "a" ] - - location: 13 (remaining gas: 1039988.896 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.896 units remaining) [ "b" "a" ] - - location: 15 (remaining gas: 1039988.886 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.886 units remaining) [ "a" "b" ] - - location: 16 (remaining gas: 1039988.886 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039988.886 units remaining) [ "b" ] - - location: 18 (remaining gas: 1039988.876 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.876 units remaining) [ {} "b" ] - - location: 20 (remaining gas: 1039988.866 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.866 units remaining) [ "b" {} ] - - location: 21 (remaining gas: 1039988.856 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.856 units remaining) [ { "b" } ] - - location: 16 (remaining gas: 1039988.831 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039988.831 units remaining) [ "a" { "b" } ] - - location: 22 (remaining gas: 1039988.821 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.821 units remaining) [ { "a" ; "b" } ] - - location: 23 (remaining gas: 1039988.700 units remaining) + - location: 23 (just consumed gas: 0.121, remaining gas: 1039988.700 units remaining) [ "ab" ] - - location: 13 (remaining gas: 1039988.685 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.685 units remaining) [ "c" "ab" ] - - location: 15 (remaining gas: 1039988.675 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.675 units remaining) [ "ab" "c" ] - - location: 16 (remaining gas: 1039988.675 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039988.675 units remaining) [ "c" ] - - location: 18 (remaining gas: 1039988.665 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.665 units remaining) [ {} "c" ] - - location: 20 (remaining gas: 1039988.655 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.655 units remaining) [ "c" {} ] - - location: 21 (remaining gas: 1039988.645 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.645 units remaining) [ { "c" } ] - - location: 16 (remaining gas: 1039988.620 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039988.620 units remaining) [ "ab" { "c" } ] - - location: 22 (remaining gas: 1039988.610 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.610 units remaining) [ { "ab" ; "c" } ] - - location: 23 (remaining gas: 1039988.489 units remaining) + - location: 23 (just consumed gas: 0.121, remaining gas: 1039988.489 units remaining) [ "abc" ] - - location: 13 (remaining gas: 1039988.474 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.474 units remaining) [ "abc" ] - - location: 24 (remaining gas: 1039988.464 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.464 units remaining) [ {} "abc" ] - - location: 26 (remaining gas: 1039988.454 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.454 units remaining) [ (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 9c2de2185376..e19ad967c791 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, remaining gas: 1039989.508 units remaining) [ (Pair {} "") ] - - location: 8 (remaining gas: 1039989.498 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.498 units remaining) [ {} ] - - location: 9 (remaining gas: 1039989.488 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.488 units remaining) [ "" {} ] - - location: 12 (remaining gas: 1039989.478 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.478 units remaining) [ {} "" ] - - location: 13 (remaining gas: 1039989.478 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.478 units remaining) [ "" ] - - location: 24 (remaining gas: 1039989.468 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039989.468 units remaining) [ {} "" ] - - location: 26 (remaining gas: 1039989.458 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039989.458 units remaining) [ (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 b7c80f081e41..dc62e3235b23 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, remaining gas: 1039995.240 units remaining) [ (Pair 99 { -5 ; 10 }) ] - - location: 8 (remaining gas: 1039995.230 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.230 units remaining) [ 99 { -5 ; 10 } ] - - location: 9 (remaining gas: 1039995.220 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.220 units remaining) [ { 99 ; -5 ; 10 } ] - - location: 10 (remaining gas: 1039995.210 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.210 units remaining) [ {} { 99 ; -5 ; 10 } ] - - location: 12 (remaining gas: 1039995.200 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.200 units remaining) [ (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 c0aa97b1be13..b836ffb16be4 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, remaining gas: 1039995.340 units remaining) [ (Pair -5 { 10 }) ] - - location: 8 (remaining gas: 1039995.330 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.330 units remaining) [ -5 { 10 } ] - - location: 9 (remaining gas: 1039995.320 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.320 units remaining) [ { -5 ; 10 } ] - - location: 10 (remaining gas: 1039995.310 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.310 units remaining) [ {} { -5 ; 10 } ] - - location: 12 (remaining gas: 1039995.300 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.300 units remaining) [ (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 290d8e0e38f8..8ac70d445bf7 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, remaining gas: 1039995.440 units remaining) [ (Pair 10 {}) ] - - location: 8 (remaining gas: 1039995.430 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.430 units remaining) [ 10 {} ] - - location: 9 (remaining gas: 1039995.420 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.420 units remaining) [ { 10 } ] - - location: 10 (remaining gas: 1039995.410 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.410 units remaining) [ {} { 10 } ] - - location: 12 (remaining gas: 1039995.400 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.400 units remaining) [ (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 343b43d74655..4dc426a34eab 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, remaining gas: 1039967.749 units remaining) [ (Pair (Pair { "A" } { "B" }) None) ] - - location: 12 (remaining gas: 1039967.739 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039967.739 units remaining) [ (Pair { "A" } { "B" }) ] - - location: 13 (remaining gas: 1039967.729 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039967.729 units remaining) [ (Pair { "A" } { "B" }) (Pair { "A" } { "B" }) ] - - location: 14 (remaining gas: 1039967.719 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039967.719 units remaining) [ { "A" } (Pair { "A" } { "B" }) ] - - location: 15 (remaining gas: 1039967.719 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039967.719 units remaining) [ (Pair { "A" } { "B" }) ] - - location: 17 (remaining gas: 1039967.709 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039967.709 units remaining) [ { "B" } ] - - location: 15 (remaining gas: 1039967.684 units remaining) + - location: 15 (just consumed gas: 0.025, remaining gas: 1039967.684 units remaining) [ { "A" } { "B" } ] - - location: 18 (remaining gas: 1039967.384 units remaining) + - location: 18 (just consumed gas: 0.300, remaining gas: 1039967.384 units remaining) [ {} { "A" } { "B" } ] - - location: 20 (remaining gas: 1039967.374 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039967.374 units remaining) [ { "A" } {} { "B" } ] - - location: 21 (remaining gas: 1039967.374 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039967.374 units remaining) [ "A" {} { "B" } ] - - location: 23 (remaining gas: 1039967.364 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039967.364 units remaining) [ (Pair "A" {}) { "B" } ] - - location: 24 (remaining gas: 1039967.354 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039967.354 units remaining) [ (Pair "A" {}) (Pair "A" {}) { "B" } ] - - location: 25 (remaining gas: 1039967.344 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039967.344 units remaining) [ "A" (Pair "A" {}) { "B" } ] - - location: 26 (remaining gas: 1039967.344 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039967.344 units remaining) [ (Pair "A" {}) { "B" } ] - - location: 28 (remaining gas: 1039967.334 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039967.334 units remaining) [ {} { "B" } ] - - location: 26 (remaining gas: 1039967.309 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039967.309 units remaining) [ "A" {} { "B" } ] - - location: 29 (remaining gas: 1039967.299 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039967.299 units remaining) [ True "A" {} { "B" } ] - - location: 32 (remaining gas: 1039967.289 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039967.289 units remaining) [ "A" True {} { "B" } ] - - location: 33 (remaining gas: 1039967.157 units remaining) + - location: 33 (just consumed gas: 0.132, remaining gas: 1039967.157 units remaining) [ { "A" } { "B" } ] - - location: 21 (remaining gas: 1039967.142 units remaining) + - location: 21 (just consumed gas: 0.015, remaining gas: 1039967.142 units remaining) [ { "A" } { "B" } ] - - location: 34 (remaining gas: 1039967.132 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039967.132 units remaining) [ True { "A" } { "B" } ] - - location: 37 (remaining gas: 1039967.122 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039967.122 units remaining) [ { "A" } True { "B" } ] - - location: 38 (remaining gas: 1039967.112 units remaining) + - location: 38 (just consumed gas: 0.010, remaining gas: 1039967.112 units remaining) [ (Pair { "A" } True) { "B" } ] - - location: 39 (remaining gas: 1039967.102 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039967.102 units remaining) [ { "B" } (Pair { "A" } True) ] - - location: 40 (remaining gas: 1039967.102 units remaining) + - location: 40 (just consumed gas: 0, remaining gas: 1039967.102 units remaining) [ "B" (Pair { "A" } True) ] - - location: 42 (remaining gas: 1039967.092 units remaining) + - location: 42 (just consumed gas: 0.010, remaining gas: 1039967.092 units remaining) [ (Pair "B" { "A" } True) ] - - location: 43 (remaining gas: 1039967.082 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039967.082 units remaining) [ (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 44 (remaining gas: 1039967.072 units remaining) + - location: 44 (just consumed gas: 0.010, remaining gas: 1039967.072 units remaining) [ (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, remaining gas: 1039967.062 units remaining) [ "B" (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 46 (remaining gas: 1039967.062 units remaining) + - location: 46 (just consumed gas: 0, remaining gas: 1039967.062 units remaining) [ (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 49 (remaining gas: 1039967.052 units remaining) + - location: 49 (just consumed gas: 0.010, remaining gas: 1039967.052 units remaining) [ (Pair { "A" } True) (Pair "B" { "A" } True) ] - - location: 50 (remaining gas: 1039967.042 units remaining) + - location: 50 (just consumed gas: 0.010, remaining gas: 1039967.042 units remaining) [ { "A" } (Pair "B" { "A" } True) ] - - location: 51 (remaining gas: 1039967.042 units remaining) + - location: 51 (just consumed gas: 0, remaining gas: 1039967.042 units remaining) [ (Pair "B" { "A" } True) ] - - location: 54 (remaining gas: 1039967.032 units remaining) + - location: 54 (just consumed gas: 0.010, remaining gas: 1039967.032 units remaining) [ (Pair { "A" } True) ] - - location: 55 (remaining gas: 1039967.022 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039967.022 units remaining) [ True ] - - location: 51 (remaining gas: 1039966.997 units remaining) + - location: 51 (just consumed gas: 0.025, remaining gas: 1039966.997 units remaining) [ { "A" } True ] - - location: 56 (remaining gas: 1039966.987 units remaining) + - location: 56 (just consumed gas: 0.010, remaining gas: 1039966.987 units remaining) [ { "A" } { "A" } True ] - - location: 46 (remaining gas: 1039966.962 units remaining) + - location: 46 (just consumed gas: 0.025, remaining gas: 1039966.962 units remaining) [ "B" { "A" } { "A" } True ] - - location: 57 (remaining gas: 1039966.845 units remaining) + - location: 57 (just consumed gas: 0.117, remaining gas: 1039966.845 units remaining) [ False { "A" } True ] - - location: 58 (remaining gas: 1039966.845 units remaining) + - location: 58 (just consumed gas: 0, remaining gas: 1039966.845 units remaining) [ { "A" } True ] - - location: 60 (remaining gas: 1039966.835 units remaining) + - location: 60 (just consumed gas: 0.010, remaining gas: 1039966.835 units remaining) [ True { "A" } ] - - location: 58 (remaining gas: 1039966.810 units remaining) + - location: 58 (just consumed gas: 0.025, remaining gas: 1039966.810 units remaining) [ False True { "A" } ] - - location: 61 (remaining gas: 1039966.800 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039966.800 units remaining) [ False { "A" } ] - - location: 62 (remaining gas: 1039966.790 units remaining) + - location: 62 (just consumed gas: 0.010, remaining gas: 1039966.790 units remaining) [ { "A" } False ] - - location: 63 (remaining gas: 1039966.780 units remaining) + - location: 63 (just consumed gas: 0.010, remaining gas: 1039966.780 units remaining) [ (Pair { "A" } False) ] - - location: 40 (remaining gas: 1039966.765 units remaining) + - location: 40 (just consumed gas: 0.015, remaining gas: 1039966.765 units remaining) [ (Pair { "A" } False) ] - - location: 64 (remaining gas: 1039966.755 units remaining) + - location: 64 (just consumed gas: 0.010, remaining gas: 1039966.755 units remaining) [ False ] - - location: 65 (remaining gas: 1039966.745 units remaining) + - location: 65 (just consumed gas: 0.010, remaining gas: 1039966.745 units remaining) [ (Some False) ] - - location: 66 (remaining gas: 1039966.735 units remaining) + - location: 66 (just consumed gas: 0.010, remaining gas: 1039966.735 units remaining) [ {} (Some False) ] - - location: 68 (remaining gas: 1039966.725 units remaining) + - location: 68 (just consumed gas: 0.010, remaining gas: 1039966.725 units remaining) [ (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 f1f03909051b..d782cb8917a2 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, remaining gas: 1039967.069 units remaining) [ (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, remaining gas: 1039967.059 units remaining) [ (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 13 (remaining gas: 1039967.049 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039967.049 units remaining) [ (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, remaining gas: 1039967.039 units remaining) [ { "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, remaining gas: 1039967.039 units remaining) [ (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 17 (remaining gas: 1039967.029 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039967.029 units remaining) [ { "B" ; "C" ; "asdf" } ] - - location: 15 (remaining gas: 1039967.004 units remaining) + - location: 15 (just consumed gas: 0.025, remaining gas: 1039967.004 units remaining) [ { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" } ] - - location: 18 (remaining gas: 1039966.704 units remaining) + - location: 18 (just consumed gas: 0.300, remaining gas: 1039966.704 units remaining) [ {} { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" } ] - - location: 20 (remaining gas: 1039966.694 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039966.694 units remaining) [ { "B" ; "B" ; "asdf" ; "C" } {} { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039966.694 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039966.694 units remaining) [ "B" {} { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039966.684 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039966.684 units remaining) [ (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039966.674 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039966.674 units remaining) [ (Pair "B" {}) (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039966.664 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039966.664 units remaining) [ "B" (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.664 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039966.664 units remaining) [ (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039966.654 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039966.654 units remaining) [ {} { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.629 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039966.629 units remaining) [ "B" {} { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039966.619 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039966.619 units remaining) [ True "B" {} { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039966.609 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039966.609 units remaining) [ "B" True {} { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039966.477 units remaining) + - location: 33 (just consumed gas: 0.132, remaining gas: 1039966.477 units remaining) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039966.462 units remaining) + - location: 21 (just consumed gas: 0.015, remaining gas: 1039966.462 units remaining) [ "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039966.452 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039966.452 units remaining) [ (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039966.442 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039966.442 units remaining) [ (Pair "B" { "B" }) (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039966.432 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039966.432 units remaining) [ "B" (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.432 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039966.432 units remaining) [ (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039966.422 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039966.422 units remaining) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.397 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039966.397 units remaining) [ "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039966.387 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039966.387 units remaining) [ True "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039966.377 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039966.377 units remaining) [ "B" True { "B" } { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039966.243 units remaining) + - location: 33 (just consumed gas: 0.134, remaining gas: 1039966.243 units remaining) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039966.228 units remaining) + - location: 21 (just consumed gas: 0.015, remaining gas: 1039966.228 units remaining) [ "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039966.218 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039966.218 units remaining) [ (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039966.208 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039966.208 units remaining) [ (Pair "asdf" { "B" }) (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039966.198 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039966.198 units remaining) [ "asdf" (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.198 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039966.198 units remaining) [ (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039966.188 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039966.188 units remaining) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.163 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039966.163 units remaining) [ "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039966.153 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039966.153 units remaining) [ True "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039966.143 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039966.143 units remaining) [ "asdf" True { "B" } { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039965.997 units remaining) + - location: 33 (just consumed gas: 0.146, remaining gas: 1039965.997 units remaining) [ { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039965.982 units remaining) + - location: 21 (just consumed gas: 0.015, remaining gas: 1039965.982 units remaining) [ "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039965.972 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039965.972 units remaining) [ (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039965.962 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039965.962 units remaining) [ (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, remaining gas: 1039965.952 units remaining) [ "C" (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039965.952 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039965.952 units remaining) [ (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039965.942 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039965.942 units remaining) [ { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039965.917 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039965.917 units remaining) [ "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039965.907 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039965.907 units remaining) [ True "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039965.897 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039965.897 units remaining) [ "C" True { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039965.761 units remaining) + - location: 33 (just consumed gas: 0.136, remaining gas: 1039965.761 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039965.746 units remaining) + - location: 21 (just consumed gas: 0.015, remaining gas: 1039965.746 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 34 (remaining gas: 1039965.736 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039965.736 units remaining) [ True { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 37 (remaining gas: 1039965.726 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039965.726 units remaining) [ { "B" ; "C" ; "asdf" } True { "B" ; "C" ; "asdf" } ] - - location: 38 (remaining gas: 1039965.716 units remaining) + - location: 38 (just consumed gas: 0.010, remaining gas: 1039965.716 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) { "B" ; "C" ; "asdf" } ] - - location: 39 (remaining gas: 1039965.706 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039965.706 units remaining) [ { "B" ; "C" ; "asdf" } (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.706 units remaining) + - location: 40 (just consumed gas: 0, remaining gas: 1039965.706 units remaining) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.696 units remaining) + - location: 42 (just consumed gas: 0.010, remaining gas: 1039965.696 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.686 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039965.686 units remaining) [ (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, remaining gas: 1039965.676 units remaining) [ (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, remaining gas: 1039965.666 units remaining) [ "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, remaining gas: 1039965.666 units remaining) [ (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, remaining gas: 1039965.656 units remaining) [ (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, remaining gas: 1039965.646 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.646 units remaining) + - location: 51 (just consumed gas: 0, remaining gas: 1039965.646 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.636 units remaining) + - location: 54 (just consumed gas: 0.010, remaining gas: 1039965.636 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.626 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039965.626 units remaining) [ True ] - - location: 51 (remaining gas: 1039965.601 units remaining) + - location: 51 (just consumed gas: 0.025, remaining gas: 1039965.601 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.591 units remaining) + - location: 56 (just consumed gas: 0.010, remaining gas: 1039965.591 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.566 units remaining) + - location: 46 (just consumed gas: 0.025, remaining gas: 1039965.566 units remaining) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039965.448 units remaining) + - location: 57 (just consumed gas: 0.118, remaining gas: 1039965.448 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039965.448 units remaining) + - location: 58 (just consumed gas: 0, remaining gas: 1039965.448 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039965.438 units remaining) + - location: 60 (just consumed gas: 0.010, remaining gas: 1039965.438 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039965.413 units remaining) + - location: 58 (just consumed gas: 0.025, remaining gas: 1039965.413 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039965.403 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039965.403 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039965.393 units remaining) + - location: 62 (just consumed gas: 0.010, remaining gas: 1039965.393 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039965.383 units remaining) + - location: 63 (just consumed gas: 0.010, remaining gas: 1039965.383 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.368 units remaining) + - location: 40 (just consumed gas: 0.015, remaining gas: 1039965.368 units remaining) [ "C" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.358 units remaining) + - location: 42 (just consumed gas: 0.010, remaining gas: 1039965.358 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.348 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039965.348 units remaining) [ (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, remaining gas: 1039965.338 units remaining) [ (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, remaining gas: 1039965.328 units remaining) [ "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, remaining gas: 1039965.328 units remaining) [ (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, remaining gas: 1039965.318 units remaining) [ (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, remaining gas: 1039965.308 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.308 units remaining) + - location: 51 (just consumed gas: 0, remaining gas: 1039965.308 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.298 units remaining) + - location: 54 (just consumed gas: 0.010, remaining gas: 1039965.298 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.288 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039965.288 units remaining) [ True ] - - location: 51 (remaining gas: 1039965.263 units remaining) + - location: 51 (just consumed gas: 0.025, remaining gas: 1039965.263 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.253 units remaining) + - location: 56 (just consumed gas: 0.010, remaining gas: 1039965.253 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.228 units remaining) + - location: 46 (just consumed gas: 0.025, remaining gas: 1039965.228 units remaining) [ "C" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039965.110 units remaining) + - location: 57 (just consumed gas: 0.118, remaining gas: 1039965.110 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039965.110 units remaining) + - location: 58 (just consumed gas: 0, remaining gas: 1039965.110 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039965.100 units remaining) + - location: 60 (just consumed gas: 0.010, remaining gas: 1039965.100 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039965.075 units remaining) + - location: 58 (just consumed gas: 0.025, remaining gas: 1039965.075 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039965.065 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039965.065 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039965.055 units remaining) + - location: 62 (just consumed gas: 0.010, remaining gas: 1039965.055 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039965.045 units remaining) + - location: 63 (just consumed gas: 0.010, remaining gas: 1039965.045 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.030 units remaining) + - location: 40 (just consumed gas: 0.015, remaining gas: 1039965.030 units remaining) [ "asdf" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.020 units remaining) + - location: 42 (just consumed gas: 0.010, remaining gas: 1039965.020 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.010 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039965.010 units remaining) [ (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, remaining gas: 1039965 units remaining) [ (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, remaining gas: 1039964.990 units remaining) [ "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, remaining gas: 1039964.990 units remaining) [ (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, remaining gas: 1039964.980 units remaining) [ (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, remaining gas: 1039964.970 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039964.970 units remaining) + - location: 51 (just consumed gas: 0, remaining gas: 1039964.970 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039964.960 units remaining) + - location: 54 (just consumed gas: 0.010, remaining gas: 1039964.960 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039964.950 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039964.950 units remaining) [ True ] - - location: 51 (remaining gas: 1039964.925 units remaining) + - location: 51 (just consumed gas: 0.025, remaining gas: 1039964.925 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039964.915 units remaining) + - location: 56 (just consumed gas: 0.010, remaining gas: 1039964.915 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039964.890 units remaining) + - location: 46 (just consumed gas: 0.025, remaining gas: 1039964.890 units remaining) [ "asdf" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039964.763 units remaining) + - location: 57 (just consumed gas: 0.127, remaining gas: 1039964.763 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039964.763 units remaining) + - location: 58 (just consumed gas: 0, remaining gas: 1039964.763 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039964.753 units remaining) + - location: 60 (just consumed gas: 0.010, remaining gas: 1039964.753 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039964.728 units remaining) + - location: 58 (just consumed gas: 0.025, remaining gas: 1039964.728 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039964.718 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039964.718 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039964.708 units remaining) + - location: 62 (just consumed gas: 0.010, remaining gas: 1039964.708 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039964.698 units remaining) + - location: 63 (just consumed gas: 0.010, remaining gas: 1039964.698 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039964.683 units remaining) + - location: 40 (just consumed gas: 0.015, remaining gas: 1039964.683 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 64 (remaining gas: 1039964.673 units remaining) + - location: 64 (just consumed gas: 0.010, remaining gas: 1039964.673 units remaining) [ True ] - - location: 65 (remaining gas: 1039964.663 units remaining) + - location: 65 (just consumed gas: 0.010, remaining gas: 1039964.663 units remaining) [ (Some True) ] - - location: 66 (remaining gas: 1039964.653 units remaining) + - location: 66 (just consumed gas: 0.010, remaining gas: 1039964.653 units remaining) [ {} (Some True) ] - - location: 68 (remaining gas: 1039964.643 units remaining) + - location: 68 (just consumed gas: 0.010, remaining gas: 1039964.643 units remaining) [ (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 8bc324f3d6c3..a88970a9063d 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, remaining gas: 1039967.069 units remaining) [ (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, remaining gas: 1039967.059 units remaining) [ (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 13 (remaining gas: 1039967.049 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039967.049 units remaining) [ (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, remaining gas: 1039967.039 units remaining) [ { "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, remaining gas: 1039967.039 units remaining) [ (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 17 (remaining gas: 1039967.029 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039967.029 units remaining) [ { "B" ; "B" ; "asdf" ; "C" } ] - - location: 15 (remaining gas: 1039967.004 units remaining) + - location: 15 (just consumed gas: 0.025, remaining gas: 1039967.004 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 18 (remaining gas: 1039966.704 units remaining) + - location: 18 (just consumed gas: 0.300, remaining gas: 1039966.704 units remaining) [ {} { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 20 (remaining gas: 1039966.694 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039966.694 units remaining) [ { "B" ; "C" ; "asdf" } {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039966.694 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039966.694 units remaining) [ "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (remaining gas: 1039966.684 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039966.684 units remaining) [ (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (remaining gas: 1039966.674 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039966.674 units remaining) [ (Pair "B" {}) (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (remaining gas: 1039966.664 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039966.664 units remaining) [ "B" (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.664 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039966.664 units remaining) [ (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (remaining gas: 1039966.654 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039966.654 units remaining) [ {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.629 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039966.629 units remaining) [ "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (remaining gas: 1039966.619 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039966.619 units remaining) [ True "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (remaining gas: 1039966.609 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039966.609 units remaining) [ "B" True {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (remaining gas: 1039966.477 units remaining) + - location: 33 (just consumed gas: 0.132, remaining gas: 1039966.477 units remaining) [ { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039966.462 units remaining) + - location: 21 (just consumed gas: 0.015, remaining gas: 1039966.462 units remaining) [ "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (remaining gas: 1039966.452 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039966.452 units remaining) [ (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (remaining gas: 1039966.442 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039966.442 units remaining) [ (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, remaining gas: 1039966.432 units remaining) [ "C" (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.432 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039966.432 units remaining) [ (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (remaining gas: 1039966.422 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039966.422 units remaining) [ { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.397 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039966.397 units remaining) [ "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (remaining gas: 1039966.387 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039966.387 units remaining) [ True "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (remaining gas: 1039966.377 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039966.377 units remaining) [ "C" True { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (remaining gas: 1039966.243 units remaining) + - location: 33 (just consumed gas: 0.134, remaining gas: 1039966.243 units remaining) [ { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039966.228 units remaining) + - location: 21 (just consumed gas: 0.015, remaining gas: 1039966.228 units remaining) [ "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (remaining gas: 1039966.218 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039966.218 units remaining) [ (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (remaining gas: 1039966.208 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039966.208 units remaining) [ (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, remaining gas: 1039966.198 units remaining) [ "asdf" (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.198 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039966.198 units remaining) [ (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (remaining gas: 1039966.188 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039966.188 units remaining) [ { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.163 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039966.163 units remaining) [ "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (remaining gas: 1039966.153 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039966.153 units remaining) [ True "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (remaining gas: 1039966.143 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039966.143 units remaining) [ "asdf" True { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (remaining gas: 1039965.989 units remaining) + - location: 33 (just consumed gas: 0.154, remaining gas: 1039965.989 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039965.974 units remaining) + - location: 21 (just consumed gas: 0.015, remaining gas: 1039965.974 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 34 (remaining gas: 1039965.964 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039965.964 units remaining) [ True { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 37 (remaining gas: 1039965.954 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039965.954 units remaining) [ { "B" ; "C" ; "asdf" } True { "B" ; "B" ; "asdf" ; "C" } ] - - location: 38 (remaining gas: 1039965.944 units remaining) + - location: 38 (just consumed gas: 0.010, remaining gas: 1039965.944 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 39 (remaining gas: 1039965.934 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039965.934 units remaining) [ { "B" ; "B" ; "asdf" ; "C" } (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.934 units remaining) + - location: 40 (just consumed gas: 0, remaining gas: 1039965.934 units remaining) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.924 units remaining) + - location: 42 (just consumed gas: 0.010, remaining gas: 1039965.924 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.914 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039965.914 units remaining) [ (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, remaining gas: 1039965.904 units remaining) [ (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, remaining gas: 1039965.894 units remaining) [ "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, remaining gas: 1039965.894 units remaining) [ (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, remaining gas: 1039965.884 units remaining) [ (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, remaining gas: 1039965.874 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.874 units remaining) + - location: 51 (just consumed gas: 0, remaining gas: 1039965.874 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.864 units remaining) + - location: 54 (just consumed gas: 0.010, remaining gas: 1039965.864 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.854 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039965.854 units remaining) [ True ] - - location: 51 (remaining gas: 1039965.829 units remaining) + - location: 51 (just consumed gas: 0.025, remaining gas: 1039965.829 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.819 units remaining) + - location: 56 (just consumed gas: 0.010, remaining gas: 1039965.819 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.794 units remaining) + - location: 46 (just consumed gas: 0.025, remaining gas: 1039965.794 units remaining) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039965.676 units remaining) + - location: 57 (just consumed gas: 0.118, remaining gas: 1039965.676 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039965.676 units remaining) + - location: 58 (just consumed gas: 0, remaining gas: 1039965.676 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039965.666 units remaining) + - location: 60 (just consumed gas: 0.010, remaining gas: 1039965.666 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039965.641 units remaining) + - location: 58 (just consumed gas: 0.025, remaining gas: 1039965.641 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039965.631 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039965.631 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039965.621 units remaining) + - location: 62 (just consumed gas: 0.010, remaining gas: 1039965.621 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039965.611 units remaining) + - location: 63 (just consumed gas: 0.010, remaining gas: 1039965.611 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.596 units remaining) + - location: 40 (just consumed gas: 0.015, remaining gas: 1039965.596 units remaining) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.586 units remaining) + - location: 42 (just consumed gas: 0.010, remaining gas: 1039965.586 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.576 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039965.576 units remaining) [ (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, remaining gas: 1039965.566 units remaining) [ (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, remaining gas: 1039965.556 units remaining) [ "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, remaining gas: 1039965.556 units remaining) [ (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, remaining gas: 1039965.546 units remaining) [ (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, remaining gas: 1039965.536 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.536 units remaining) + - location: 51 (just consumed gas: 0, remaining gas: 1039965.536 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.526 units remaining) + - location: 54 (just consumed gas: 0.010, remaining gas: 1039965.526 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.516 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039965.516 units remaining) [ True ] - - location: 51 (remaining gas: 1039965.491 units remaining) + - location: 51 (just consumed gas: 0.025, remaining gas: 1039965.491 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.481 units remaining) + - location: 56 (just consumed gas: 0.010, remaining gas: 1039965.481 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.456 units remaining) + - location: 46 (just consumed gas: 0.025, remaining gas: 1039965.456 units remaining) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039965.338 units remaining) + - location: 57 (just consumed gas: 0.118, remaining gas: 1039965.338 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039965.338 units remaining) + - location: 58 (just consumed gas: 0, remaining gas: 1039965.338 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039965.328 units remaining) + - location: 60 (just consumed gas: 0.010, remaining gas: 1039965.328 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039965.303 units remaining) + - location: 58 (just consumed gas: 0.025, remaining gas: 1039965.303 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039965.293 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039965.293 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039965.283 units remaining) + - location: 62 (just consumed gas: 0.010, remaining gas: 1039965.283 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039965.273 units remaining) + - location: 63 (just consumed gas: 0.010, remaining gas: 1039965.273 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.258 units remaining) + - location: 40 (just consumed gas: 0.015, remaining gas: 1039965.258 units remaining) [ "asdf" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.248 units remaining) + - location: 42 (just consumed gas: 0.010, remaining gas: 1039965.248 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.238 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039965.238 units remaining) [ (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, remaining gas: 1039965.228 units remaining) [ (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, remaining gas: 1039965.218 units remaining) [ "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, remaining gas: 1039965.218 units remaining) [ (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, remaining gas: 1039965.208 units remaining) [ (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, remaining gas: 1039965.198 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.198 units remaining) + - location: 51 (just consumed gas: 0, remaining gas: 1039965.198 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.188 units remaining) + - location: 54 (just consumed gas: 0.010, remaining gas: 1039965.188 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.178 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039965.178 units remaining) [ True ] - - location: 51 (remaining gas: 1039965.153 units remaining) + - location: 51 (just consumed gas: 0.025, remaining gas: 1039965.153 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.143 units remaining) + - location: 56 (just consumed gas: 0.010, remaining gas: 1039965.143 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.118 units remaining) + - location: 46 (just consumed gas: 0.025, remaining gas: 1039965.118 units remaining) [ "asdf" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039964.991 units remaining) + - location: 57 (just consumed gas: 0.127, remaining gas: 1039964.991 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039964.991 units remaining) + - location: 58 (just consumed gas: 0, remaining gas: 1039964.991 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039964.981 units remaining) + - location: 60 (just consumed gas: 0.010, remaining gas: 1039964.981 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039964.956 units remaining) + - location: 58 (just consumed gas: 0.025, remaining gas: 1039964.956 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039964.946 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039964.946 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039964.936 units remaining) + - location: 62 (just consumed gas: 0.010, remaining gas: 1039964.936 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039964.926 units remaining) + - location: 63 (just consumed gas: 0.010, remaining gas: 1039964.926 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039964.911 units remaining) + - location: 40 (just consumed gas: 0.015, remaining gas: 1039964.911 units remaining) [ "C" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039964.901 units remaining) + - location: 42 (just consumed gas: 0.010, remaining gas: 1039964.901 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039964.891 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039964.891 units remaining) [ (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, remaining gas: 1039964.881 units remaining) [ (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, remaining gas: 1039964.871 units remaining) [ "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, remaining gas: 1039964.871 units remaining) [ (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, remaining gas: 1039964.861 units remaining) [ (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, remaining gas: 1039964.851 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039964.851 units remaining) + - location: 51 (just consumed gas: 0, remaining gas: 1039964.851 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039964.841 units remaining) + - location: 54 (just consumed gas: 0.010, remaining gas: 1039964.841 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039964.831 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039964.831 units remaining) [ True ] - - location: 51 (remaining gas: 1039964.806 units remaining) + - location: 51 (just consumed gas: 0.025, remaining gas: 1039964.806 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039964.796 units remaining) + - location: 56 (just consumed gas: 0.010, remaining gas: 1039964.796 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039964.771 units remaining) + - location: 46 (just consumed gas: 0.025, remaining gas: 1039964.771 units remaining) [ "C" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039964.653 units remaining) + - location: 57 (just consumed gas: 0.118, remaining gas: 1039964.653 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039964.653 units remaining) + - location: 58 (just consumed gas: 0, remaining gas: 1039964.653 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039964.643 units remaining) + - location: 60 (just consumed gas: 0.010, remaining gas: 1039964.643 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039964.618 units remaining) + - location: 58 (just consumed gas: 0.025, remaining gas: 1039964.618 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039964.608 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039964.608 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039964.598 units remaining) + - location: 62 (just consumed gas: 0.010, remaining gas: 1039964.598 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039964.588 units remaining) + - location: 63 (just consumed gas: 0.010, remaining gas: 1039964.588 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039964.573 units remaining) + - location: 40 (just consumed gas: 0.015, remaining gas: 1039964.573 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 64 (remaining gas: 1039964.563 units remaining) + - location: 64 (just consumed gas: 0.010, remaining gas: 1039964.563 units remaining) [ True ] - - location: 65 (remaining gas: 1039964.553 units remaining) + - location: 65 (just consumed gas: 0.010, remaining gas: 1039964.553 units remaining) [ (Some True) ] - - location: 66 (remaining gas: 1039964.543 units remaining) + - location: 66 (just consumed gas: 0.010, remaining gas: 1039964.543 units remaining) [ {} (Some True) ] - - location: 68 (remaining gas: 1039964.533 units remaining) + - location: 68 (just consumed gas: 0.010, remaining gas: 1039964.533 units remaining) [ (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 334d32d3fb3a..3979ab7037af 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, remaining gas: 1039967.749 units remaining) [ (Pair (Pair { "B" } { "B" }) None) ] - - location: 12 (remaining gas: 1039967.739 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039967.739 units remaining) [ (Pair { "B" } { "B" }) ] - - location: 13 (remaining gas: 1039967.729 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039967.729 units remaining) [ (Pair { "B" } { "B" }) (Pair { "B" } { "B" }) ] - - location: 14 (remaining gas: 1039967.719 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039967.719 units remaining) [ { "B" } (Pair { "B" } { "B" }) ] - - location: 15 (remaining gas: 1039967.719 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039967.719 units remaining) [ (Pair { "B" } { "B" }) ] - - location: 17 (remaining gas: 1039967.709 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039967.709 units remaining) [ { "B" } ] - - location: 15 (remaining gas: 1039967.684 units remaining) + - location: 15 (just consumed gas: 0.025, remaining gas: 1039967.684 units remaining) [ { "B" } { "B" } ] - - location: 18 (remaining gas: 1039967.384 units remaining) + - location: 18 (just consumed gas: 0.300, remaining gas: 1039967.384 units remaining) [ {} { "B" } { "B" } ] - - location: 20 (remaining gas: 1039967.374 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039967.374 units remaining) [ { "B" } {} { "B" } ] - - location: 21 (remaining gas: 1039967.374 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039967.374 units remaining) [ "B" {} { "B" } ] - - location: 23 (remaining gas: 1039967.364 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039967.364 units remaining) [ (Pair "B" {}) { "B" } ] - - location: 24 (remaining gas: 1039967.354 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039967.354 units remaining) [ (Pair "B" {}) (Pair "B" {}) { "B" } ] - - location: 25 (remaining gas: 1039967.344 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039967.344 units remaining) [ "B" (Pair "B" {}) { "B" } ] - - location: 26 (remaining gas: 1039967.344 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039967.344 units remaining) [ (Pair "B" {}) { "B" } ] - - location: 28 (remaining gas: 1039967.334 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039967.334 units remaining) [ {} { "B" } ] - - location: 26 (remaining gas: 1039967.309 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039967.309 units remaining) [ "B" {} { "B" } ] - - location: 29 (remaining gas: 1039967.299 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039967.299 units remaining) [ True "B" {} { "B" } ] - - location: 32 (remaining gas: 1039967.289 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039967.289 units remaining) [ "B" True {} { "B" } ] - - location: 33 (remaining gas: 1039967.157 units remaining) + - location: 33 (just consumed gas: 0.132, remaining gas: 1039967.157 units remaining) [ { "B" } { "B" } ] - - location: 21 (remaining gas: 1039967.142 units remaining) + - location: 21 (just consumed gas: 0.015, remaining gas: 1039967.142 units remaining) [ { "B" } { "B" } ] - - location: 34 (remaining gas: 1039967.132 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039967.132 units remaining) [ True { "B" } { "B" } ] - - location: 37 (remaining gas: 1039967.122 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039967.122 units remaining) [ { "B" } True { "B" } ] - - location: 38 (remaining gas: 1039967.112 units remaining) + - location: 38 (just consumed gas: 0.010, remaining gas: 1039967.112 units remaining) [ (Pair { "B" } True) { "B" } ] - - location: 39 (remaining gas: 1039967.102 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039967.102 units remaining) [ { "B" } (Pair { "B" } True) ] - - location: 40 (remaining gas: 1039967.102 units remaining) + - location: 40 (just consumed gas: 0, remaining gas: 1039967.102 units remaining) [ "B" (Pair { "B" } True) ] - - location: 42 (remaining gas: 1039967.092 units remaining) + - location: 42 (just consumed gas: 0.010, remaining gas: 1039967.092 units remaining) [ (Pair "B" { "B" } True) ] - - location: 43 (remaining gas: 1039967.082 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039967.082 units remaining) [ (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 44 (remaining gas: 1039967.072 units remaining) + - location: 44 (just consumed gas: 0.010, remaining gas: 1039967.072 units remaining) [ (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, remaining gas: 1039967.062 units remaining) [ "B" (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 46 (remaining gas: 1039967.062 units remaining) + - location: 46 (just consumed gas: 0, remaining gas: 1039967.062 units remaining) [ (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 49 (remaining gas: 1039967.052 units remaining) + - location: 49 (just consumed gas: 0.010, remaining gas: 1039967.052 units remaining) [ (Pair { "B" } True) (Pair "B" { "B" } True) ] - - location: 50 (remaining gas: 1039967.042 units remaining) + - location: 50 (just consumed gas: 0.010, remaining gas: 1039967.042 units remaining) [ { "B" } (Pair "B" { "B" } True) ] - - location: 51 (remaining gas: 1039967.042 units remaining) + - location: 51 (just consumed gas: 0, remaining gas: 1039967.042 units remaining) [ (Pair "B" { "B" } True) ] - - location: 54 (remaining gas: 1039967.032 units remaining) + - location: 54 (just consumed gas: 0.010, remaining gas: 1039967.032 units remaining) [ (Pair { "B" } True) ] - - location: 55 (remaining gas: 1039967.022 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039967.022 units remaining) [ True ] - - location: 51 (remaining gas: 1039966.997 units remaining) + - location: 51 (just consumed gas: 0.025, remaining gas: 1039966.997 units remaining) [ { "B" } True ] - - location: 56 (remaining gas: 1039966.987 units remaining) + - location: 56 (just consumed gas: 0.010, remaining gas: 1039966.987 units remaining) [ { "B" } { "B" } True ] - - location: 46 (remaining gas: 1039966.962 units remaining) + - location: 46 (just consumed gas: 0.025, remaining gas: 1039966.962 units remaining) [ "B" { "B" } { "B" } True ] - - location: 57 (remaining gas: 1039966.845 units remaining) + - location: 57 (just consumed gas: 0.117, remaining gas: 1039966.845 units remaining) [ True { "B" } True ] - - location: 58 (remaining gas: 1039966.845 units remaining) + - location: 58 (just consumed gas: 0, remaining gas: 1039966.845 units remaining) [ { "B" } True ] - - location: 60 (remaining gas: 1039966.835 units remaining) + - location: 60 (just consumed gas: 0.010, remaining gas: 1039966.835 units remaining) [ True { "B" } ] - - location: 58 (remaining gas: 1039966.810 units remaining) + - location: 58 (just consumed gas: 0.025, remaining gas: 1039966.810 units remaining) [ True True { "B" } ] - - location: 61 (remaining gas: 1039966.800 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039966.800 units remaining) [ True { "B" } ] - - location: 62 (remaining gas: 1039966.790 units remaining) + - location: 62 (just consumed gas: 0.010, remaining gas: 1039966.790 units remaining) [ { "B" } True ] - - location: 63 (remaining gas: 1039966.780 units remaining) + - location: 63 (just consumed gas: 0.010, remaining gas: 1039966.780 units remaining) [ (Pair { "B" } True) ] - - location: 40 (remaining gas: 1039966.765 units remaining) + - location: 40 (just consumed gas: 0.015, remaining gas: 1039966.765 units remaining) [ (Pair { "B" } True) ] - - location: 64 (remaining gas: 1039966.755 units remaining) + - location: 64 (just consumed gas: 0.010, remaining gas: 1039966.755 units remaining) [ True ] - - location: 65 (remaining gas: 1039966.745 units remaining) + - location: 65 (just consumed gas: 0.010, remaining gas: 1039966.745 units remaining) [ (Some True) ] - - location: 66 (remaining gas: 1039966.735 units remaining) + - location: 66 (just consumed gas: 0.010, remaining gas: 1039966.735 units remaining) [ {} (Some True) ] - - location: 68 (remaining gas: 1039966.725 units remaining) + - location: 68 (just consumed gas: 0.010, remaining gas: 1039966.725 units remaining) [ (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 61ff58887c4b..506b19ac2e55 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, remaining gas: 1039967.749 units remaining) [ (Pair (Pair { "c" } { "B" }) None) ] - - location: 12 (remaining gas: 1039967.739 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039967.739 units remaining) [ (Pair { "c" } { "B" }) ] - - location: 13 (remaining gas: 1039967.729 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039967.729 units remaining) [ (Pair { "c" } { "B" }) (Pair { "c" } { "B" }) ] - - location: 14 (remaining gas: 1039967.719 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039967.719 units remaining) [ { "c" } (Pair { "c" } { "B" }) ] - - location: 15 (remaining gas: 1039967.719 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039967.719 units remaining) [ (Pair { "c" } { "B" }) ] - - location: 17 (remaining gas: 1039967.709 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039967.709 units remaining) [ { "B" } ] - - location: 15 (remaining gas: 1039967.684 units remaining) + - location: 15 (just consumed gas: 0.025, remaining gas: 1039967.684 units remaining) [ { "c" } { "B" } ] - - location: 18 (remaining gas: 1039967.384 units remaining) + - location: 18 (just consumed gas: 0.300, remaining gas: 1039967.384 units remaining) [ {} { "c" } { "B" } ] - - location: 20 (remaining gas: 1039967.374 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039967.374 units remaining) [ { "c" } {} { "B" } ] - - location: 21 (remaining gas: 1039967.374 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039967.374 units remaining) [ "c" {} { "B" } ] - - location: 23 (remaining gas: 1039967.364 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039967.364 units remaining) [ (Pair "c" {}) { "B" } ] - - location: 24 (remaining gas: 1039967.354 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039967.354 units remaining) [ (Pair "c" {}) (Pair "c" {}) { "B" } ] - - location: 25 (remaining gas: 1039967.344 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039967.344 units remaining) [ "c" (Pair "c" {}) { "B" } ] - - location: 26 (remaining gas: 1039967.344 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039967.344 units remaining) [ (Pair "c" {}) { "B" } ] - - location: 28 (remaining gas: 1039967.334 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039967.334 units remaining) [ {} { "B" } ] - - location: 26 (remaining gas: 1039967.309 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039967.309 units remaining) [ "c" {} { "B" } ] - - location: 29 (remaining gas: 1039967.299 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039967.299 units remaining) [ True "c" {} { "B" } ] - - location: 32 (remaining gas: 1039967.289 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039967.289 units remaining) [ "c" True {} { "B" } ] - - location: 33 (remaining gas: 1039967.157 units remaining) + - location: 33 (just consumed gas: 0.132, remaining gas: 1039967.157 units remaining) [ { "c" } { "B" } ] - - location: 21 (remaining gas: 1039967.142 units remaining) + - location: 21 (just consumed gas: 0.015, remaining gas: 1039967.142 units remaining) [ { "c" } { "B" } ] - - location: 34 (remaining gas: 1039967.132 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039967.132 units remaining) [ True { "c" } { "B" } ] - - location: 37 (remaining gas: 1039967.122 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039967.122 units remaining) [ { "c" } True { "B" } ] - - location: 38 (remaining gas: 1039967.112 units remaining) + - location: 38 (just consumed gas: 0.010, remaining gas: 1039967.112 units remaining) [ (Pair { "c" } True) { "B" } ] - - location: 39 (remaining gas: 1039967.102 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039967.102 units remaining) [ { "B" } (Pair { "c" } True) ] - - location: 40 (remaining gas: 1039967.102 units remaining) + - location: 40 (just consumed gas: 0, remaining gas: 1039967.102 units remaining) [ "B" (Pair { "c" } True) ] - - location: 42 (remaining gas: 1039967.092 units remaining) + - location: 42 (just consumed gas: 0.010, remaining gas: 1039967.092 units remaining) [ (Pair "B" { "c" } True) ] - - location: 43 (remaining gas: 1039967.082 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039967.082 units remaining) [ (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 44 (remaining gas: 1039967.072 units remaining) + - location: 44 (just consumed gas: 0.010, remaining gas: 1039967.072 units remaining) [ (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, remaining gas: 1039967.062 units remaining) [ "B" (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 46 (remaining gas: 1039967.062 units remaining) + - location: 46 (just consumed gas: 0, remaining gas: 1039967.062 units remaining) [ (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 49 (remaining gas: 1039967.052 units remaining) + - location: 49 (just consumed gas: 0.010, remaining gas: 1039967.052 units remaining) [ (Pair { "c" } True) (Pair "B" { "c" } True) ] - - location: 50 (remaining gas: 1039967.042 units remaining) + - location: 50 (just consumed gas: 0.010, remaining gas: 1039967.042 units remaining) [ { "c" } (Pair "B" { "c" } True) ] - - location: 51 (remaining gas: 1039967.042 units remaining) + - location: 51 (just consumed gas: 0, remaining gas: 1039967.042 units remaining) [ (Pair "B" { "c" } True) ] - - location: 54 (remaining gas: 1039967.032 units remaining) + - location: 54 (just consumed gas: 0.010, remaining gas: 1039967.032 units remaining) [ (Pair { "c" } True) ] - - location: 55 (remaining gas: 1039967.022 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039967.022 units remaining) [ True ] - - location: 51 (remaining gas: 1039966.997 units remaining) + - location: 51 (just consumed gas: 0.025, remaining gas: 1039966.997 units remaining) [ { "c" } True ] - - location: 56 (remaining gas: 1039966.987 units remaining) + - location: 56 (just consumed gas: 0.010, remaining gas: 1039966.987 units remaining) [ { "c" } { "c" } True ] - - location: 46 (remaining gas: 1039966.962 units remaining) + - location: 46 (just consumed gas: 0.025, remaining gas: 1039966.962 units remaining) [ "B" { "c" } { "c" } True ] - - location: 57 (remaining gas: 1039966.845 units remaining) + - location: 57 (just consumed gas: 0.117, remaining gas: 1039966.845 units remaining) [ False { "c" } True ] - - location: 58 (remaining gas: 1039966.845 units remaining) + - location: 58 (just consumed gas: 0, remaining gas: 1039966.845 units remaining) [ { "c" } True ] - - location: 60 (remaining gas: 1039966.835 units remaining) + - location: 60 (just consumed gas: 0.010, remaining gas: 1039966.835 units remaining) [ True { "c" } ] - - location: 58 (remaining gas: 1039966.810 units remaining) + - location: 58 (just consumed gas: 0.025, remaining gas: 1039966.810 units remaining) [ False True { "c" } ] - - location: 61 (remaining gas: 1039966.800 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039966.800 units remaining) [ False { "c" } ] - - location: 62 (remaining gas: 1039966.790 units remaining) + - location: 62 (just consumed gas: 0.010, remaining gas: 1039966.790 units remaining) [ { "c" } False ] - - location: 63 (remaining gas: 1039966.780 units remaining) + - location: 63 (just consumed gas: 0.010, remaining gas: 1039966.780 units remaining) [ (Pair { "c" } False) ] - - location: 40 (remaining gas: 1039966.765 units remaining) + - location: 40 (just consumed gas: 0.015, remaining gas: 1039966.765 units remaining) [ (Pair { "c" } False) ] - - location: 64 (remaining gas: 1039966.755 units remaining) + - location: 64 (just consumed gas: 0.010, remaining gas: 1039966.755 units remaining) [ False ] - - location: 65 (remaining gas: 1039966.745 units remaining) + - location: 65 (just consumed gas: 0.010, remaining gas: 1039966.745 units remaining) [ (Some False) ] - - location: 66 (remaining gas: 1039966.735 units remaining) + - location: 66 (just consumed gas: 0.010, remaining gas: 1039966.735 units remaining) [ {} (Some False) ] - - location: 68 (remaining gas: 1039966.725 units remaining) + - location: 68 (just consumed gas: 0.010, remaining gas: 1039966.725 units remaining) [ (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 000a17613623..e2214091d740 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, remaining gas: 1039967.997 units remaining) [ (Pair (Pair {} {}) None) ] - - location: 12 (remaining gas: 1039967.987 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039967.987 units remaining) [ (Pair {} {}) ] - - location: 13 (remaining gas: 1039967.977 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039967.977 units remaining) [ (Pair {} {}) (Pair {} {}) ] - - location: 14 (remaining gas: 1039967.967 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039967.967 units remaining) [ {} (Pair {} {}) ] - - location: 15 (remaining gas: 1039967.967 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039967.967 units remaining) [ (Pair {} {}) ] - - location: 17 (remaining gas: 1039967.957 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039967.957 units remaining) [ {} ] - - location: 15 (remaining gas: 1039967.932 units remaining) + - location: 15 (just consumed gas: 0.025, remaining gas: 1039967.932 units remaining) [ {} {} ] - - location: 18 (remaining gas: 1039967.632 units remaining) + - location: 18 (just consumed gas: 0.300, remaining gas: 1039967.632 units remaining) [ {} {} {} ] - - location: 20 (remaining gas: 1039967.622 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039967.622 units remaining) [ {} {} {} ] - - location: 21 (remaining gas: 1039967.622 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039967.622 units remaining) [ {} {} ] - - location: 34 (remaining gas: 1039967.612 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039967.612 units remaining) [ True {} {} ] - - location: 37 (remaining gas: 1039967.602 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039967.602 units remaining) [ {} True {} ] - - location: 38 (remaining gas: 1039967.592 units remaining) + - location: 38 (just consumed gas: 0.010, remaining gas: 1039967.592 units remaining) [ (Pair {} True) {} ] - - location: 39 (remaining gas: 1039967.582 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039967.582 units remaining) [ {} (Pair {} True) ] - - location: 40 (remaining gas: 1039967.582 units remaining) + - location: 40 (just consumed gas: 0, remaining gas: 1039967.582 units remaining) [ (Pair {} True) ] - - location: 64 (remaining gas: 1039967.572 units remaining) + - location: 64 (just consumed gas: 0.010, remaining gas: 1039967.572 units remaining) [ True ] - - location: 65 (remaining gas: 1039967.562 units remaining) + - location: 65 (just consumed gas: 0.010, remaining gas: 1039967.562 units remaining) [ (Some True) ] - - location: 66 (remaining gas: 1039967.552 units remaining) + - location: 66 (just consumed gas: 0.010, remaining gas: 1039967.552 units remaining) [ {} (Some True) ] - - location: 68 (remaining gas: 1039967.542 units remaining) + - location: 68 (just consumed gas: 0.010, remaining gas: 1039967.542 units remaining) [ (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 2d4d4c36186a..767a1bda165b 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, remaining gas: 1039988.190 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" Unit) ] - - location: 7 (remaining gas: 1039988.180 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039988.180 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 8 (remaining gas: 1039987.870 units remaining) + - location: 8 (just consumed gas: 0.310, remaining gas: 1039987.870 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 11 (remaining gas: 1039987.870 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039987.870 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 11 (remaining gas: 1039987.855 units remaining) + - location: 11 (just consumed gas: 0.015, remaining gas: 1039987.855 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 17 (remaining gas: 1039987.845 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039987.845 units remaining) [ ] - - location: 18 (remaining gas: 1039987.835 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.835 units remaining) [ Unit ] - - location: 19 (remaining gas: 1039987.825 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.825 units remaining) [ {} Unit ] - - location: 21 (remaining gas: 1039987.815 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.815 units remaining) [ (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 3810ea098ff4..8b71df250f85 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, remaining gas: 1039987.939 units remaining) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039987.929 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039987.929 units remaining) [ ] - - location: 9 (remaining gas: 1039987.919 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039987.919 units remaining) [ Unit ] - - location: 10 (remaining gas: 1039987.909 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039987.909 units remaining) [ 50000 Unit ] - - location: 11 (remaining gas: 1039987.899 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039987.899 units remaining) [ None 50000 Unit ] - - location: 13 (remaining gas: 1039987.183 units remaining) + - location: 13 (just consumed gas: 0.716, remaining gas: 1039987.183 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm" ] - - location: 25 (remaining gas: 1039987.183 units remaining) + - location: 25 (just consumed gas: 0, remaining gas: 1039987.183 units remaining) [ "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm" ] - - location: 27 (remaining gas: 1039987.173 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039987.173 units remaining) [ (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 28 (remaining gas: 1039987.163 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039987.163 units remaining) [ {} (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 25 (remaining gas: 1039987.138 units remaining) + - location: 25 (just consumed gas: 0.025, remaining gas: 1039987.138 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b {} (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 30 (remaining gas: 1039987.128 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039987.128 units remaining) [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b } (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 31 (remaining gas: 1039987.118 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039987.118 units remaining) [ (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 3a28a70eefa5..44cec87b45ce 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, remaining gas: 1039992.347 units remaining) [ (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, remaining gas: 1039992.337 units remaining) [ (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, remaining gas: 1039992.327 units remaining) [ (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, remaining gas: 1039992.317 units remaining) [ "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, remaining gas: 1039992.317 units remaining) [ (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, remaining gas: 1039992.307 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 12 (remaining gas: 1039992.282 units remaining) + - location: 12 (just consumed gas: 0.025, remaining gas: 1039992.282 units remaining) [ "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, remaining gas: 1039992.247 units remaining) [ 200 ] - - location: 16 (remaining gas: 1039992.237 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.237 units remaining) [ {} 200 ] - - location: 18 (remaining gas: 1039992.227 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.227 units remaining) [ (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 a48bdf1092f9..0c6cfb2db7b4 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, remaining gas: 1039992.563 units remaining) [ (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, remaining gas: 1039992.553 units remaining) [ (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, remaining gas: 1039992.543 units remaining) [ (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, remaining gas: 1039992.533 units remaining) [ "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, remaining gas: 1039992.533 units remaining) [ (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, remaining gas: 1039992.523 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 12 (remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025, remaining gas: 1039992.498 units remaining) [ "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, remaining gas: 1039992.463 units remaining) [ 0 ] - - location: 16 (remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.453 units remaining) [ {} 0 ] - - location: 18 (remaining gas: 1039992.443 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.443 units remaining) [ (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 0cc05a870a89..1715b27058e7 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, remaining gas: 1039992.563 units remaining) [ (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, remaining gas: 1039992.553 units remaining) [ (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, remaining gas: 1039992.543 units remaining) [ (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, remaining gas: 1039992.533 units remaining) [ "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, remaining gas: 1039992.533 units remaining) [ (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, remaining gas: 1039992.523 units remaining) [ "1970-01-01T00:00:01Z" ] - - location: 12 (remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025, remaining gas: 1039992.498 units remaining) [ "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, remaining gas: 1039992.463 units remaining) [ -1 ] - - location: 16 (remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.453 units remaining) [ {} -1 ] - - location: 18 (remaining gas: 1039992.443 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.443 units remaining) [ (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 1018550acff6..4fcee1c4b4f9 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, remaining gas: 1039992.563 units remaining) [ (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, remaining gas: 1039992.553 units remaining) [ (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, remaining gas: 1039992.543 units remaining) [ (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, remaining gas: 1039992.533 units remaining) [ "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, remaining gas: 1039992.533 units remaining) [ (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, remaining gas: 1039992.523 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 12 (remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025, remaining gas: 1039992.498 units remaining) [ "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, remaining gas: 1039992.463 units remaining) [ 1 ] - - location: 16 (remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.453 units remaining) [ {} 1 ] - - location: 18 (remaining gas: 1039992.443 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.443 units remaining) [ (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 876c43466e92..249cc1c8de38 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, remaining gas: 1039840.257 units remaining) [ (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, remaining gas: 1039840.247 units remaining) [ (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, remaining gas: 1039840.237 units remaining) [ (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, remaining gas: 1039840.227 units remaining) [ 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, remaining gas: 1039840.227 units remaining) [ (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, remaining gas: 1039840.217 units remaining) [ 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, remaining gas: 1039840.192 units remaining) [ 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, remaining gas: 1039840.192 units remaining) [ (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, remaining gas: 1039840.182 units remaining) [ 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, remaining gas: 1039840.157 units remaining) [ 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, remaining gas: 1039840.147 units remaining) [ 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, remaining gas: 1039840.147 units remaining) [ 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, remaining gas: 1039840.147 units remaining) [ (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, remaining gas: 1039840.137 units remaining) [ 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, remaining gas: 1039840.112 units remaining) [ 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, remaining gas: 1039840.102 units remaining) [ 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, remaining gas: 1039840.092 units remaining) [ 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, remaining gas: 1039840.092 units remaining) [ 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, remaining gas: 1039840.092 units remaining) [ (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, remaining gas: 1039840.082 units remaining) [ 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, remaining gas: 1039840.057 units remaining) [ 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, remaining gas: 1039840.047 units remaining) [ 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, remaining gas: 1039840.037 units remaining) [ 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, remaining gas: 1039840.027 units remaining) [ 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, remaining gas: 1039840.027 units remaining) [ 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, remaining gas: 1039840.027 units remaining) [ (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, remaining gas: 1039840.017 units remaining) [ 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, remaining gas: 1039839.992 units remaining) [ 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, remaining gas: 1039839.982 units remaining) [ 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, remaining gas: 1039839.972 units remaining) [ 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, remaining gas: 1039839.962 units remaining) [ 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, remaining gas: 1039839.952 units remaining) [ 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, remaining gas: 1039839.952 units remaining) [ 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, remaining gas: 1039839.952 units remaining) [ (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, remaining gas: 1039839.942 units remaining) [ 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, remaining gas: 1039839.917 units remaining) [ 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, remaining gas: 1039839.907 units remaining) [ 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, remaining gas: 1039839.897 units remaining) [ 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, remaining gas: 1039839.887 units remaining) [ 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, remaining gas: 1039839.877 units remaining) [ 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, remaining gas: 1039839.867 units remaining) [ 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, remaining gas: 1039839.867 units remaining) [ 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, remaining gas: 1039839.867 units remaining) [ (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, remaining gas: 1039839.857 units remaining) [ 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, remaining gas: 1039839.832 units remaining) [ 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, remaining gas: 1039839.822 units remaining) [ 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, remaining gas: 1039839.812 units remaining) [ 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, remaining gas: 1039839.802 units remaining) [ 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, remaining gas: 1039839.792 units remaining) [ 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, remaining gas: 1039839.782 units remaining) [ 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, remaining gas: 1039839.772 units remaining) [ 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, remaining gas: 1039839.772 units remaining) [ 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, remaining gas: 1039839.772 units remaining) [ (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, remaining gas: 1039839.762 units remaining) [ 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, remaining gas: 1039839.737 units remaining) [ 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, remaining gas: 1039839.727 units remaining) [ 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, remaining gas: 1039839.717 units remaining) [ 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, remaining gas: 1039839.707 units remaining) [ 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, remaining gas: 1039839.697 units remaining) [ 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, remaining gas: 1039839.687 units remaining) [ 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, remaining gas: 1039839.677 units remaining) [ 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, remaining gas: 1039839.667 units remaining) [ 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, remaining gas: 1039839.667 units remaining) [ 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, remaining gas: 1039839.667 units remaining) [ (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, remaining gas: 1039839.657 units remaining) [ 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, remaining gas: 1039839.632 units remaining) [ 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, remaining gas: 1039839.622 units remaining) [ 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, remaining gas: 1039839.612 units remaining) [ 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, remaining gas: 1039839.602 units remaining) [ 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, remaining gas: 1039839.592 units remaining) [ 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, remaining gas: 1039839.582 units remaining) [ 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, remaining gas: 1039839.572 units remaining) [ 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, remaining gas: 1039839.562 units remaining) [ 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, remaining gas: 1039839.552 units remaining) [ 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, remaining gas: 1039839.552 units remaining) [ 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, remaining gas: 1039839.552 units remaining) [ (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, remaining gas: 1039839.542 units remaining) [ 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, remaining gas: 1039839.517 units remaining) [ 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, remaining gas: 1039839.507 units remaining) [ 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, remaining gas: 1039839.497 units remaining) [ 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, remaining gas: 1039839.487 units remaining) [ 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, remaining gas: 1039839.477 units remaining) [ 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, remaining gas: 1039839.467 units remaining) [ 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, remaining gas: 1039839.457 units remaining) [ 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, remaining gas: 1039839.447 units remaining) [ 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, remaining gas: 1039839.437 units remaining) [ 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, remaining gas: 1039839.427 units remaining) [ 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, remaining gas: 1039839.427 units remaining) [ 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, remaining gas: 1039839.427 units remaining) [ (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, remaining gas: 1039839.417 units remaining) [ 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, remaining gas: 1039839.392 units remaining) [ 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, remaining gas: 1039839.382 units remaining) [ 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, remaining gas: 1039839.372 units remaining) [ 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, remaining gas: 1039839.362 units remaining) [ 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, remaining gas: 1039839.352 units remaining) [ 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, remaining gas: 1039839.342 units remaining) [ 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, remaining gas: 1039839.332 units remaining) [ 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, remaining gas: 1039839.322 units remaining) [ 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, remaining gas: 1039839.312 units remaining) [ 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, remaining gas: 1039839.302 units remaining) [ 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, remaining gas: 1039839.292 units remaining) [ 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, remaining gas: 1039839.292 units remaining) [ 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, remaining gas: 1039839.292 units remaining) [ (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, remaining gas: 1039839.282 units remaining) [ 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, remaining gas: 1039839.257 units remaining) [ 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, remaining gas: 1039839.247 units remaining) [ 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, remaining gas: 1039839.237 units remaining) [ 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, remaining gas: 1039839.227 units remaining) [ 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, remaining gas: 1039839.217 units remaining) [ 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, remaining gas: 1039839.207 units remaining) [ 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, remaining gas: 1039839.197 units remaining) [ 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, remaining gas: 1039839.187 units remaining) [ 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, remaining gas: 1039839.177 units remaining) [ 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, remaining gas: 1039839.167 units remaining) [ 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, remaining gas: 1039839.157 units remaining) [ 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, remaining gas: 1039839.147 units remaining) [ 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, remaining gas: 1039839.147 units remaining) [ 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, remaining gas: 1039839.147 units remaining) [ (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, remaining gas: 1039839.137 units remaining) [ 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, remaining gas: 1039839.112 units remaining) [ 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, remaining gas: 1039839.102 units remaining) [ 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, remaining gas: 1039839.092 units remaining) [ 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, remaining gas: 1039839.082 units remaining) [ 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, remaining gas: 1039839.072 units remaining) [ 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, remaining gas: 1039839.062 units remaining) [ 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, remaining gas: 1039839.052 units remaining) [ 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, remaining gas: 1039839.042 units remaining) [ 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, remaining gas: 1039839.032 units remaining) [ 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, remaining gas: 1039839.022 units remaining) [ 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, remaining gas: 1039839.012 units remaining) [ 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, remaining gas: 1039839.002 units remaining) [ 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, remaining gas: 1039838.992 units remaining) [ 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, remaining gas: 1039838.992 units remaining) [ 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, remaining gas: 1039838.992 units remaining) [ (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, remaining gas: 1039838.982 units remaining) [ 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, remaining gas: 1039838.957 units remaining) [ 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, remaining gas: 1039838.947 units remaining) [ 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, remaining gas: 1039838.937 units remaining) [ 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, remaining gas: 1039838.927 units remaining) [ 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, remaining gas: 1039838.917 units remaining) [ 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, remaining gas: 1039838.907 units remaining) [ 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, remaining gas: 1039838.897 units remaining) [ 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, remaining gas: 1039838.887 units remaining) [ 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, remaining gas: 1039838.877 units remaining) [ 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, remaining gas: 1039838.867 units remaining) [ 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, remaining gas: 1039838.857 units remaining) [ 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, remaining gas: 1039838.847 units remaining) [ 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, remaining gas: 1039838.837 units remaining) [ 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, remaining gas: 1039838.827 units remaining) [ 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, remaining gas: 1039838.827 units remaining) [ 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, remaining gas: 1039838.827 units remaining) [ (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, remaining gas: 1039838.817 units remaining) [ 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, remaining gas: 1039838.792 units remaining) [ 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, remaining gas: 1039838.782 units remaining) [ 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, remaining gas: 1039838.772 units remaining) [ 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, remaining gas: 1039838.762 units remaining) [ 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, remaining gas: 1039838.752 units remaining) [ 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, remaining gas: 1039838.742 units remaining) [ 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, remaining gas: 1039838.732 units remaining) [ 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, remaining gas: 1039838.722 units remaining) [ 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, remaining gas: 1039838.712 units remaining) [ 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, remaining gas: 1039838.702 units remaining) [ 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, remaining gas: 1039838.692 units remaining) [ 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, remaining gas: 1039838.682 units remaining) [ 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, remaining gas: 1039838.672 units remaining) [ 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, remaining gas: 1039838.662 units remaining) [ 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, remaining gas: 1039838.652 units remaining) [ 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, remaining gas: 1039838.652 units remaining) [ 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, remaining gas: 1039838.622 units remaining) [ 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, remaining gas: 1039838.586 units remaining) [ 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, remaining gas: 1039838.543 units remaining) [ 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, remaining gas: 1039838.494 units remaining) [ 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, remaining gas: 1039838.437 units remaining) [ 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, remaining gas: 1039838.374 units remaining) [ 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, remaining gas: 1039838.304 units remaining) [ 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, remaining gas: 1039838.228 units remaining) [ 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, remaining gas: 1039838.144 units remaining) [ 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, remaining gas: 1039838.054 units remaining) [ 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, remaining gas: 1039837.957 units remaining) [ 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, remaining gas: 1039837.854 units remaining) [ 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, remaining gas: 1039837.743 units remaining) [ 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, remaining gas: 1039837.626 units remaining) [ 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, remaining gas: 1039837.502 units remaining) [ 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, remaining gas: 1039837.372 units remaining) [ 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, remaining gas: 1039837.234 units remaining) [ 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, remaining gas: 1039837.204 units remaining) [ 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, remaining gas: 1039837.168 units remaining) [ 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, remaining gas: 1039837.125 units remaining) [ 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, remaining gas: 1039837.076 units remaining) [ 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, remaining gas: 1039837.019 units remaining) [ 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, remaining gas: 1039836.956 units remaining) [ 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, remaining gas: 1039836.886 units remaining) [ 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, remaining gas: 1039836.810 units remaining) [ 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, remaining gas: 1039836.726 units remaining) [ 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, remaining gas: 1039836.636 units remaining) [ 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, remaining gas: 1039836.539 units remaining) [ 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, remaining gas: 1039836.436 units remaining) [ 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, remaining gas: 1039836.325 units remaining) [ 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, remaining gas: 1039836.208 units remaining) [ 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, remaining gas: 1039836.084 units remaining) [ 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, remaining gas: 1039835.954 units remaining) [ 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, remaining gas: 1039835.816 units remaining) [ 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, remaining gas: 1039835.816 units remaining) [ 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, remaining gas: 1039835.806 units remaining) [ (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, remaining gas: 1039835.781 units remaining) [ 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, remaining gas: 1039835.771 units remaining) [ 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, remaining gas: 1039835.761 units remaining) [ 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, remaining gas: 1039835.751 units remaining) [ 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, remaining gas: 1039835.741 units remaining) [ 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, remaining gas: 1039835.731 units remaining) [ 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, remaining gas: 1039835.721 units remaining) [ 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, remaining gas: 1039835.711 units remaining) [ 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, remaining gas: 1039835.701 units remaining) [ 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, remaining gas: 1039835.691 units remaining) [ 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, remaining gas: 1039835.681 units remaining) [ 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, remaining gas: 1039835.671 units remaining) [ 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, remaining gas: 1039835.661 units remaining) [ 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, remaining gas: 1039835.651 units remaining) [ 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, remaining gas: 1039835.641 units remaining) [ 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, remaining gas: 1039835.641 units remaining) [ 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, remaining gas: 1039835.641 units remaining) [ 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, remaining gas: 1039835.631 units remaining) [ (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, remaining gas: 1039835.606 units remaining) [ 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, remaining gas: 1039835.596 units remaining) [ 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, remaining gas: 1039835.586 units remaining) [ 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, remaining gas: 1039835.576 units remaining) [ 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, remaining gas: 1039835.566 units remaining) [ 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, remaining gas: 1039835.556 units remaining) [ 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, remaining gas: 1039835.546 units remaining) [ 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, remaining gas: 1039835.536 units remaining) [ 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, remaining gas: 1039835.526 units remaining) [ 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, remaining gas: 1039835.516 units remaining) [ 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, remaining gas: 1039835.506 units remaining) [ 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, remaining gas: 1039835.496 units remaining) [ 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, remaining gas: 1039835.486 units remaining) [ 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, remaining gas: 1039835.476 units remaining) [ 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, remaining gas: 1039835.476 units remaining) [ 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, remaining gas: 1039835.476 units remaining) [ 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, remaining gas: 1039835.466 units remaining) [ (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, remaining gas: 1039835.441 units remaining) [ 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, remaining gas: 1039835.431 units remaining) [ 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, remaining gas: 1039835.421 units remaining) [ 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, remaining gas: 1039835.411 units remaining) [ 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, remaining gas: 1039835.401 units remaining) [ 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, remaining gas: 1039835.391 units remaining) [ 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, remaining gas: 1039835.381 units remaining) [ 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, remaining gas: 1039835.371 units remaining) [ 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, remaining gas: 1039835.361 units remaining) [ 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, remaining gas: 1039835.351 units remaining) [ 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, remaining gas: 1039835.341 units remaining) [ 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, remaining gas: 1039835.331 units remaining) [ 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, remaining gas: 1039835.321 units remaining) [ 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, remaining gas: 1039835.321 units remaining) [ 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, remaining gas: 1039835.321 units remaining) [ 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, remaining gas: 1039835.311 units remaining) [ (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, remaining gas: 1039835.286 units remaining) [ 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, remaining gas: 1039835.276 units remaining) [ 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, remaining gas: 1039835.266 units remaining) [ 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, remaining gas: 1039835.256 units remaining) [ 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, remaining gas: 1039835.246 units remaining) [ 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, remaining gas: 1039835.236 units remaining) [ 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, remaining gas: 1039835.226 units remaining) [ 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, remaining gas: 1039835.216 units remaining) [ 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, remaining gas: 1039835.206 units remaining) [ 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, remaining gas: 1039835.196 units remaining) [ 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, remaining gas: 1039835.186 units remaining) [ 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, remaining gas: 1039835.176 units remaining) [ 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, remaining gas: 1039835.176 units remaining) [ 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, remaining gas: 1039835.176 units remaining) [ 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, remaining gas: 1039835.166 units remaining) [ (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, remaining gas: 1039835.141 units remaining) [ 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, remaining gas: 1039835.131 units remaining) [ 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, remaining gas: 1039835.121 units remaining) [ 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, remaining gas: 1039835.111 units remaining) [ 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, remaining gas: 1039835.101 units remaining) [ 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, remaining gas: 1039835.091 units remaining) [ 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, remaining gas: 1039835.081 units remaining) [ 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, remaining gas: 1039835.071 units remaining) [ 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, remaining gas: 1039835.061 units remaining) [ 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, remaining gas: 1039835.051 units remaining) [ 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, remaining gas: 1039835.041 units remaining) [ 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, remaining gas: 1039835.041 units remaining) [ 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, remaining gas: 1039835.041 units remaining) [ 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, remaining gas: 1039835.031 units remaining) [ (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, remaining gas: 1039835.006 units remaining) [ 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, remaining gas: 1039834.996 units remaining) [ 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, remaining gas: 1039834.986 units remaining) [ 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, remaining gas: 1039834.976 units remaining) [ 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, remaining gas: 1039834.966 units remaining) [ 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, remaining gas: 1039834.956 units remaining) [ 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, remaining gas: 1039834.946 units remaining) [ 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, remaining gas: 1039834.936 units remaining) [ 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, remaining gas: 1039834.926 units remaining) [ 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, remaining gas: 1039834.916 units remaining) [ 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, remaining gas: 1039834.916 units remaining) [ 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, remaining gas: 1039834.916 units remaining) [ 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, remaining gas: 1039834.906 units remaining) [ (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, remaining gas: 1039834.881 units remaining) [ 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, remaining gas: 1039834.871 units remaining) [ 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, remaining gas: 1039834.861 units remaining) [ 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, remaining gas: 1039834.851 units remaining) [ 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, remaining gas: 1039834.841 units remaining) [ 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, remaining gas: 1039834.831 units remaining) [ 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, remaining gas: 1039834.821 units remaining) [ 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, remaining gas: 1039834.811 units remaining) [ 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, remaining gas: 1039834.801 units remaining) [ 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, remaining gas: 1039834.801 units remaining) [ 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, remaining gas: 1039834.801 units remaining) [ 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, remaining gas: 1039834.791 units remaining) [ (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, remaining gas: 1039834.766 units remaining) [ 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, remaining gas: 1039834.756 units remaining) [ 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, remaining gas: 1039834.746 units remaining) [ 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, remaining gas: 1039834.736 units remaining) [ 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, remaining gas: 1039834.726 units remaining) [ 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, remaining gas: 1039834.716 units remaining) [ 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, remaining gas: 1039834.706 units remaining) [ 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, remaining gas: 1039834.696 units remaining) [ 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, remaining gas: 1039834.696 units remaining) [ 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, remaining gas: 1039834.696 units remaining) [ 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, remaining gas: 1039834.686 units remaining) [ (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, remaining gas: 1039834.661 units remaining) [ 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, remaining gas: 1039834.651 units remaining) [ 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, remaining gas: 1039834.641 units remaining) [ 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, remaining gas: 1039834.631 units remaining) [ 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, remaining gas: 1039834.621 units remaining) [ 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, remaining gas: 1039834.611 units remaining) [ 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, remaining gas: 1039834.601 units remaining) [ 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, remaining gas: 1039834.601 units remaining) [ 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, remaining gas: 1039834.601 units remaining) [ 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, remaining gas: 1039834.591 units remaining) [ (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, remaining gas: 1039834.566 units remaining) [ 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, remaining gas: 1039834.556 units remaining) [ 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, remaining gas: 1039834.546 units remaining) [ 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, remaining gas: 1039834.536 units remaining) [ 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, remaining gas: 1039834.526 units remaining) [ 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, remaining gas: 1039834.516 units remaining) [ 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, remaining gas: 1039834.516 units remaining) [ 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, remaining gas: 1039834.516 units remaining) [ 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, remaining gas: 1039834.506 units remaining) [ (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, remaining gas: 1039834.481 units remaining) [ 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, remaining gas: 1039834.471 units remaining) [ 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, remaining gas: 1039834.461 units remaining) [ 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, remaining gas: 1039834.451 units remaining) [ 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, remaining gas: 1039834.441 units remaining) [ 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, remaining gas: 1039834.441 units remaining) [ 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, remaining gas: 1039834.441 units remaining) [ 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, remaining gas: 1039834.431 units remaining) [ (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, remaining gas: 1039834.406 units remaining) [ 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, remaining gas: 1039834.396 units remaining) [ 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, remaining gas: 1039834.386 units remaining) [ 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, remaining gas: 1039834.376 units remaining) [ 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, remaining gas: 1039834.376 units remaining) [ 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, remaining gas: 1039834.376 units remaining) [ 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, remaining gas: 1039834.366 units remaining) [ (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, remaining gas: 1039834.341 units remaining) [ 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, remaining gas: 1039834.331 units remaining) [ 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, remaining gas: 1039834.321 units remaining) [ 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, remaining gas: 1039834.321 units remaining) [ 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, remaining gas: 1039834.321 units remaining) [ 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, remaining gas: 1039834.311 units remaining) [ (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, remaining gas: 1039834.286 units remaining) [ 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, remaining gas: 1039834.276 units remaining) [ 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, remaining gas: 1039834.276 units remaining) [ 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, remaining gas: 1039834.276 units remaining) [ 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, remaining gas: 1039834.266 units remaining) [ (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, remaining gas: 1039834.241 units remaining) [ 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, remaining gas: 1039834.231 units remaining) [ (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, remaining gas: 1039833.476 units remaining) [ 0 ] - - location: 219 (remaining gas: 1039833.466 units remaining) + - location: 219 (just consumed gas: 0.010, remaining gas: 1039833.466 units remaining) [ True ] - - location: 220 (remaining gas: 1039833.466 units remaining) + - location: 220 (just consumed gas: 0, remaining gas: 1039833.466 units remaining) [ ] - - location: 220 (remaining gas: 1039833.451 units remaining) + - location: 220 (just consumed gas: 0.015, remaining gas: 1039833.451 units remaining) [ ] - - location: 226 (remaining gas: 1039833.441 units remaining) + - location: 226 (just consumed gas: 0.010, remaining gas: 1039833.441 units remaining) [ Unit ] - - location: 227 (remaining gas: 1039833.431 units remaining) + - location: 227 (just consumed gas: 0.010, remaining gas: 1039833.431 units remaining) [ {} Unit ] - - location: 229 (remaining gas: 1039833.421 units remaining) + - location: 229 (just consumed gas: 0.010, remaining gas: 1039833.421 units remaining) [ (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 3e05a85881b4..f99bfbe393be 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, remaining gas: 1039840.257 units remaining) [ (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, remaining gas: 1039840.247 units remaining) [ (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, remaining gas: 1039840.237 units remaining) [ (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, remaining gas: 1039840.227 units remaining) [ 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, remaining gas: 1039840.227 units remaining) [ (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, remaining gas: 1039840.217 units remaining) [ 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, remaining gas: 1039840.192 units remaining) [ 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, remaining gas: 1039840.192 units remaining) [ (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, remaining gas: 1039840.182 units remaining) [ 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, remaining gas: 1039840.157 units remaining) [ 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, remaining gas: 1039840.147 units remaining) [ 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, remaining gas: 1039840.147 units remaining) [ 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, remaining gas: 1039840.147 units remaining) [ (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, remaining gas: 1039840.137 units remaining) [ 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, remaining gas: 1039840.112 units remaining) [ 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, remaining gas: 1039840.102 units remaining) [ 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, remaining gas: 1039840.092 units remaining) [ 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, remaining gas: 1039840.092 units remaining) [ 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, remaining gas: 1039840.092 units remaining) [ (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, remaining gas: 1039840.082 units remaining) [ 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, remaining gas: 1039840.057 units remaining) [ 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, remaining gas: 1039840.047 units remaining) [ 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, remaining gas: 1039840.037 units remaining) [ 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, remaining gas: 1039840.027 units remaining) [ 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, remaining gas: 1039840.027 units remaining) [ 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, remaining gas: 1039840.027 units remaining) [ (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, remaining gas: 1039840.017 units remaining) [ 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, remaining gas: 1039839.992 units remaining) [ 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, remaining gas: 1039839.982 units remaining) [ 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, remaining gas: 1039839.972 units remaining) [ 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, remaining gas: 1039839.962 units remaining) [ 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, remaining gas: 1039839.952 units remaining) [ 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, remaining gas: 1039839.952 units remaining) [ 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, remaining gas: 1039839.952 units remaining) [ (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, remaining gas: 1039839.942 units remaining) [ 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, remaining gas: 1039839.917 units remaining) [ 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, remaining gas: 1039839.907 units remaining) [ 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, remaining gas: 1039839.897 units remaining) [ 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, remaining gas: 1039839.887 units remaining) [ 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, remaining gas: 1039839.877 units remaining) [ 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, remaining gas: 1039839.867 units remaining) [ 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, remaining gas: 1039839.867 units remaining) [ 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, remaining gas: 1039839.867 units remaining) [ (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, remaining gas: 1039839.857 units remaining) [ 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, remaining gas: 1039839.832 units remaining) [ 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, remaining gas: 1039839.822 units remaining) [ 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, remaining gas: 1039839.812 units remaining) [ 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, remaining gas: 1039839.802 units remaining) [ 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, remaining gas: 1039839.792 units remaining) [ 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, remaining gas: 1039839.782 units remaining) [ 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, remaining gas: 1039839.772 units remaining) [ 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, remaining gas: 1039839.772 units remaining) [ 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, remaining gas: 1039839.772 units remaining) [ (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, remaining gas: 1039839.762 units remaining) [ 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, remaining gas: 1039839.737 units remaining) [ 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, remaining gas: 1039839.727 units remaining) [ 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, remaining gas: 1039839.717 units remaining) [ 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, remaining gas: 1039839.707 units remaining) [ 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, remaining gas: 1039839.697 units remaining) [ 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, remaining gas: 1039839.687 units remaining) [ 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, remaining gas: 1039839.677 units remaining) [ 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, remaining gas: 1039839.667 units remaining) [ 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, remaining gas: 1039839.667 units remaining) [ 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, remaining gas: 1039839.667 units remaining) [ (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, remaining gas: 1039839.657 units remaining) [ 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, remaining gas: 1039839.632 units remaining) [ 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, remaining gas: 1039839.622 units remaining) [ 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, remaining gas: 1039839.612 units remaining) [ 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, remaining gas: 1039839.602 units remaining) [ 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, remaining gas: 1039839.592 units remaining) [ 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, remaining gas: 1039839.582 units remaining) [ 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, remaining gas: 1039839.572 units remaining) [ 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, remaining gas: 1039839.562 units remaining) [ 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, remaining gas: 1039839.552 units remaining) [ 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, remaining gas: 1039839.552 units remaining) [ 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, remaining gas: 1039839.552 units remaining) [ (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, remaining gas: 1039839.542 units remaining) [ 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, remaining gas: 1039839.517 units remaining) [ 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, remaining gas: 1039839.507 units remaining) [ 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, remaining gas: 1039839.497 units remaining) [ 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, remaining gas: 1039839.487 units remaining) [ 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, remaining gas: 1039839.477 units remaining) [ 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, remaining gas: 1039839.467 units remaining) [ 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, remaining gas: 1039839.457 units remaining) [ 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, remaining gas: 1039839.447 units remaining) [ 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, remaining gas: 1039839.437 units remaining) [ 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, remaining gas: 1039839.427 units remaining) [ 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, remaining gas: 1039839.427 units remaining) [ 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, remaining gas: 1039839.427 units remaining) [ (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, remaining gas: 1039839.417 units remaining) [ 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, remaining gas: 1039839.392 units remaining) [ 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, remaining gas: 1039839.382 units remaining) [ 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, remaining gas: 1039839.372 units remaining) [ 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, remaining gas: 1039839.362 units remaining) [ 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, remaining gas: 1039839.352 units remaining) [ 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, remaining gas: 1039839.342 units remaining) [ 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, remaining gas: 1039839.332 units remaining) [ 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, remaining gas: 1039839.322 units remaining) [ 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, remaining gas: 1039839.312 units remaining) [ 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, remaining gas: 1039839.302 units remaining) [ 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, remaining gas: 1039839.292 units remaining) [ 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, remaining gas: 1039839.292 units remaining) [ 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, remaining gas: 1039839.292 units remaining) [ (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, remaining gas: 1039839.282 units remaining) [ 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, remaining gas: 1039839.257 units remaining) [ 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, remaining gas: 1039839.247 units remaining) [ 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, remaining gas: 1039839.237 units remaining) [ 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, remaining gas: 1039839.227 units remaining) [ 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, remaining gas: 1039839.217 units remaining) [ 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, remaining gas: 1039839.207 units remaining) [ 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, remaining gas: 1039839.197 units remaining) [ 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, remaining gas: 1039839.187 units remaining) [ 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, remaining gas: 1039839.177 units remaining) [ 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, remaining gas: 1039839.167 units remaining) [ 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, remaining gas: 1039839.157 units remaining) [ 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, remaining gas: 1039839.147 units remaining) [ 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, remaining gas: 1039839.147 units remaining) [ 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, remaining gas: 1039839.147 units remaining) [ (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, remaining gas: 1039839.137 units remaining) [ 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, remaining gas: 1039839.112 units remaining) [ 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, remaining gas: 1039839.102 units remaining) [ 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, remaining gas: 1039839.092 units remaining) [ 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, remaining gas: 1039839.082 units remaining) [ 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, remaining gas: 1039839.072 units remaining) [ 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, remaining gas: 1039839.062 units remaining) [ 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, remaining gas: 1039839.052 units remaining) [ 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, remaining gas: 1039839.042 units remaining) [ 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, remaining gas: 1039839.032 units remaining) [ 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, remaining gas: 1039839.022 units remaining) [ 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, remaining gas: 1039839.012 units remaining) [ 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, remaining gas: 1039839.002 units remaining) [ 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, remaining gas: 1039838.992 units remaining) [ 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, remaining gas: 1039838.992 units remaining) [ 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, remaining gas: 1039838.992 units remaining) [ (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, remaining gas: 1039838.982 units remaining) [ 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, remaining gas: 1039838.957 units remaining) [ 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, remaining gas: 1039838.947 units remaining) [ 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, remaining gas: 1039838.937 units remaining) [ 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, remaining gas: 1039838.927 units remaining) [ 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, remaining gas: 1039838.917 units remaining) [ 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, remaining gas: 1039838.907 units remaining) [ 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, remaining gas: 1039838.897 units remaining) [ 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, remaining gas: 1039838.887 units remaining) [ 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, remaining gas: 1039838.877 units remaining) [ 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, remaining gas: 1039838.867 units remaining) [ 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, remaining gas: 1039838.857 units remaining) [ 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, remaining gas: 1039838.847 units remaining) [ 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, remaining gas: 1039838.837 units remaining) [ 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, remaining gas: 1039838.827 units remaining) [ 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, remaining gas: 1039838.827 units remaining) [ 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, remaining gas: 1039838.827 units remaining) [ (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, remaining gas: 1039838.817 units remaining) [ 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, remaining gas: 1039838.792 units remaining) [ 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, remaining gas: 1039838.782 units remaining) [ 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, remaining gas: 1039838.772 units remaining) [ 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, remaining gas: 1039838.762 units remaining) [ 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, remaining gas: 1039838.752 units remaining) [ 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, remaining gas: 1039838.742 units remaining) [ 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, remaining gas: 1039838.732 units remaining) [ 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, remaining gas: 1039838.722 units remaining) [ 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, remaining gas: 1039838.712 units remaining) [ 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, remaining gas: 1039838.702 units remaining) [ 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, remaining gas: 1039838.692 units remaining) [ 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, remaining gas: 1039838.682 units remaining) [ 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, remaining gas: 1039838.672 units remaining) [ 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, remaining gas: 1039838.662 units remaining) [ 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, remaining gas: 1039838.652 units remaining) [ 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, remaining gas: 1039838.652 units remaining) [ 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, remaining gas: 1039838.622 units remaining) [ 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, remaining gas: 1039838.586 units remaining) [ 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, remaining gas: 1039838.543 units remaining) [ 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, remaining gas: 1039838.494 units remaining) [ 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, remaining gas: 1039838.437 units remaining) [ 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, remaining gas: 1039838.374 units remaining) [ 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, remaining gas: 1039838.304 units remaining) [ 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, remaining gas: 1039838.228 units remaining) [ 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, remaining gas: 1039838.144 units remaining) [ 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, remaining gas: 1039838.054 units remaining) [ 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, remaining gas: 1039837.957 units remaining) [ 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, remaining gas: 1039837.854 units remaining) [ 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, remaining gas: 1039837.743 units remaining) [ 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, remaining gas: 1039837.626 units remaining) [ 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, remaining gas: 1039837.502 units remaining) [ 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, remaining gas: 1039837.372 units remaining) [ 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, remaining gas: 1039837.234 units remaining) [ 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, remaining gas: 1039837.204 units remaining) [ 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, remaining gas: 1039837.168 units remaining) [ 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, remaining gas: 1039837.125 units remaining) [ 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, remaining gas: 1039837.076 units remaining) [ 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, remaining gas: 1039837.019 units remaining) [ 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, remaining gas: 1039836.956 units remaining) [ 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, remaining gas: 1039836.886 units remaining) [ 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, remaining gas: 1039836.810 units remaining) [ 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, remaining gas: 1039836.726 units remaining) [ 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, remaining gas: 1039836.636 units remaining) [ 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, remaining gas: 1039836.539 units remaining) [ 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, remaining gas: 1039836.436 units remaining) [ 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, remaining gas: 1039836.325 units remaining) [ 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, remaining gas: 1039836.208 units remaining) [ 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, remaining gas: 1039836.084 units remaining) [ 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, remaining gas: 1039835.954 units remaining) [ 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, remaining gas: 1039835.816 units remaining) [ 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, remaining gas: 1039835.816 units remaining) [ 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, remaining gas: 1039835.806 units remaining) [ (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, remaining gas: 1039835.781 units remaining) [ 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, remaining gas: 1039835.771 units remaining) [ 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, remaining gas: 1039835.761 units remaining) [ 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, remaining gas: 1039835.751 units remaining) [ 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, remaining gas: 1039835.741 units remaining) [ 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, remaining gas: 1039835.731 units remaining) [ 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, remaining gas: 1039835.721 units remaining) [ 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, remaining gas: 1039835.711 units remaining) [ 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, remaining gas: 1039835.701 units remaining) [ 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, remaining gas: 1039835.691 units remaining) [ 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, remaining gas: 1039835.681 units remaining) [ 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, remaining gas: 1039835.671 units remaining) [ 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, remaining gas: 1039835.661 units remaining) [ 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, remaining gas: 1039835.651 units remaining) [ 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, remaining gas: 1039835.641 units remaining) [ 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, remaining gas: 1039835.641 units remaining) [ 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, remaining gas: 1039835.641 units remaining) [ 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, remaining gas: 1039835.631 units remaining) [ (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, remaining gas: 1039835.606 units remaining) [ 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, remaining gas: 1039835.596 units remaining) [ 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, remaining gas: 1039835.586 units remaining) [ 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, remaining gas: 1039835.576 units remaining) [ 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, remaining gas: 1039835.566 units remaining) [ 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, remaining gas: 1039835.556 units remaining) [ 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, remaining gas: 1039835.546 units remaining) [ 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, remaining gas: 1039835.536 units remaining) [ 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, remaining gas: 1039835.526 units remaining) [ 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, remaining gas: 1039835.516 units remaining) [ 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, remaining gas: 1039835.506 units remaining) [ 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, remaining gas: 1039835.496 units remaining) [ 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, remaining gas: 1039835.486 units remaining) [ 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, remaining gas: 1039835.476 units remaining) [ 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, remaining gas: 1039835.476 units remaining) [ 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, remaining gas: 1039835.476 units remaining) [ 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, remaining gas: 1039835.466 units remaining) [ (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, remaining gas: 1039835.441 units remaining) [ 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, remaining gas: 1039835.431 units remaining) [ 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, remaining gas: 1039835.421 units remaining) [ 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, remaining gas: 1039835.411 units remaining) [ 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, remaining gas: 1039835.401 units remaining) [ 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, remaining gas: 1039835.391 units remaining) [ 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, remaining gas: 1039835.381 units remaining) [ 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, remaining gas: 1039835.371 units remaining) [ 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, remaining gas: 1039835.361 units remaining) [ 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, remaining gas: 1039835.351 units remaining) [ 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, remaining gas: 1039835.341 units remaining) [ 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, remaining gas: 1039835.331 units remaining) [ 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, remaining gas: 1039835.321 units remaining) [ 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, remaining gas: 1039835.321 units remaining) [ 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, remaining gas: 1039835.321 units remaining) [ 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, remaining gas: 1039835.311 units remaining) [ (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, remaining gas: 1039835.286 units remaining) [ 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, remaining gas: 1039835.276 units remaining) [ 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, remaining gas: 1039835.266 units remaining) [ 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, remaining gas: 1039835.256 units remaining) [ 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, remaining gas: 1039835.246 units remaining) [ 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, remaining gas: 1039835.236 units remaining) [ 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, remaining gas: 1039835.226 units remaining) [ 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, remaining gas: 1039835.216 units remaining) [ 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, remaining gas: 1039835.206 units remaining) [ 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, remaining gas: 1039835.196 units remaining) [ 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, remaining gas: 1039835.186 units remaining) [ 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, remaining gas: 1039835.176 units remaining) [ 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, remaining gas: 1039835.176 units remaining) [ 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, remaining gas: 1039835.176 units remaining) [ 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, remaining gas: 1039835.166 units remaining) [ (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, remaining gas: 1039835.141 units remaining) [ 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, remaining gas: 1039835.131 units remaining) [ 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, remaining gas: 1039835.121 units remaining) [ 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, remaining gas: 1039835.111 units remaining) [ 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, remaining gas: 1039835.101 units remaining) [ 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, remaining gas: 1039835.091 units remaining) [ 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, remaining gas: 1039835.081 units remaining) [ 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, remaining gas: 1039835.071 units remaining) [ 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, remaining gas: 1039835.061 units remaining) [ 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, remaining gas: 1039835.051 units remaining) [ 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, remaining gas: 1039835.041 units remaining) [ 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, remaining gas: 1039835.041 units remaining) [ 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, remaining gas: 1039835.041 units remaining) [ 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, remaining gas: 1039835.031 units remaining) [ (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, remaining gas: 1039835.006 units remaining) [ 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, remaining gas: 1039834.996 units remaining) [ 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, remaining gas: 1039834.986 units remaining) [ 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, remaining gas: 1039834.976 units remaining) [ 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, remaining gas: 1039834.966 units remaining) [ 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, remaining gas: 1039834.956 units remaining) [ 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, remaining gas: 1039834.946 units remaining) [ 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, remaining gas: 1039834.936 units remaining) [ 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, remaining gas: 1039834.926 units remaining) [ 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, remaining gas: 1039834.916 units remaining) [ 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, remaining gas: 1039834.916 units remaining) [ 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, remaining gas: 1039834.916 units remaining) [ 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, remaining gas: 1039834.906 units remaining) [ (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, remaining gas: 1039834.881 units remaining) [ 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, remaining gas: 1039834.871 units remaining) [ 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, remaining gas: 1039834.861 units remaining) [ 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, remaining gas: 1039834.851 units remaining) [ 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, remaining gas: 1039834.841 units remaining) [ 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, remaining gas: 1039834.831 units remaining) [ 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, remaining gas: 1039834.821 units remaining) [ 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, remaining gas: 1039834.811 units remaining) [ 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, remaining gas: 1039834.801 units remaining) [ 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, remaining gas: 1039834.801 units remaining) [ 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, remaining gas: 1039834.801 units remaining) [ 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, remaining gas: 1039834.791 units remaining) [ (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, remaining gas: 1039834.766 units remaining) [ 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, remaining gas: 1039834.756 units remaining) [ 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, remaining gas: 1039834.746 units remaining) [ 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, remaining gas: 1039834.736 units remaining) [ 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, remaining gas: 1039834.726 units remaining) [ 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, remaining gas: 1039834.716 units remaining) [ 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, remaining gas: 1039834.706 units remaining) [ 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, remaining gas: 1039834.696 units remaining) [ 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, remaining gas: 1039834.696 units remaining) [ 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, remaining gas: 1039834.696 units remaining) [ 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, remaining gas: 1039834.686 units remaining) [ (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, remaining gas: 1039834.661 units remaining) [ 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, remaining gas: 1039834.651 units remaining) [ 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, remaining gas: 1039834.641 units remaining) [ 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, remaining gas: 1039834.631 units remaining) [ 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, remaining gas: 1039834.621 units remaining) [ 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, remaining gas: 1039834.611 units remaining) [ 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, remaining gas: 1039834.601 units remaining) [ 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, remaining gas: 1039834.601 units remaining) [ 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, remaining gas: 1039834.601 units remaining) [ 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, remaining gas: 1039834.591 units remaining) [ (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, remaining gas: 1039834.566 units remaining) [ 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, remaining gas: 1039834.556 units remaining) [ 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, remaining gas: 1039834.546 units remaining) [ 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, remaining gas: 1039834.536 units remaining) [ 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, remaining gas: 1039834.526 units remaining) [ 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, remaining gas: 1039834.516 units remaining) [ 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, remaining gas: 1039834.516 units remaining) [ 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, remaining gas: 1039834.516 units remaining) [ 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, remaining gas: 1039834.506 units remaining) [ (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, remaining gas: 1039834.481 units remaining) [ 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, remaining gas: 1039834.471 units remaining) [ 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, remaining gas: 1039834.461 units remaining) [ 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, remaining gas: 1039834.451 units remaining) [ 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, remaining gas: 1039834.441 units remaining) [ 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, remaining gas: 1039834.441 units remaining) [ 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, remaining gas: 1039834.441 units remaining) [ 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, remaining gas: 1039834.431 units remaining) [ (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, remaining gas: 1039834.406 units remaining) [ 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, remaining gas: 1039834.396 units remaining) [ 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, remaining gas: 1039834.386 units remaining) [ 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, remaining gas: 1039834.376 units remaining) [ 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, remaining gas: 1039834.376 units remaining) [ 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, remaining gas: 1039834.376 units remaining) [ 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, remaining gas: 1039834.366 units remaining) [ (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, remaining gas: 1039834.341 units remaining) [ 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, remaining gas: 1039834.331 units remaining) [ 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, remaining gas: 1039834.321 units remaining) [ 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, remaining gas: 1039834.321 units remaining) [ 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, remaining gas: 1039834.321 units remaining) [ 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, remaining gas: 1039834.311 units remaining) [ (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, remaining gas: 1039834.286 units remaining) [ 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, remaining gas: 1039834.276 units remaining) [ 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, remaining gas: 1039834.276 units remaining) [ 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, remaining gas: 1039834.276 units remaining) [ 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, remaining gas: 1039834.266 units remaining) [ (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, remaining gas: 1039834.241 units remaining) [ 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, remaining gas: 1039834.231 units remaining) [ (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, remaining gas: 1039833.476 units remaining) [ 0 ] - - location: 219 (remaining gas: 1039833.466 units remaining) + - location: 219 (just consumed gas: 0.010, remaining gas: 1039833.466 units remaining) [ True ] - - location: 220 (remaining gas: 1039833.466 units remaining) + - location: 220 (just consumed gas: 0, remaining gas: 1039833.466 units remaining) [ ] - - location: 220 (remaining gas: 1039833.451 units remaining) + - location: 220 (just consumed gas: 0.015, remaining gas: 1039833.451 units remaining) [ ] - - location: 226 (remaining gas: 1039833.441 units remaining) + - location: 226 (just consumed gas: 0.010, remaining gas: 1039833.441 units remaining) [ Unit ] - - location: 227 (remaining gas: 1039833.431 units remaining) + - location: 227 (just consumed gas: 0.010, remaining gas: 1039833.431 units remaining) [ {} Unit ] - - location: 229 (remaining gas: 1039833.421 units remaining) + - location: 229 (just consumed gas: 0.010, remaining gas: 1039833.421 units remaining) [ (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 38fda574b226..c35f14999b3b 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, remaining gas: 1039988.045 units remaining) [ (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, remaining gas: 1039988.035 units remaining) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (remaining gas: 1039988.025 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.025 units remaining) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (remaining gas: 1039988.015 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.015 units remaining) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (remaining gas: 1039988.005 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.005 units remaining) [ (Pair 1 2) 3 4 5 ] - - location: 19 (remaining gas: 1039987.995 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.995 units remaining) [ 1 2 3 4 5 ] - - location: 20 (remaining gas: 1039987.938 units remaining) + - location: 20 (just consumed gas: 0.057, remaining gas: 1039987.938 units remaining) [ 5 1 2 3 4 ] - - location: 22 (remaining gas: 1039987.938 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039987.938 units remaining) [ 1 2 3 4 ] - - location: 24 (remaining gas: 1039987.928 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039987.928 units remaining) [ 2 3 4 ] - - location: 25 (remaining gas: 1039987.918 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039987.918 units remaining) [ 3 4 ] - - location: 26 (remaining gas: 1039987.908 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039987.908 units remaining) [ 4 ] - - location: 27 (remaining gas: 1039987.898 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039987.898 units remaining) [ ] - - location: 22 (remaining gas: 1039987.873 units remaining) + - location: 22 (just consumed gas: 0.025, remaining gas: 1039987.873 units remaining) [ 5 ] - - location: 28 (remaining gas: 1039987.863 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039987.863 units remaining) [ {} 5 ] - - location: 30 (remaining gas: 1039987.853 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039987.853 units remaining) [ (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 d59d6a06901f..687f469d0919 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, remaining gas: 1039992.088 units remaining) [ (Pair (Pair 1 1) 0 0) ] - - location: 11 (remaining gas: 1039992.078 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.078 units remaining) [ (Pair 1 1) ] - - location: 12 (remaining gas: 1039992.068 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.068 units remaining) [ 1 1 ] - - location: 13 (remaining gas: 1039992.058 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.058 units remaining) [ 1 1 1 ] - - location: 14 (remaining gas: 1039992.058 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039992.058 units remaining) [ 1 1 ] - - location: 16 (remaining gas: 1039992.023 units remaining) + - location: 16 (just consumed gas: 0.035, remaining gas: 1039992.023 units remaining) [ 2 ] - - location: 14 (remaining gas: 1039991.998 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.998 units remaining) [ 1 2 ] - - location: 17 (remaining gas: 1039991.988 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.988 units remaining) [ (Pair 1 2) ] - - location: 18 (remaining gas: 1039991.978 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.978 units remaining) [ {} (Pair 1 2) ] - - location: 20 (remaining gas: 1039991.968 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.968 units remaining) [ (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 e299e206e680..8c57210c5558 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, remaining gas: 1039992.088 units remaining) [ (Pair (Pair 15 9) 0 0) ] - - location: 11 (remaining gas: 1039992.078 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.078 units remaining) [ (Pair 15 9) ] - - location: 12 (remaining gas: 1039992.068 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.068 units remaining) [ 15 9 ] - - location: 13 (remaining gas: 1039992.058 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.058 units remaining) [ 15 15 9 ] - - location: 14 (remaining gas: 1039992.058 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039992.058 units remaining) [ 15 9 ] - - location: 16 (remaining gas: 1039992.023 units remaining) + - location: 16 (just consumed gas: 0.035, remaining gas: 1039992.023 units remaining) [ 24 ] - - location: 14 (remaining gas: 1039991.998 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.998 units remaining) [ 15 24 ] - - location: 17 (remaining gas: 1039991.988 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.988 units remaining) [ (Pair 15 24) ] - - location: 18 (remaining gas: 1039991.978 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.978 units remaining) [ {} (Pair 15 24) ] - - location: 20 (remaining gas: 1039991.968 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.968 units remaining) [ (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 dce8d8ccd17e..608e2ded3644 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, remaining gas: 1039986.795 units remaining) [ (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, remaining gas: 1039986.785 units remaining) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (remaining gas: 1039986.775 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039986.775 units remaining) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (remaining gas: 1039986.765 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039986.765 units remaining) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (remaining gas: 1039986.755 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039986.755 units remaining) [ (Pair 1 2) 3 4 5 ] - - location: 19 (remaining gas: 1039986.745 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039986.745 units remaining) [ 1 2 3 4 5 ] - - location: 20 (remaining gas: 1039986.745 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039986.745 units remaining) [ ] - - location: 23 (remaining gas: 1039986.735 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.735 units remaining) [ 6 ] - - location: 20 (remaining gas: 1039986.710 units remaining) + - location: 20 (just consumed gas: 0.025, remaining gas: 1039986.710 units remaining) [ 5 6 ] - - location: 20 (remaining gas: 1039986.700 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039986.700 units remaining) [ 4 5 6 ] - - location: 20 (remaining gas: 1039986.690 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039986.690 units remaining) [ 3 4 5 6 ] - - location: 20 (remaining gas: 1039986.680 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039986.680 units remaining) [ 2 3 4 5 6 ] - - location: 20 (remaining gas: 1039986.670 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039986.670 units remaining) [ 1 2 3 4 5 6 ] - - location: 20 (remaining gas: 1039986.670 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039986.670 units remaining) [ 1 2 3 4 5 6 ] - - location: 26 (remaining gas: 1039986.660 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039986.660 units remaining) [ 2 3 4 5 6 ] - - location: 27 (remaining gas: 1039986.650 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039986.650 units remaining) [ 3 4 5 6 ] - - location: 28 (remaining gas: 1039986.640 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039986.640 units remaining) [ 4 5 6 ] - - location: 29 (remaining gas: 1039986.630 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039986.630 units remaining) [ 5 6 ] - - location: 30 (remaining gas: 1039986.620 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039986.620 units remaining) [ 6 ] - - location: 31 (remaining gas: 1039986.610 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039986.610 units remaining) [ {} 6 ] - - location: 33 (remaining gas: 1039986.600 units remaining) + - location: 33 (just consumed gas: 0.010, remaining gas: 1039986.600 units remaining) [ (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 4ebf7260960b..d5c87109308b 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, remaining gas: 1039990.952 units remaining) [ (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, remaining gas: 1039990.942 units remaining) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (remaining gas: 1039990.932 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.932 units remaining) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (remaining gas: 1039990.922 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039990.922 units remaining) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (remaining gas: 1039990.912 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.912 units remaining) [ (Pair 1 2) 3 4 5 ] - - location: 19 (remaining gas: 1039990.902 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.902 units remaining) [ 1 2 3 4 5 ] - - location: 20 (remaining gas: 1039990.862 units remaining) + - location: 20 (just consumed gas: 0.040, remaining gas: 1039990.862 units remaining) [ 5 ] - - location: 22 (remaining gas: 1039990.852 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.852 units remaining) [ {} 5 ] - - location: 24 (remaining gas: 1039990.842 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.842 units remaining) [ (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 7ee0f20bcd98..09769ff2a8cd 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, remaining gas: 1039988.721 units remaining) [ (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, remaining gas: 1039988.711 units remaining) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (remaining gas: 1039988.701 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.701 units remaining) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (remaining gas: 1039988.691 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.691 units remaining) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (remaining gas: 1039988.681 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.681 units remaining) [ (Pair 1 2) 3 4 5 ] - - location: 19 (remaining gas: 1039988.671 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.671 units remaining) [ 1 2 3 4 5 ] - - location: 20 (remaining gas: 1039988.609 units remaining) + - location: 20 (just consumed gas: 0.062, remaining gas: 1039988.609 units remaining) [ 2 3 4 5 1 ] - - location: 22 (remaining gas: 1039988.599 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.599 units remaining) [ 3 4 5 1 ] - - location: 23 (remaining gas: 1039988.589 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039988.589 units remaining) [ 4 5 1 ] - - location: 24 (remaining gas: 1039988.579 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.579 units remaining) [ 5 1 ] - - location: 25 (remaining gas: 1039988.569 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039988.569 units remaining) [ 1 ] - - location: 26 (remaining gas: 1039988.559 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.559 units remaining) [ {} 1 ] - - location: 28 (remaining gas: 1039988.549 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.549 units remaining) [ (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 0a08f3ca651a..cd7c97ddf8d5 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, remaining gas: 1039957.772 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039957.762 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039957.762 units remaining) [ ] - - location: 8 (remaining gas: 1039957.752 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039957.752 units remaining) [ 5 ] - - location: 11 (remaining gas: 1039957.742 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039957.742 units remaining) [ 4 5 ] - - location: 14 (remaining gas: 1039957.732 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039957.732 units remaining) [ 3 4 5 ] - - location: 17 (remaining gas: 1039957.722 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039957.722 units remaining) [ 2 3 4 5 ] - - location: 20 (remaining gas: 1039957.712 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039957.712 units remaining) [ 1 2 3 4 5 ] - - location: 23 (remaining gas: 1039957.691 units remaining) + - location: 23 (just consumed gas: 0.021, remaining gas: 1039957.691 units remaining) [ 1 1 2 3 4 5 ] - - location: 25 (remaining gas: 1039957.681 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039957.681 units remaining) [ 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, remaining gas: 1039957.646 units remaining) [ 0 1 2 3 4 5 ] - - location: 31 (remaining gas: 1039957.636 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039957.636 units remaining) [ True 1 2 3 4 5 ] - - location: 32 (remaining gas: 1039957.636 units remaining) + - location: 32 (just consumed gas: 0, remaining gas: 1039957.636 units remaining) [ 1 2 3 4 5 ] - - location: 32 (remaining gas: 1039957.621 units remaining) + - location: 32 (just consumed gas: 0.015, remaining gas: 1039957.621 units remaining) [ 1 2 3 4 5 ] - - location: 38 (remaining gas: 1039957.599 units remaining) + - location: 38 (just consumed gas: 0.022, remaining gas: 1039957.599 units remaining) [ 2 1 2 3 4 5 ] - - location: 40 (remaining gas: 1039957.589 units remaining) + - location: 40 (just consumed gas: 0.010, remaining gas: 1039957.589 units remaining) [ 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, remaining gas: 1039957.554 units remaining) [ 0 1 2 3 4 5 ] - - location: 46 (remaining gas: 1039957.544 units remaining) + - location: 46 (just consumed gas: 0.010, remaining gas: 1039957.544 units remaining) [ True 1 2 3 4 5 ] - - location: 47 (remaining gas: 1039957.544 units remaining) + - location: 47 (just consumed gas: 0, remaining gas: 1039957.544 units remaining) [ 1 2 3 4 5 ] - - location: 47 (remaining gas: 1039957.529 units remaining) + - location: 47 (just consumed gas: 0.015, remaining gas: 1039957.529 units remaining) [ 1 2 3 4 5 ] - - location: 53 (remaining gas: 1039957.506 units remaining) + - location: 53 (just consumed gas: 0.023, remaining gas: 1039957.506 units remaining) [ 3 1 2 3 4 5 ] - - location: 55 (remaining gas: 1039957.496 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039957.496 units remaining) [ 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, remaining gas: 1039957.461 units remaining) [ 0 1 2 3 4 5 ] - - location: 61 (remaining gas: 1039957.451 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039957.451 units remaining) [ True 1 2 3 4 5 ] - - location: 62 (remaining gas: 1039957.451 units remaining) + - location: 62 (just consumed gas: 0, remaining gas: 1039957.451 units remaining) [ 1 2 3 4 5 ] - - location: 62 (remaining gas: 1039957.436 units remaining) + - location: 62 (just consumed gas: 0.015, remaining gas: 1039957.436 units remaining) [ 1 2 3 4 5 ] - - location: 68 (remaining gas: 1039957.411 units remaining) + - location: 68 (just consumed gas: 0.025, remaining gas: 1039957.411 units remaining) [ 4 1 2 3 4 5 ] - - location: 70 (remaining gas: 1039957.401 units remaining) + - location: 70 (just consumed gas: 0.010, remaining gas: 1039957.401 units remaining) [ 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, remaining gas: 1039957.366 units remaining) [ 0 1 2 3 4 5 ] - - location: 76 (remaining gas: 1039957.356 units remaining) + - location: 76 (just consumed gas: 0.010, remaining gas: 1039957.356 units remaining) [ True 1 2 3 4 5 ] - - location: 77 (remaining gas: 1039957.356 units remaining) + - location: 77 (just consumed gas: 0, remaining gas: 1039957.356 units remaining) [ 1 2 3 4 5 ] - - location: 77 (remaining gas: 1039957.341 units remaining) + - location: 77 (just consumed gas: 0.015, remaining gas: 1039957.341 units remaining) [ 1 2 3 4 5 ] - - location: 83 (remaining gas: 1039957.315 units remaining) + - location: 83 (just consumed gas: 0.026, remaining gas: 1039957.315 units remaining) [ 5 1 2 3 4 5 ] - - location: 85 (remaining gas: 1039957.305 units remaining) + - location: 85 (just consumed gas: 0.010, remaining gas: 1039957.305 units remaining) [ 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, remaining gas: 1039957.270 units remaining) [ 0 1 2 3 4 5 ] - - location: 91 (remaining gas: 1039957.260 units remaining) + - location: 91 (just consumed gas: 0.010, remaining gas: 1039957.260 units remaining) [ True 1 2 3 4 5 ] - - location: 92 (remaining gas: 1039957.260 units remaining) + - location: 92 (just consumed gas: 0, remaining gas: 1039957.260 units remaining) [ 1 2 3 4 5 ] - - location: 92 (remaining gas: 1039957.245 units remaining) + - location: 92 (just consumed gas: 0.015, remaining gas: 1039957.245 units remaining) [ 1 2 3 4 5 ] - - location: 98 (remaining gas: 1039957.203 units remaining) + - location: 98 (just consumed gas: 0.042, remaining gas: 1039957.203 units remaining) [ ] - - location: 100 (remaining gas: 1039957.193 units remaining) + - location: 100 (just consumed gas: 0.010, remaining gas: 1039957.193 units remaining) [ Unit ] - - location: 101 (remaining gas: 1039957.183 units remaining) + - location: 101 (just consumed gas: 0.010, remaining gas: 1039957.183 units remaining) [ {} Unit ] - - location: 103 (remaining gas: 1039957.173 units remaining) + - location: 103 (just consumed gas: 0.010, remaining gas: 1039957.173 units remaining) [ (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 00e020f71ba4..da2eaf24f1a8 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, remaining gas: 1039974.438 units remaining) [ (Pair (Pair -8 2) None None None None) ] - - location: 25 (remaining gas: 1039974.428 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039974.428 units remaining) [ (Pair -8 2) ] - - location: 26 (remaining gas: 1039974.418 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039974.418 units remaining) [ (Pair -8 2) (Pair -8 2) ] - - location: 27 (remaining gas: 1039974.408 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039974.408 units remaining) [ -8 2 (Pair -8 2) ] - - location: 28 (remaining gas: 1039974.388 units remaining) + - location: 28 (just consumed gas: 0.020, remaining gas: 1039974.388 units remaining) [ 8 2 (Pair -8 2) ] - - location: 29 (remaining gas: 1039974.388 units remaining) + - location: 29 (just consumed gas: 0, remaining gas: 1039974.388 units remaining) [ 2 (Pair -8 2) ] - - location: 31 (remaining gas: 1039974.368 units remaining) + - location: 31 (just consumed gas: 0.020, remaining gas: 1039974.368 units remaining) [ 2 (Pair -8 2) ] - - location: 29 (remaining gas: 1039974.343 units remaining) + - location: 29 (just consumed gas: 0.025, remaining gas: 1039974.343 units remaining) [ 8 2 (Pair -8 2) ] - - location: 32 (remaining gas: 1039974.238 units remaining) + - location: 32 (just consumed gas: 0.105, remaining gas: 1039974.238 units remaining) [ (Some (Pair 4 0)) (Pair -8 2) ] - - location: 33 (remaining gas: 1039974.228 units remaining) + - location: 33 (just consumed gas: 0.010, remaining gas: 1039974.228 units remaining) [ (Pair -8 2) (Some (Pair 4 0)) ] - - location: 34 (remaining gas: 1039974.218 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039974.218 units remaining) [ (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, remaining gas: 1039974.208 units remaining) [ -8 2 (Pair -8 2) (Some (Pair 4 0)) ] - - location: 36 (remaining gas: 1039974.188 units remaining) + - location: 36 (just consumed gas: 0.020, remaining gas: 1039974.188 units remaining) [ 8 2 (Pair -8 2) (Some (Pair 4 0)) ] - - location: 37 (remaining gas: 1039974.083 units remaining) + - location: 37 (just consumed gas: 0.105, remaining gas: 1039974.083 units remaining) [ (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, remaining gas: 1039974.073 units remaining) [ (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, remaining gas: 1039974.063 units remaining) [ (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, remaining gas: 1039974.053 units remaining) [ -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, remaining gas: 1039974.053 units remaining) [ 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, remaining gas: 1039974.033 units remaining) [ 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, remaining gas: 1039974.008 units remaining) [ -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, remaining gas: 1039973.903 units remaining) [ (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, remaining gas: 1039973.893 units remaining) [ (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, remaining gas: 1039973.883 units remaining) [ -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, remaining gas: 1039973.778 units remaining) [ (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, remaining gas: 1039973.778 units remaining) [ (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 52 (remaining gas: 1039973.768 units remaining) + - location: 52 (just consumed gas: 0.010, remaining gas: 1039973.768 units remaining) [ (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 49 (remaining gas: 1039973.743 units remaining) + - location: 49 (just consumed gas: 0.025, remaining gas: 1039973.743 units remaining) [ (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, remaining gas: 1039973.733 units remaining) [ (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, remaining gas: 1039973.733 units remaining) [ (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, remaining gas: 1039973.733 units remaining) [ (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, remaining gas: 1039973.723 units remaining) [ (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, remaining gas: 1039973.698 units remaining) [ (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, remaining gas: 1039973.688 units remaining) [ (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, remaining gas: 1039973.678 units remaining) [ {} (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, remaining gas: 1039973.668 units remaining) [ (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 1953b7a0ef5d..3674478b1571 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, remaining gas: 1039974.438 units remaining) [ (Pair (Pair 10 -3) None None None None) ] - - location: 25 (remaining gas: 1039974.428 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039974.428 units remaining) [ (Pair 10 -3) ] - - location: 26 (remaining gas: 1039974.418 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039974.418 units remaining) [ (Pair 10 -3) (Pair 10 -3) ] - - location: 27 (remaining gas: 1039974.408 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039974.408 units remaining) [ 10 -3 (Pair 10 -3) ] - - location: 28 (remaining gas: 1039974.388 units remaining) + - location: 28 (just consumed gas: 0.020, remaining gas: 1039974.388 units remaining) [ 10 -3 (Pair 10 -3) ] - - location: 29 (remaining gas: 1039974.388 units remaining) + - location: 29 (just consumed gas: 0, remaining gas: 1039974.388 units remaining) [ -3 (Pair 10 -3) ] - - location: 31 (remaining gas: 1039974.368 units remaining) + - location: 31 (just consumed gas: 0.020, remaining gas: 1039974.368 units remaining) [ 3 (Pair 10 -3) ] - - location: 29 (remaining gas: 1039974.343 units remaining) + - location: 29 (just consumed gas: 0.025, remaining gas: 1039974.343 units remaining) [ 10 3 (Pair 10 -3) ] - - location: 32 (remaining gas: 1039974.238 units remaining) + - location: 32 (just consumed gas: 0.105, remaining gas: 1039974.238 units remaining) [ (Some (Pair 3 1)) (Pair 10 -3) ] - - location: 33 (remaining gas: 1039974.228 units remaining) + - location: 33 (just consumed gas: 0.010, remaining gas: 1039974.228 units remaining) [ (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 34 (remaining gas: 1039974.218 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039974.218 units remaining) [ (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, remaining gas: 1039974.208 units remaining) [ 10 -3 (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 36 (remaining gas: 1039974.188 units remaining) + - location: 36 (just consumed gas: 0.020, remaining gas: 1039974.188 units remaining) [ 10 -3 (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 37 (remaining gas: 1039974.083 units remaining) + - location: 37 (just consumed gas: 0.105, remaining gas: 1039974.083 units remaining) [ (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, remaining gas: 1039974.073 units remaining) [ (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, remaining gas: 1039974.063 units remaining) [ (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, remaining gas: 1039974.053 units remaining) [ 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, remaining gas: 1039974.053 units remaining) [ -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, remaining gas: 1039974.033 units remaining) [ 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, remaining gas: 1039974.008 units remaining) [ 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, remaining gas: 1039973.903 units remaining) [ (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, remaining gas: 1039973.893 units remaining) [ (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, remaining gas: 1039973.883 units remaining) [ 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, remaining gas: 1039973.778 units remaining) [ (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, remaining gas: 1039973.778 units remaining) [ (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 52 (remaining gas: 1039973.768 units remaining) + - location: 52 (just consumed gas: 0.010, remaining gas: 1039973.768 units remaining) [ (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 49 (remaining gas: 1039973.743 units remaining) + - location: 49 (just consumed gas: 0.025, remaining gas: 1039973.743 units remaining) [ (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, remaining gas: 1039973.733 units remaining) [ (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, remaining gas: 1039973.733 units remaining) [ (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, remaining gas: 1039973.733 units remaining) [ (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, remaining gas: 1039973.723 units remaining) [ (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, remaining gas: 1039973.698 units remaining) [ (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, remaining gas: 1039973.688 units remaining) [ (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, remaining gas: 1039973.678 units remaining) [ {} (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, remaining gas: 1039973.668 units remaining) [ (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 1613d94798ea..5b3b81e4d849 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, remaining gas: 1039974.438 units remaining) [ (Pair (Pair 10 0) None None None None) ] - - location: 25 (remaining gas: 1039974.428 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039974.428 units remaining) [ (Pair 10 0) ] - - location: 26 (remaining gas: 1039974.418 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039974.418 units remaining) [ (Pair 10 0) (Pair 10 0) ] - - location: 27 (remaining gas: 1039974.408 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039974.408 units remaining) [ 10 0 (Pair 10 0) ] - - location: 28 (remaining gas: 1039974.388 units remaining) + - location: 28 (just consumed gas: 0.020, remaining gas: 1039974.388 units remaining) [ 10 0 (Pair 10 0) ] - - location: 29 (remaining gas: 1039974.388 units remaining) + - location: 29 (just consumed gas: 0, remaining gas: 1039974.388 units remaining) [ 0 (Pair 10 0) ] - - location: 31 (remaining gas: 1039974.368 units remaining) + - location: 31 (just consumed gas: 0.020, remaining gas: 1039974.368 units remaining) [ 0 (Pair 10 0) ] - - location: 29 (remaining gas: 1039974.343 units remaining) + - location: 29 (just consumed gas: 0.025, remaining gas: 1039974.343 units remaining) [ 10 0 (Pair 10 0) ] - - location: 32 (remaining gas: 1039974.238 units remaining) + - location: 32 (just consumed gas: 0.105, remaining gas: 1039974.238 units remaining) [ None (Pair 10 0) ] - - location: 33 (remaining gas: 1039974.228 units remaining) + - location: 33 (just consumed gas: 0.010, remaining gas: 1039974.228 units remaining) [ (Pair 10 0) None ] - - location: 34 (remaining gas: 1039974.218 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039974.218 units remaining) [ (Pair 10 0) (Pair 10 0) None ] - - location: 35 (remaining gas: 1039974.208 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039974.208 units remaining) [ 10 0 (Pair 10 0) None ] - - location: 36 (remaining gas: 1039974.188 units remaining) + - location: 36 (just consumed gas: 0.020, remaining gas: 1039974.188 units remaining) [ 10 0 (Pair 10 0) None ] - - location: 37 (remaining gas: 1039974.083 units remaining) + - location: 37 (just consumed gas: 0.105, remaining gas: 1039974.083 units remaining) [ None (Pair 10 0) None ] - - location: 38 (remaining gas: 1039974.073 units remaining) + - location: 38 (just consumed gas: 0.010, remaining gas: 1039974.073 units remaining) [ (Pair 10 0) None None ] - - location: 39 (remaining gas: 1039974.063 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039974.063 units remaining) [ (Pair 10 0) (Pair 10 0) None None ] - - location: 40 (remaining gas: 1039974.053 units remaining) + - location: 40 (just consumed gas: 0.010, remaining gas: 1039974.053 units remaining) [ 10 0 (Pair 10 0) None None ] - - location: 41 (remaining gas: 1039974.053 units remaining) + - location: 41 (just consumed gas: 0, remaining gas: 1039974.053 units remaining) [ 0 (Pair 10 0) None None ] - - location: 43 (remaining gas: 1039974.033 units remaining) + - location: 43 (just consumed gas: 0.020, remaining gas: 1039974.033 units remaining) [ 0 (Pair 10 0) None None ] - - location: 41 (remaining gas: 1039974.008 units remaining) + - location: 41 (just consumed gas: 0.025, remaining gas: 1039974.008 units remaining) [ 10 0 (Pair 10 0) None None ] - - location: 44 (remaining gas: 1039973.903 units remaining) + - location: 44 (just consumed gas: 0.105, remaining gas: 1039973.903 units remaining) [ None (Pair 10 0) None None ] - - location: 45 (remaining gas: 1039973.893 units remaining) + - location: 45 (just consumed gas: 0.010, remaining gas: 1039973.893 units remaining) [ (Pair 10 0) None None None ] - - location: 46 (remaining gas: 1039973.883 units remaining) + - location: 46 (just consumed gas: 0.010, remaining gas: 1039973.883 units remaining) [ 10 0 None None None ] - - location: 47 (remaining gas: 1039973.778 units remaining) + - location: 47 (just consumed gas: 0.105, remaining gas: 1039973.778 units remaining) [ None None None None ] - - location: 49 (remaining gas: 1039973.778 units remaining) + - location: 49 (just consumed gas: 0, remaining gas: 1039973.778 units remaining) [ None None ] - - location: 52 (remaining gas: 1039973.768 units remaining) + - location: 52 (just consumed gas: 0.010, remaining gas: 1039973.768 units remaining) [ (Pair None None) ] - - location: 49 (remaining gas: 1039973.743 units remaining) + - location: 49 (just consumed gas: 0.025, remaining gas: 1039973.743 units remaining) [ None (Pair None None) ] - - location: 49 (remaining gas: 1039973.733 units remaining) + - location: 49 (just consumed gas: 0.010, remaining gas: 1039973.733 units remaining) [ None None (Pair None None) ] - - location: 49 (remaining gas: 1039973.733 units remaining) + - location: 49 (just consumed gas: 0, remaining gas: 1039973.733 units remaining) [ None None (Pair None None) ] - - location: 53 (remaining gas: 1039973.733 units remaining) + - location: 53 (just consumed gas: 0, remaining gas: 1039973.733 units remaining) [ None (Pair None None) ] - - location: 55 (remaining gas: 1039973.723 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039973.723 units remaining) [ (Pair None None None) ] - - location: 53 (remaining gas: 1039973.698 units remaining) + - location: 53 (just consumed gas: 0.025, remaining gas: 1039973.698 units remaining) [ None (Pair None None None) ] - - location: 56 (remaining gas: 1039973.688 units remaining) + - location: 56 (just consumed gas: 0.010, remaining gas: 1039973.688 units remaining) [ (Pair None None None None) ] - - location: 57 (remaining gas: 1039973.678 units remaining) + - location: 57 (just consumed gas: 0.010, remaining gas: 1039973.678 units remaining) [ {} (Pair None None None None) ] - - location: 59 (remaining gas: 1039973.668 units remaining) + - location: 59 (just consumed gas: 0.010, remaining gas: 1039973.668 units remaining) [ (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 ae3fca03fd0f..1cfd85f5ce7f 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, remaining gas: 1039985.991 units remaining) [ (Pair (Pair 10 (Left 0)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) [ (Pair 10 (Left 0)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) [ 10 (Left 0) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) [ (Left 0) 10 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) [ 0 10 ] - - location: 24 (remaining gas: 1039985.951 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) [ 10 0 ] - - location: 25 (remaining gas: 1039985.871 units remaining) + - location: 25 (just consumed gas: 0.080, remaining gas: 1039985.871 units remaining) [ None ] - - location: 26 (remaining gas: 1039985.861 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039985.861 units remaining) [ (Left None) ] - - location: 22 (remaining gas: 1039985.846 units remaining) + - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.846 units remaining) [ (Left None) ] - - location: 39 (remaining gas: 1039985.836 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.836 units remaining) [ {} (Left None) ] - - location: 41 (remaining gas: 1039985.826 units remaining) + - location: 41 (just consumed gas: 0.010, remaining gas: 1039985.826 units remaining) [ (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 53e2fc3c0856..eb6cf79ed47c 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, remaining gas: 1039985.991 units remaining) [ (Pair (Pair 10 (Left 10)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) [ (Pair 10 (Left 10)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) [ 10 (Left 10) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) [ (Left 10) 10 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) [ 10 10 ] - - location: 24 (remaining gas: 1039985.951 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) [ 10 10 ] - - location: 25 (remaining gas: 1039985.871 units remaining) + - location: 25 (just consumed gas: 0.080, remaining gas: 1039985.871 units remaining) [ (Some (Pair 1 0)) ] - - location: 26 (remaining gas: 1039985.861 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039985.861 units remaining) [ (Left (Some (Pair 1 0))) ] - - location: 22 (remaining gas: 1039985.846 units remaining) + - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.846 units remaining) [ (Left (Some (Pair 1 0))) ] - - location: 39 (remaining gas: 1039985.836 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.836 units remaining) [ {} (Left (Some (Pair 1 0))) ] - - location: 41 (remaining gas: 1039985.826 units remaining) + - location: 41 (just consumed gas: 0.010, remaining gas: 1039985.826 units remaining) [ (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 8b5ef419757f..eb47aabc69b3 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, remaining gas: 1039985.991 units remaining) [ (Pair (Pair 10 (Left 3)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) [ (Pair 10 (Left 3)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) [ 10 (Left 3) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) [ (Left 3) 10 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) [ 3 10 ] - - location: 24 (remaining gas: 1039985.951 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) [ 10 3 ] - - location: 25 (remaining gas: 1039985.871 units remaining) + - location: 25 (just consumed gas: 0.080, remaining gas: 1039985.871 units remaining) [ (Some (Pair 3 1)) ] - - location: 26 (remaining gas: 1039985.861 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039985.861 units remaining) [ (Left (Some (Pair 3 1))) ] - - location: 22 (remaining gas: 1039985.846 units remaining) + - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.846 units remaining) [ (Left (Some (Pair 3 1))) ] - - location: 39 (remaining gas: 1039985.836 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.836 units remaining) [ {} (Left (Some (Pair 3 1))) ] - - location: 41 (remaining gas: 1039985.826 units remaining) + - location: 41 (just consumed gas: 0.010, remaining gas: 1039985.826 units remaining) [ (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 750c2d14a7cd..48b9dc196e55 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, remaining gas: 1039985.991 units remaining) [ (Pair (Pair 10 (Right 0)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) [ (Pair 10 (Right 0)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) [ 10 (Right 0) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) [ (Right 0) 10 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) [ 0 10 ] - - location: 32 (remaining gas: 1039985.951 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) [ 10 0 ] - - location: 33 (remaining gas: 1039985.881 units remaining) + - location: 33 (just consumed gas: 0.070, remaining gas: 1039985.881 units remaining) [ None ] - - location: 34 (remaining gas: 1039985.871 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039985.871 units remaining) [ (Right None) ] - - location: 22 (remaining gas: 1039985.856 units remaining) + - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.856 units remaining) [ (Right None) ] - - location: 39 (remaining gas: 1039985.846 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.846 units remaining) [ {} (Right None) ] - - location: 41 (remaining gas: 1039985.836 units remaining) + - location: 41 (just consumed gas: 0.010, remaining gas: 1039985.836 units remaining) [ (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 a49fa18f3548..e2d9c53fec70 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, remaining gas: 1039985.991 units remaining) [ (Pair (Pair 10 (Right 10)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) [ (Pair 10 (Right 10)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) [ 10 (Right 10) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) [ (Right 10) 10 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) [ 10 10 ] - - location: 32 (remaining gas: 1039985.951 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) [ 10 10 ] - - location: 33 (remaining gas: 1039985.881 units remaining) + - location: 33 (just consumed gas: 0.070, remaining gas: 1039985.881 units remaining) [ (Some (Pair 1 0)) ] - - location: 34 (remaining gas: 1039985.871 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039985.871 units remaining) [ (Right (Some (Pair 1 0))) ] - - location: 22 (remaining gas: 1039985.856 units remaining) + - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.856 units remaining) [ (Right (Some (Pair 1 0))) ] - - location: 39 (remaining gas: 1039985.846 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.846 units remaining) [ {} (Right (Some (Pair 1 0))) ] - - location: 41 (remaining gas: 1039985.836 units remaining) + - location: 41 (just consumed gas: 0.010, remaining gas: 1039985.836 units remaining) [ (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 b6221db7ed1e..92efc7fd0ffa 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, remaining gas: 1039985.991 units remaining) [ (Pair (Pair 10 (Right 3)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) [ (Pair 10 (Right 3)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) [ 10 (Right 3) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) [ (Right 3) 10 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) [ 3 10 ] - - location: 32 (remaining gas: 1039985.951 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) [ 10 3 ] - - location: 33 (remaining gas: 1039985.881 units remaining) + - location: 33 (just consumed gas: 0.070, remaining gas: 1039985.881 units remaining) [ (Some (Pair 3 1)) ] - - location: 34 (remaining gas: 1039985.871 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039985.871 units remaining) [ (Right (Some (Pair 3 1))) ] - - location: 22 (remaining gas: 1039985.856 units remaining) + - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.856 units remaining) [ (Right (Some (Pair 3 1))) ] - - location: 39 (remaining gas: 1039985.846 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.846 units remaining) [ {} (Right (Some (Pair 3 1))) ] - - location: 41 (remaining gas: 1039985.836 units remaining) + - location: 41 (just consumed gas: 0.010, remaining gas: 1039985.836 units remaining) [ (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 dd8f1a4a9c97..772dcd8f493d 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, remaining gas: 1039985.991 units remaining) [ (Pair (Pair 5 (Right 10)) (Left None)) ] - - location: 19 (remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) [ (Pair 5 (Right 10)) ] - - location: 20 (remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) [ 5 (Right 10) ] - - location: 21 (remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) [ (Right 10) 5 ] - - location: 22 (remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) [ 10 5 ] - - location: 32 (remaining gas: 1039985.951 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) [ 5 10 ] - - location: 33 (remaining gas: 1039985.881 units remaining) + - location: 33 (just consumed gas: 0.070, remaining gas: 1039985.881 units remaining) [ (Some (Pair 0 5)) ] - - location: 34 (remaining gas: 1039985.871 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039985.871 units remaining) [ (Right (Some (Pair 0 5))) ] - - location: 22 (remaining gas: 1039985.856 units remaining) + - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.856 units remaining) [ (Right (Some (Pair 0 5))) ] - - location: 39 (remaining gas: 1039985.846 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.846 units remaining) [ {} (Right (Some (Pair 0 5))) ] - - location: 41 (remaining gas: 1039985.836 units remaining) + - location: 41 (just consumed gas: 0.010, remaining gas: 1039985.836 units remaining) [ (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 476819485d73..294d19add5d0 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, remaining gas: 1039986.865 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039986.855 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039986.855 units remaining) [ ] - - location: 8 (remaining gas: 1039986.845 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039986.845 units remaining) [ Unit ] - - location: 9 (remaining gas: 1039986.835 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039986.835 units remaining) [ 10 Unit ] - - location: 12 (remaining gas: 1039986.825 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039986.825 units remaining) [ (Left 10) Unit ] - - location: 14 (remaining gas: 1039986.338 units remaining) + - location: 14 (just consumed gas: 0.487, remaining gas: 1039986.338 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 15 (remaining gas: 1039986.328 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039986.328 units remaining) [ "lorem ipsum" 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 18 (remaining gas: 1039986.318 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039986.318 units remaining) [ (Right "lorem ipsum") 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 20 (remaining gas: 1039985.746 units remaining) + - location: 20 (just consumed gas: 0.572, remaining gas: 1039985.746 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 24 (remaining gas: 1039985.736 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.736 units remaining) [ {} 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 26 (remaining gas: 1039985.726 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039985.726 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d {} 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 27 (remaining gas: 1039985.716 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039985.716 units remaining) [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 28 (remaining gas: 1039985.706 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039985.706 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } Unit ] - - location: 29 (remaining gas: 1039985.696 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039985.696 units remaining) [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a ; 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } Unit ] - - location: 30 (remaining gas: 1039985.686 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039985.686 units remaining) [ (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 4cd059a3cfb3..9e6e82aa2521 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, remaining gas: 1039991.621 units remaining) [ (Pair Unit {}) ] - - location: 9 (remaining gas: 1039991.611 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039991.611 units remaining) [ ] - - location: 10 (remaining gas: 1039991.311 units remaining) + - location: 10 (just consumed gas: 0.300, remaining gas: 1039991.311 units remaining) [ {} ] - - location: 13 (remaining gas: 1039991.301 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.301 units remaining) [ "world" {} ] - - location: 16 (remaining gas: 1039991.291 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.291 units remaining) [ (Some "world") {} ] - - location: 17 (remaining gas: 1039991.281 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.281 units remaining) [ "hello" (Some "world") {} ] - - location: 20 (remaining gas: 1039991.191 units remaining) + - location: 20 (just consumed gas: 0.090, remaining gas: 1039991.191 units remaining) [ { Elt "hello" "world" } ] - - location: 21 (remaining gas: 1039991.181 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039991.181 units remaining) [ {} { Elt "hello" "world" } ] - - location: 23 (remaining gas: 1039991.171 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.171 units remaining) [ (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 a77441bee4e7..0fe584dafbfa 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, remaining gas: 1039989.099 units remaining) [ (Pair "" "?") ] - - location: 7 (remaining gas: 1039989.089 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.089 units remaining) [ "" ] - - location: 8 (remaining gas: 1039989.079 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.079 units remaining) [ { 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, remaining gas: 1039989.069 units remaining) [ "" { 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, remaining gas: 1039989.059 units remaining) [ "_abc" "" ] - - location: 15 (remaining gas: 1039989.049 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.049 units remaining) [ {} "_abc" "" ] - - location: 17 (remaining gas: 1039989.039 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.039 units remaining) [ "_abc" {} "" ] - - location: 18 (remaining gas: 1039989.029 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.029 units remaining) [ { "_abc" } "" ] - - location: 19 (remaining gas: 1039989.019 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.019 units remaining) [ "" { "_abc" } ] - - location: 20 (remaining gas: 1039989.009 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.009 units remaining) [ { "" ; "_abc" } ] - - location: 21 (remaining gas: 1039988.887 units remaining) + - location: 21 (just consumed gas: 0.122, remaining gas: 1039988.887 units remaining) [ "_abc" ] - - location: 23 (remaining gas: 1039988.862 units remaining) + - location: 23 (just consumed gas: 0.025, remaining gas: 1039988.862 units remaining) [ "_abc" ] - - location: 24 (remaining gas: 1039988.852 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.852 units remaining) [ {} "_abc" ] - - location: 26 (remaining gas: 1039988.842 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.842 units remaining) [ (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 caeccaefb8d9..113091532ae1 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, remaining gas: 1039989.059 units remaining) [ (Pair "test" "?") ] - - location: 7 (remaining gas: 1039989.049 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.049 units remaining) [ "test" ] - - location: 8 (remaining gas: 1039989.039 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.039 units remaining) [ { 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, remaining gas: 1039989.029 units remaining) [ "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, remaining gas: 1039989.019 units remaining) [ "_abc" "test" ] - - location: 15 (remaining gas: 1039989.009 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.009 units remaining) [ {} "_abc" "test" ] - - location: 17 (remaining gas: 1039988.999 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.999 units remaining) [ "_abc" {} "test" ] - - location: 18 (remaining gas: 1039988.989 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.989 units remaining) [ { "_abc" } "test" ] - - location: 19 (remaining gas: 1039988.979 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.979 units remaining) [ "test" { "_abc" } ] - - location: 20 (remaining gas: 1039988.969 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.969 units remaining) [ { "test" ; "_abc" } ] - - location: 21 (remaining gas: 1039988.845 units remaining) + - location: 21 (just consumed gas: 0.124, remaining gas: 1039988.845 units remaining) [ "test_abc" ] - - location: 23 (remaining gas: 1039988.820 units remaining) + - location: 23 (just consumed gas: 0.025, remaining gas: 1039988.820 units remaining) [ "test_abc" ] - - location: 24 (remaining gas: 1039988.810 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.810 units remaining) [ {} "test_abc" ] - - location: 26 (remaining gas: 1039988.800 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.800 units remaining) [ (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 1d078c94ef0b..c6b4b5b10e7f 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, remaining gas: 1039992.178 units remaining) [ (Pair { 1 ; 2 ; 3 ; 4 } 111) ] - - location: 8 (remaining gas: 1039992.168 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.168 units remaining) [ { 1 ; 2 ; 3 ; 4 } ] - - location: 9 (remaining gas: 1039992.168 units remaining) + - location: 9 (just consumed gas: 0, remaining gas: 1039992.168 units remaining) [ 1 { 2 ; 3 ; 4 } ] - - location: 11 (remaining gas: 1039992.168 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039992.168 units remaining) [ { 2 ; 3 ; 4 } ] - - location: 13 (remaining gas: 1039992.158 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.158 units remaining) [ ] - - location: 11 (remaining gas: 1039992.133 units remaining) + - location: 11 (just consumed gas: 0.025, remaining gas: 1039992.133 units remaining) [ 1 ] - - location: 9 (remaining gas: 1039992.118 units remaining) + - location: 9 (just consumed gas: 0.015, remaining gas: 1039992.118 units remaining) [ 1 ] - - location: 18 (remaining gas: 1039992.108 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.108 units remaining) [ {} 1 ] - - location: 20 (remaining gas: 1039992.098 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039992.098 units remaining) [ (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 85b4d1df418e..3b9ca911bab3 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, remaining gas: 1039992.478 units remaining) [ (Pair { 4 } 111) ] - - location: 8 (remaining gas: 1039992.468 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.468 units remaining) [ { 4 } ] - - location: 9 (remaining gas: 1039992.468 units remaining) + - location: 9 (just consumed gas: 0, remaining gas: 1039992.468 units remaining) [ 4 {} ] - - location: 11 (remaining gas: 1039992.468 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039992.468 units remaining) [ {} ] - - location: 13 (remaining gas: 1039992.458 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.458 units remaining) [ ] - - location: 11 (remaining gas: 1039992.433 units remaining) + - location: 11 (just consumed gas: 0.025, remaining gas: 1039992.433 units remaining) [ 4 ] - - location: 9 (remaining gas: 1039992.418 units remaining) + - location: 9 (just consumed gas: 0.015, remaining gas: 1039992.418 units remaining) [ 4 ] - - location: 18 (remaining gas: 1039992.408 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.408 units remaining) [ {} 4 ] - - location: 20 (remaining gas: 1039992.398 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039992.398 units remaining) [ (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 81e2ffbcef26..0a5f4ae1a3c1 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, remaining gas: 1039991.921 units remaining) [ (Pair "hello" (Some 4) {}) ] - - location: 13 (remaining gas: 1039991.911 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.911 units remaining) [ "hello" (Pair (Some 4) {}) ] - - location: 14 (remaining gas: 1039991.911 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039991.911 units remaining) [ (Pair (Some 4) {}) ] - - location: 16 (remaining gas: 1039991.901 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.901 units remaining) [ (Some 4) {} ] - - location: 14 (remaining gas: 1039991.876 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.876 units remaining) [ "hello" (Some 4) {} ] - - location: 17 (remaining gas: 1039991.781 units remaining) + - location: 17 (just consumed gas: 0.095, remaining gas: 1039991.781 units remaining) [ None { Elt "hello" 4 } ] - - location: 18 (remaining gas: 1039991.771 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.771 units remaining) [ (Pair None { Elt "hello" 4 }) ] - - location: 19 (remaining gas: 1039991.761 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.761 units remaining) [ {} (Pair None { Elt "hello" 4 }) ] - - location: 21 (remaining gas: 1039991.751 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039991.751 units remaining) [ (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 b517ef8f3eed..831dc4310cce 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, remaining gas: 1039991.597 units remaining) [ (Pair "hi" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039991.587 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.587 units remaining) [ "hi" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039991.587 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039991.587 units remaining) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039991.577 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.577 units remaining) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039991.552 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.552 units remaining) [ "hi" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039991.460 units remaining) + - location: 17 (just consumed gas: 0.092, remaining gas: 1039991.460 units remaining) [ None { Elt "hello" 4 ; Elt "hi" 5 } ] - - location: 18 (remaining gas: 1039991.450 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.450 units remaining) [ (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 19 (remaining gas: 1039991.440 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.440 units remaining) [ {} (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 21 (remaining gas: 1039991.430 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039991.430 units remaining) [ (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 eec6208f50f4..f046df540576 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, remaining gas: 1039991.567 units remaining) [ (Pair "hello" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039991.557 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.557 units remaining) [ "hello" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039991.557 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039991.557 units remaining) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039991.547 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.547 units remaining) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039991.522 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.522 units remaining) [ "hello" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039991.412 units remaining) + - location: 17 (just consumed gas: 0.110, remaining gas: 1039991.412 units remaining) [ (Some 4) { Elt "hello" 5 } ] - - location: 18 (remaining gas: 1039991.402 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.402 units remaining) [ (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 19 (remaining gas: 1039991.392 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.392 units remaining) [ {} (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 21 (remaining gas: 1039991.382 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039991.382 units remaining) [ (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 31b00c27ce77..2f8f8940d71b 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, remaining gas: 1039991.412 units remaining) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039991.402 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.402 units remaining) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039991.402 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039991.402 units remaining) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039991.392 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.392 units remaining) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039991.367 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.367 units remaining) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039991.278 units remaining) + - location: 17 (just consumed gas: 0.089, remaining gas: 1039991.278 units remaining) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039991.268 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.268 units remaining) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039991.258 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.258 units remaining) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039991.248 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039991.248 units remaining) [ (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 c42ecb1e50a5..f4f999052b6b 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, remaining gas: 1039991.412 units remaining) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039991.402 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.402 units remaining) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039991.402 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039991.402 units remaining) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039991.392 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.392 units remaining) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039991.367 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.367 units remaining) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039991.278 units remaining) + - location: 17 (just consumed gas: 0.089, remaining gas: 1039991.278 units remaining) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039991.268 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.268 units remaining) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039991.258 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.258 units remaining) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039991.248 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039991.248 units remaining) [ (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 ed5352a20c2d..1fa697d3ed51 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, remaining gas: 1039991.667 units remaining) [ (Pair "hello" None { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039991.657 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.657 units remaining) [ "hello" (Pair None { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039991.657 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039991.657 units remaining) [ (Pair None { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039991.647 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.647 units remaining) [ None { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039991.622 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.622 units remaining) [ "hello" None { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039991.512 units remaining) + - location: 17 (just consumed gas: 0.110, remaining gas: 1039991.512 units remaining) [ (Some 4) {} ] - - location: 18 (remaining gas: 1039991.502 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.502 units remaining) [ (Pair (Some 4) {}) ] - - location: 19 (remaining gas: 1039991.492 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.492 units remaining) [ {} (Pair (Some 4) {}) ] - - location: 21 (remaining gas: 1039991.482 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039991.482 units remaining) [ (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 8172e6bb8353..4e22387bb354 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, remaining gas: 1039992.021 units remaining) [ (Pair "hello" None {}) ] - - location: 13 (remaining gas: 1039992.011 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.011 units remaining) [ "hello" (Pair None {}) ] - - location: 14 (remaining gas: 1039992.011 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039992.011 units remaining) [ (Pair None {}) ] - - location: 16 (remaining gas: 1039992.001 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.001 units remaining) [ None {} ] - - location: 14 (remaining gas: 1039991.976 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.976 units remaining) [ "hello" None {} ] - - location: 17 (remaining gas: 1039991.881 units remaining) + - location: 17 (just consumed gas: 0.095, remaining gas: 1039991.881 units remaining) [ None {} ] - - location: 18 (remaining gas: 1039991.871 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.871 units remaining) [ (Pair None {}) ] - - location: 19 (remaining gas: 1039991.861 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.861 units remaining) [ {} (Pair None {}) ] - - location: 21 (remaining gas: 1039991.851 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039991.851 units remaining) [ (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 cb09030f04ce..0929825a299d 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, remaining gas: 1039988.811 units remaining) [ (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 12 (remaining gas: 1039988.801 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.801 units remaining) [ (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, remaining gas: 1039988.791 units remaining) [ "1" (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 14 (remaining gas: 1039988.791 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039988.791 units remaining) [ (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 17 (remaining gas: 1039988.781 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.781 units remaining) [ (Pair None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 18 (remaining gas: 1039988.771 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.771 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } ] - - location: 19 (remaining gas: 1039988.761 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.761 units remaining) [ { 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, remaining gas: 1039988.736 units remaining) [ "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, remaining gas: 1039988.653 units remaining) [ (Some "one") { Elt "1" "one" ; Elt "2" "two" } ] - - location: 21 (remaining gas: 1039988.643 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.643 units remaining) [ (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 22 (remaining gas: 1039988.633 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.633 units remaining) [ {} (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 24 (remaining gas: 1039988.623 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.623 units remaining) [ (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 730d90ae5e57..4171b2359758 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, remaining gas: 1039989.170 units remaining) [ (Pair "" None { Elt "hello" "hi" }) ] - - location: 12 (remaining gas: 1039989.160 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.160 units remaining) [ (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, remaining gas: 1039989.150 units remaining) [ "" (Pair "" None { Elt "hello" "hi" }) ] - - location: 14 (remaining gas: 1039989.150 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039989.150 units remaining) [ (Pair "" None { Elt "hello" "hi" }) ] - - location: 17 (remaining gas: 1039989.140 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.140 units remaining) [ (Pair None { Elt "hello" "hi" }) ] - - location: 18 (remaining gas: 1039989.130 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.130 units remaining) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039989.120 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.120 units remaining) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039989.095 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039989.095 units remaining) [ "" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039989.015 units remaining) + - location: 20 (just consumed gas: 0.080, remaining gas: 1039989.015 units remaining) [ None { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039989.005 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.005 units remaining) [ (Pair None { Elt "hello" "hi" }) ] - - location: 22 (remaining gas: 1039988.995 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.995 units remaining) [ {} (Pair None { Elt "hello" "hi" }) ] - - location: 24 (remaining gas: 1039988.985 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.985 units remaining) [ (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 3d01bada321f..1cde614c58d7 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, remaining gas: 1039989.120 units remaining) [ (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 12 (remaining gas: 1039989.110 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.110 units remaining) [ (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, remaining gas: 1039989.100 units remaining) [ "hello" (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 14 (remaining gas: 1039989.100 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039989.100 units remaining) [ (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 17 (remaining gas: 1039989.090 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.090 units remaining) [ (Pair None { Elt "hello" "hi" }) ] - - location: 18 (remaining gas: 1039989.080 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.080 units remaining) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039989.070 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.070 units remaining) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039989.045 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039989.045 units remaining) [ "hello" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039988.955 units remaining) + - location: 20 (just consumed gas: 0.090, remaining gas: 1039988.955 units remaining) [ (Some "hi") { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039988.945 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.945 units remaining) [ (Pair (Some "hi") { Elt "hello" "hi" }) ] - - location: 22 (remaining gas: 1039988.935 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.935 units remaining) [ {} (Pair (Some "hi") { Elt "hello" "hi" }) ] - - location: 24 (remaining gas: 1039988.925 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.925 units remaining) [ (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 13210cf9a3de..c27c05a585d6 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, remaining gas: 1039669.947 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" None) ] - - location: 8 (remaining gas: 1039669.937 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039669.937 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" ] - - location: 9 (remaining gas: 1039669.332 units remaining) + - location: 9 (just consumed gas: 0.605, remaining gas: 1039669.332 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 10 (remaining gas: 1039669.322 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039669.322 units remaining) [ (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") ] - - location: 11 (remaining gas: 1039669.312 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039669.312 units remaining) [ {} (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") ] - - location: 13 (remaining gas: 1039669.302 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039669.302 units remaining) [ (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 3bacacb8f0b3..30758490f1d9 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, remaining gas: 1039669.947 units remaining) [ (Pair "edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES" None) ] - - location: 8 (remaining gas: 1039669.937 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039669.937 units remaining) [ "edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES" ] - - location: 9 (remaining gas: 1039669.332 units remaining) + - location: 9 (just consumed gas: 0.605, remaining gas: 1039669.332 units remaining) [ "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k" ] - - location: 10 (remaining gas: 1039669.322 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039669.322 units remaining) [ (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") ] - - location: 11 (remaining gas: 1039669.312 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039669.312 units remaining) [ {} (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") ] - - location: 13 (remaining gas: 1039669.302 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039669.302 units remaining) [ (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 6ff38a758e72..5324804ff488 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, remaining gas: 1039995.071 units remaining) [ (Pair "12345" 0x00) ] - - location: 7 (remaining gas: 1039995.061 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.061 units remaining) [ "12345" ] - - location: 8 (remaining gas: 1039994.795 units remaining) + - location: 8 (just consumed gas: 0.266, remaining gas: 1039994.795 units remaining) [ 0x0501000000053132333435 ] - - location: 9 (remaining gas: 1039994.353 units remaining) + - location: 9 (just consumed gas: 0.442, remaining gas: 1039994.353 units remaining) [ 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f ] - - location: 10 (remaining gas: 1039994.343 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.343 units remaining) [ {} 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f ] - - location: 12 (remaining gas: 1039994.333 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.333 units remaining) [ (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 c05b7f5d1c18..f3b6ae008f02 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, remaining gas: 1039995.051 units remaining) [ (Pair "abcdefg" 0x00) ] - - location: 7 (remaining gas: 1039995.041 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.041 units remaining) [ "abcdefg" ] - - location: 8 (remaining gas: 1039994.755 units remaining) + - location: 8 (just consumed gas: 0.286, remaining gas: 1039994.755 units remaining) [ 0x05010000000761626364656667 ] - - location: 9 (remaining gas: 1039994.311 units remaining) + - location: 9 (just consumed gas: 0.444, remaining gas: 1039994.311 units remaining) [ 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e ] - - location: 10 (remaining gas: 1039994.301 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.301 units remaining) [ {} 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e ] - - location: 12 (remaining gas: 1039994.291 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.291 units remaining) [ (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 4647611158c0..007dd67f3f4c 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, remaining gas: 1039992.680 units remaining) [ (Pair False None) ] - - location: 8 (remaining gas: 1039992.670 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.670 units remaining) [ False ] - - location: 9 (remaining gas: 1039992.670 units remaining) + - location: 9 (just consumed gas: 0, remaining gas: 1039992.670 units remaining) [ ] - - location: 15 (remaining gas: 1039992.660 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039992.660 units remaining) [ False ] - - location: 9 (remaining gas: 1039992.645 units remaining) + - location: 9 (just consumed gas: 0.015, remaining gas: 1039992.645 units remaining) [ False ] - - location: 18 (remaining gas: 1039992.635 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.635 units remaining) [ (Some False) ] - - location: 19 (remaining gas: 1039992.625 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.625 units remaining) [ {} (Some False) ] - - location: 21 (remaining gas: 1039992.615 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039992.615 units remaining) [ (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 5b055e7ff3b3..5803312bb932 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, remaining gas: 1039992.680 units remaining) [ (Pair True None) ] - - location: 8 (remaining gas: 1039992.670 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.670 units remaining) [ True ] - - location: 9 (remaining gas: 1039992.670 units remaining) + - location: 9 (just consumed gas: 0, remaining gas: 1039992.670 units remaining) [ ] - - location: 11 (remaining gas: 1039992.660 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.660 units remaining) [ True ] - - location: 9 (remaining gas: 1039992.645 units remaining) + - location: 9 (just consumed gas: 0.015, remaining gas: 1039992.645 units remaining) [ True ] - - location: 18 (remaining gas: 1039992.635 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.635 units remaining) [ (Some True) ] - - location: 19 (remaining gas: 1039992.625 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.625 units remaining) [ {} (Some True) ] - - location: 21 (remaining gas: 1039992.615 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039992.615 units remaining) [ (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 3153a1f29020..558f445f6d6a 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, remaining gas: 1039993.581 units remaining) [ (Pair (Some "hello") "?") ] - - location: 8 (remaining gas: 1039993.571 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039993.571 units remaining) [ (Some "hello") ] - - location: 10 (remaining gas: 1039993.571 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039993.571 units remaining) [ "hello" ] - - location: 10 (remaining gas: 1039993.556 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.556 units remaining) [ "hello" ] - - location: 16 (remaining gas: 1039993.546 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.546 units remaining) [ {} "hello" ] - - location: 18 (remaining gas: 1039993.536 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039993.536 units remaining) [ (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 b3589386862e..b75ffd6cb5de 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, remaining gas: 1039993.745 units remaining) [ (Pair None "?") ] - - location: 8 (remaining gas: 1039993.735 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039993.735 units remaining) [ None ] - - location: 10 (remaining gas: 1039993.735 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039993.735 units remaining) [ ] - - location: 12 (remaining gas: 1039993.725 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.725 units remaining) [ "" ] - - location: 10 (remaining gas: 1039993.710 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.710 units remaining) [ "" ] - - location: 16 (remaining gas: 1039993.700 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.700 units remaining) [ {} "" ] - - location: 18 (remaining gas: 1039993.690 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039993.690 units remaining) [ (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 528b7f0cdd3f..7ba77f1e1eb1 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, remaining gas: 1039994.947 units remaining) [ (Pair 0 None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) [ 0 ] - - location: 9 (remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.927 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.917 units remaining) [ (Some 0) ] - - location: 11 (remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.907 units remaining) [ {} (Some 0) ] - - location: 13 (remaining gas: 1039994.897 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.897 units remaining) [ (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 f98dbdaf73e8..284ad93b4986 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, remaining gas: 1039994.947 units remaining) [ (Pair 1 None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) [ 1 ] - - location: 9 (remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.927 units remaining) [ 1 ] - - location: 10 (remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.917 units remaining) [ (Some 1) ] - - location: 11 (remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.907 units remaining) [ {} (Some 1) ] - - location: 13 (remaining gas: 1039994.897 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.897 units remaining) [ (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 5bc234f45062..007095d9a31b 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, remaining gas: 1039994.947 units remaining) [ (Pair 9999 None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) [ 9999 ] - - location: 9 (remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.927 units remaining) [ 9999 ] - - location: 10 (remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.917 units remaining) [ (Some 9999) ] - - location: 11 (remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.907 units remaining) [ {} (Some 9999) ] - - location: 13 (remaining gas: 1039994.897 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.897 units remaining) [ (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 2dcbb2e84fcf..2298ea8367dc 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, remaining gas: 1039994.947 units remaining) [ (Pair 0x48656c6c6f2c20776f726c6421 None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) [ 0x48656c6c6f2c20776f726c6421 ] - - location: 9 (remaining gas: 1039993.480 units remaining) + - location: 9 (just consumed gas: 1.457, remaining gas: 1039993.480 units remaining) [ 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4 ] - - location: 10 (remaining gas: 1039993.470 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.470 units remaining) [ (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) ] - - location: 11 (remaining gas: 1039993.460 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.460 units remaining) [ {} (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) ] - - location: 13 (remaining gas: 1039993.450 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.450 units remaining) [ (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 0880b5d620f2..241eff51aed6 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, remaining gas: 1039992.756 units remaining) [ (Pair (Left True) (Left "X")) ] - - location: 11 (remaining gas: 1039992.746 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.746 units remaining) [ (Left True) ] - - location: 12 (remaining gas: 1039992.746 units remaining) + - location: 12 (just consumed gas: 0, remaining gas: 1039992.746 units remaining) [ True ] - - location: 14 (remaining gas: 1039992.736 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.736 units remaining) [ (Right True) ] - - location: 12 (remaining gas: 1039992.721 units remaining) + - location: 12 (just consumed gas: 0.015, remaining gas: 1039992.721 units remaining) [ (Right True) ] - - location: 19 (remaining gas: 1039992.711 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.711 units remaining) [ {} (Right True) ] - - location: 21 (remaining gas: 1039992.701 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039992.701 units remaining) [ (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 40df8b2bddce..4431e2d318c7 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, remaining gas: 1039992.732 units remaining) [ (Pair (Right "a") (Left "X")) ] - - location: 11 (remaining gas: 1039992.722 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.722 units remaining) [ (Right "a") ] - - location: 12 (remaining gas: 1039992.722 units remaining) + - location: 12 (just consumed gas: 0, remaining gas: 1039992.722 units remaining) [ "a" ] - - location: 17 (remaining gas: 1039992.712 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.712 units remaining) [ (Left "a") ] - - location: 12 (remaining gas: 1039992.697 units remaining) + - location: 12 (just consumed gas: 0.015, remaining gas: 1039992.697 units remaining) [ (Left "a") ] - - location: 19 (remaining gas: 1039992.687 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.687 units remaining) [ {} (Left "a") ] - - location: 21 (remaining gas: 1039992.677 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039992.677 units remaining) [ (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 f51d352461b5..9c61e4648d80 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, remaining gas: 1039995.733 units remaining) [ (Pair Unit 111) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) [ 1 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) [ {} 1 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.693 units remaining) [ (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 4bc5be46f15d..a99c4f8a8560 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, remaining gas: 1039994.023 units remaining) [ (Pair { "d" ; "e" ; "f" } "abc") ] - - location: 8 (remaining gas: 1039994.013 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.013 units remaining) [ { "d" ; "e" ; "f" } "abc" ] - - location: 9 (remaining gas: 1039994.003 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.003 units remaining) [ "abc" { "d" ; "e" ; "f" } ] - - location: 10 (remaining gas: 1039993.993 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.993 units remaining) [ { "abc" ; "d" ; "e" ; "f" } ] - - location: 11 (remaining gas: 1039993.850 units remaining) + - location: 11 (just consumed gas: 0.143, remaining gas: 1039993.850 units remaining) [ "abcdef" ] - - location: 12 (remaining gas: 1039993.840 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.840 units remaining) [ {} "abcdef" ] - - location: 14 (remaining gas: 1039993.830 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.830 units remaining) [ (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 420b3c341608..e8d82a2653ad 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, remaining gas: 1039994.395 units remaining) [ (Pair {} "abc") ] - - location: 8 (remaining gas: 1039994.385 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.385 units remaining) [ {} "abc" ] - - location: 9 (remaining gas: 1039994.375 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.375 units remaining) [ "abc" {} ] - - location: 10 (remaining gas: 1039994.365 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.365 units remaining) [ { "abc" } ] - - location: 11 (remaining gas: 1039994.254 units remaining) + - location: 11 (just consumed gas: 0.111, remaining gas: 1039994.254 units remaining) [ "abc" ] - - location: 12 (remaining gas: 1039994.244 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.244 units remaining) [ {} "abc" ] - - location: 14 (remaining gas: 1039994.234 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.234 units remaining) [ (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 64452c23fedf..406f69b4145c 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, remaining gas: 1039994.139 units remaining) [ (Pair { 0x00 ; 0x11 ; 0x00 } 0x) ] - - location: 8 (remaining gas: 1039994.129 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.129 units remaining) [ { 0x00 ; 0x11 ; 0x00 } 0x ] - - location: 9 (remaining gas: 1039994.119 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.119 units remaining) [ 0x { 0x00 ; 0x11 ; 0x00 } ] - - location: 10 (remaining gas: 1039994.109 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.109 units remaining) [ { 0x ; 0x00 ; 0x11 ; 0x00 } ] - - location: 11 (remaining gas: 1039993.968 units remaining) + - location: 11 (just consumed gas: 0.141, remaining gas: 1039993.968 units remaining) [ 0x001100 ] - - location: 12 (remaining gas: 1039993.958 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.958 units remaining) [ {} 0x001100 ] - - location: 14 (remaining gas: 1039993.948 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.948 units remaining) [ (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 3ce3207614fa..a66ebe17ada9 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, remaining gas: 1039994.439 units remaining) [ (Pair {} 0x) ] - - location: 8 (remaining gas: 1039994.429 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.429 units remaining) [ {} 0x ] - - location: 9 (remaining gas: 1039994.419 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.419 units remaining) [ 0x {} ] - - location: 10 (remaining gas: 1039994.409 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.409 units remaining) [ { 0x } ] - - location: 11 (remaining gas: 1039994.299 units remaining) + - location: 11 (just consumed gas: 0.110, remaining gas: 1039994.299 units remaining) [ 0x ] - - location: 12 (remaining gas: 1039994.289 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.289 units remaining) [ {} 0x ] - - location: 14 (remaining gas: 1039994.279 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.279 units remaining) [ (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 e9918e4a3906..e19651e0f149 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, remaining gas: 1039994.139 units remaining) [ (Pair { 0xcd ; 0xef ; 0x00 } 0x00ab) ] - - location: 8 (remaining gas: 1039994.129 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.129 units remaining) [ { 0xcd ; 0xef ; 0x00 } 0x00ab ] - - location: 9 (remaining gas: 1039994.119 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.119 units remaining) [ 0x00ab { 0xcd ; 0xef ; 0x00 } ] - - location: 10 (remaining gas: 1039994.109 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.109 units remaining) [ { 0x00ab ; 0xcd ; 0xef ; 0x00 } ] - - location: 11 (remaining gas: 1039993.967 units remaining) + - location: 11 (just consumed gas: 0.142, remaining gas: 1039993.967 units remaining) [ 0x00abcdef00 ] - - location: 12 (remaining gas: 1039993.957 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.957 units remaining) [ {} 0x00abcdef00 ] - - location: 14 (remaining gas: 1039993.947 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.947 units remaining) [ (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 db5a8e45a7e5..db522c2bf296 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, remaining gas: 1039994.439 units remaining) [ (Pair {} 0xabcd) ] - - location: 8 (remaining gas: 1039994.429 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.429 units remaining) [ {} 0xabcd ] - - location: 9 (remaining gas: 1039994.419 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.419 units remaining) [ 0xabcd {} ] - - location: 10 (remaining gas: 1039994.409 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.409 units remaining) [ { 0xabcd } ] - - location: 11 (remaining gas: 1039994.298 units remaining) + - location: 11 (just consumed gas: 0.111, remaining gas: 1039994.298 units remaining) [ 0xabcd ] - - location: 12 (remaining gas: 1039994.288 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.288 units remaining) [ {} 0xabcd ] - - location: 14 (remaining gas: 1039994.278 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.278 units remaining) [ (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 11bff77493c7..b8523917950e 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, remaining gas: 1039995.439 units remaining) [ (Pair { "1" ; "2" ; "3" } { "" }) ] - - location: 9 (remaining gas: 1039995.429 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.429 units remaining) [ { "1" ; "2" ; "3" } ] - - location: 10 (remaining gas: 1039995.419 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.419 units remaining) [ {} { "1" ; "2" ; "3" } ] - - location: 12 (remaining gas: 1039995.409 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.409 units remaining) [ (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 18438064e4ee..efe1b29b389e 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, remaining gas: 1039995.439 units remaining) [ (Pair { "a" ; "b" ; "c" } { "" }) ] - - location: 9 (remaining gas: 1039995.429 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.429 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 10 (remaining gas: 1039995.419 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.419 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 12 (remaining gas: 1039995.409 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.409 units remaining) [ (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 00e458064f20..96fb4803b5de 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, remaining gas: 1039995.811 units remaining) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039995.801 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.801 units remaining) [ {} ] - - location: 10 (remaining gas: 1039995.791 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.791 units remaining) [ {} {} ] - - location: 12 (remaining gas: 1039995.781 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.781 units remaining) [ (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 74b96fdcddc2..02fa0d8c4328 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, remaining gas: 1039994.553 units remaining) [ (Pair { "1" ; "2" ; "3" } { "" }) ] - - location: 9 (remaining gas: 1039994.543 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.543 units remaining) [ { "1" ; "2" ; "3" } ] - - location: 10 (remaining gas: 1039994.543 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039994.543 units remaining) [ "1" ] - - location: 10 (remaining gas: 1039994.528 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039994.528 units remaining) [ "2" ] - - location: 10 (remaining gas: 1039994.513 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039994.513 units remaining) [ "3" ] - - location: 10 (remaining gas: 1039994.498 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039994.498 units remaining) [ { "1" ; "2" ; "3" } ] - - location: 12 (remaining gas: 1039994.488 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.488 units remaining) [ {} { "1" ; "2" ; "3" } ] - - location: 14 (remaining gas: 1039994.478 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.478 units remaining) [ (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 9c79d0a4a03b..87fca9558b41 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, remaining gas: 1039994.553 units remaining) [ (Pair { "a" ; "b" ; "c" } { "" }) ] - - location: 9 (remaining gas: 1039994.543 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.543 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 10 (remaining gas: 1039994.543 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039994.543 units remaining) [ "a" ] - - location: 10 (remaining gas: 1039994.528 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039994.528 units remaining) [ "b" ] - - location: 10 (remaining gas: 1039994.513 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039994.513 units remaining) [ "c" ] - - location: 10 (remaining gas: 1039994.498 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039994.498 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 12 (remaining gas: 1039994.488 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.488 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 14 (remaining gas: 1039994.478 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.478 units remaining) [ (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 fd3c7d637bc9..4862a5a8e6f7 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, remaining gas: 1039994.925 units remaining) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039994.915 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.915 units remaining) [ {} ] - - location: 10 (remaining gas: 1039994.915 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039994.915 units remaining) [ {} ] - - location: 12 (remaining gas: 1039994.905 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.905 units remaining) [ {} {} ] - - location: 14 (remaining gas: 1039994.895 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.895 units remaining) [ (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 d9079641a59b..b7c92f80994a 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, remaining gas: 1039992.998 units remaining) [ (Pair { 10 ; 2 ; 1 } 0) ] - - location: 8 (remaining gas: 1039992.988 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.988 units remaining) [ { 10 ; 2 ; 1 } ] - - location: 9 (remaining gas: 1039992.978 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039992.978 units remaining) [ 1 { 10 ; 2 ; 1 } ] - - location: 12 (remaining gas: 1039992.968 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.968 units remaining) [ { 10 ; 2 ; 1 } 1 ] - - location: 13 (remaining gas: 1039992.968 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039992.968 units remaining) [ 10 1 ] - - location: 15 (remaining gas: 1039992.909 units remaining) + - location: 15 (just consumed gas: 0.059, remaining gas: 1039992.909 units remaining) [ 10 ] - - location: 13 (remaining gas: 1039992.894 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.894 units remaining) [ 2 10 ] - - location: 15 (remaining gas: 1039992.835 units remaining) + - location: 15 (just consumed gas: 0.059, remaining gas: 1039992.835 units remaining) [ 20 ] - - location: 13 (remaining gas: 1039992.820 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.820 units remaining) [ 1 20 ] - - location: 15 (remaining gas: 1039992.761 units remaining) + - location: 15 (just consumed gas: 0.059, remaining gas: 1039992.761 units remaining) [ 20 ] - - location: 13 (remaining gas: 1039992.746 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.746 units remaining) [ 20 ] - - location: 16 (remaining gas: 1039992.736 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.736 units remaining) [ {} 20 ] - - location: 18 (remaining gas: 1039992.726 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.726 units remaining) [ (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 4640acf7c0af..df1e478f5b00 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, remaining gas: 1039992.998 units remaining) [ (Pair { 3 ; 6 ; 9 } 0) ] - - location: 8 (remaining gas: 1039992.988 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.988 units remaining) [ { 3 ; 6 ; 9 } ] - - location: 9 (remaining gas: 1039992.978 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039992.978 units remaining) [ 1 { 3 ; 6 ; 9 } ] - - location: 12 (remaining gas: 1039992.968 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.968 units remaining) [ { 3 ; 6 ; 9 } 1 ] - - location: 13 (remaining gas: 1039992.968 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039992.968 units remaining) [ 3 1 ] - - location: 15 (remaining gas: 1039992.909 units remaining) + - location: 15 (just consumed gas: 0.059, remaining gas: 1039992.909 units remaining) [ 3 ] - - location: 13 (remaining gas: 1039992.894 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.894 units remaining) [ 6 3 ] - - location: 15 (remaining gas: 1039992.835 units remaining) + - location: 15 (just consumed gas: 0.059, remaining gas: 1039992.835 units remaining) [ 18 ] - - location: 13 (remaining gas: 1039992.820 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.820 units remaining) [ 9 18 ] - - location: 15 (remaining gas: 1039992.761 units remaining) + - location: 15 (just consumed gas: 0.059, remaining gas: 1039992.761 units remaining) [ 162 ] - - location: 13 (remaining gas: 1039992.746 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.746 units remaining) [ 162 ] - - location: 16 (remaining gas: 1039992.736 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.736 units remaining) [ {} 162 ] - - location: 18 (remaining gas: 1039992.726 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.726 units remaining) [ (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 9dbc5fc218c2..bc8aa74fd338 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, remaining gas: 1039987.659 units remaining) [ (Pair { 1 ; 1 ; 1 ; 1 } { 0 }) ] - - location: 9 (remaining gas: 1039987.649 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039987.649 units remaining) [ { 1 ; 1 ; 1 ; 1 } ] - - location: 10 (remaining gas: 1039987.639 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039987.639 units remaining) [ 0 { 1 ; 1 ; 1 ; 1 } ] - - location: 13 (remaining gas: 1039987.629 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039987.629 units remaining) [ { 1 ; 1 ; 1 ; 1 } 0 ] - - location: 14 (remaining gas: 1039987.629 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039987.629 units remaining) [ 1 0 ] - - location: 16 (remaining gas: 1039987.629 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039987.629 units remaining) [ 0 ] - - location: 18 (remaining gas: 1039987.619 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.619 units remaining) [ 0 0 ] - - location: 16 (remaining gas: 1039987.594 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.594 units remaining) [ 1 0 0 ] - - location: 19 (remaining gas: 1039987.559 units remaining) + - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.559 units remaining) [ 1 0 ] - - location: 20 (remaining gas: 1039987.559 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039987.559 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039987.549 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.549 units remaining) [ 1 0 ] - - location: 25 (remaining gas: 1039987.514 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.514 units remaining) [ 1 ] - - location: 20 (remaining gas: 1039987.489 units remaining) + - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.489 units remaining) [ 1 1 ] - - location: 14 (remaining gas: 1039987.474 units remaining) + - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.474 units remaining) [ 1 1 ] - - location: 16 (remaining gas: 1039987.474 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039987.474 units remaining) [ 1 ] - - location: 18 (remaining gas: 1039987.464 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.464 units remaining) [ 1 1 ] - - location: 16 (remaining gas: 1039987.439 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.439 units remaining) [ 1 1 1 ] - - location: 19 (remaining gas: 1039987.404 units remaining) + - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.404 units remaining) [ 2 1 ] - - location: 20 (remaining gas: 1039987.404 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039987.404 units remaining) [ 1 ] - - location: 22 (remaining gas: 1039987.394 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.394 units remaining) [ 1 1 ] - - location: 25 (remaining gas: 1039987.359 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.359 units remaining) [ 2 ] - - location: 20 (remaining gas: 1039987.334 units remaining) + - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.334 units remaining) [ 2 2 ] - - location: 14 (remaining gas: 1039987.319 units remaining) + - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.319 units remaining) [ 1 2 ] - - location: 16 (remaining gas: 1039987.319 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039987.319 units remaining) [ 2 ] - - location: 18 (remaining gas: 1039987.309 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.309 units remaining) [ 2 2 ] - - location: 16 (remaining gas: 1039987.284 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.284 units remaining) [ 1 2 2 ] - - location: 19 (remaining gas: 1039987.249 units remaining) + - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.249 units remaining) [ 3 2 ] - - location: 20 (remaining gas: 1039987.249 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039987.249 units remaining) [ 2 ] - - location: 22 (remaining gas: 1039987.239 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.239 units remaining) [ 1 2 ] - - location: 25 (remaining gas: 1039987.204 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.204 units remaining) [ 3 ] - - location: 20 (remaining gas: 1039987.179 units remaining) + - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.179 units remaining) [ 3 3 ] - - location: 14 (remaining gas: 1039987.164 units remaining) + - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.164 units remaining) [ 1 3 ] - - location: 16 (remaining gas: 1039987.164 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039987.164 units remaining) [ 3 ] - - location: 18 (remaining gas: 1039987.154 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.154 units remaining) [ 3 3 ] - - location: 16 (remaining gas: 1039987.129 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.129 units remaining) [ 1 3 3 ] - - location: 19 (remaining gas: 1039987.094 units remaining) + - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.094 units remaining) [ 4 3 ] - - location: 20 (remaining gas: 1039987.094 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039987.094 units remaining) [ 3 ] - - location: 22 (remaining gas: 1039987.084 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.084 units remaining) [ 1 3 ] - - location: 25 (remaining gas: 1039987.049 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.049 units remaining) [ 4 ] - - location: 20 (remaining gas: 1039987.024 units remaining) + - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.024 units remaining) [ 4 4 ] - - location: 14 (remaining gas: 1039987.009 units remaining) + - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.009 units remaining) [ { 1 ; 2 ; 3 ; 4 } 4 ] - - location: 26 (remaining gas: 1039986.999 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039986.999 units remaining) [ {} { 1 ; 2 ; 3 ; 4 } 4 ] - - location: 28 (remaining gas: 1039986.989 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039986.989 units remaining) [ (Pair {} { 1 ; 2 ; 3 ; 4 }) 4 ] - - location: 29 (remaining gas: 1039986.989 units remaining) + - location: 29 (just consumed gas: 0, remaining gas: 1039986.989 units remaining) [ 4 ] - - location: 31 (remaining gas: 1039986.979 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039986.979 units remaining) [ ] - - location: 29 (remaining gas: 1039986.954 units remaining) + - location: 29 (just consumed gas: 0.025, remaining gas: 1039986.954 units remaining) [ (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 50fb72f0496e..bd2b8702d368 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, remaining gas: 1039987.659 units remaining) [ (Pair { 1 ; 2 ; 3 ; 0 } { 0 }) ] - - location: 9 (remaining gas: 1039987.649 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039987.649 units remaining) [ { 1 ; 2 ; 3 ; 0 } ] - - location: 10 (remaining gas: 1039987.639 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039987.639 units remaining) [ 0 { 1 ; 2 ; 3 ; 0 } ] - - location: 13 (remaining gas: 1039987.629 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039987.629 units remaining) [ { 1 ; 2 ; 3 ; 0 } 0 ] - - location: 14 (remaining gas: 1039987.629 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039987.629 units remaining) [ 1 0 ] - - location: 16 (remaining gas: 1039987.629 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039987.629 units remaining) [ 0 ] - - location: 18 (remaining gas: 1039987.619 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.619 units remaining) [ 0 0 ] - - location: 16 (remaining gas: 1039987.594 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.594 units remaining) [ 1 0 0 ] - - location: 19 (remaining gas: 1039987.559 units remaining) + - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.559 units remaining) [ 1 0 ] - - location: 20 (remaining gas: 1039987.559 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039987.559 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039987.549 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.549 units remaining) [ 1 0 ] - - location: 25 (remaining gas: 1039987.514 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.514 units remaining) [ 1 ] - - location: 20 (remaining gas: 1039987.489 units remaining) + - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.489 units remaining) [ 1 1 ] - - location: 14 (remaining gas: 1039987.474 units remaining) + - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.474 units remaining) [ 2 1 ] - - location: 16 (remaining gas: 1039987.474 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039987.474 units remaining) [ 1 ] - - location: 18 (remaining gas: 1039987.464 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.464 units remaining) [ 1 1 ] - - location: 16 (remaining gas: 1039987.439 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.439 units remaining) [ 2 1 1 ] - - location: 19 (remaining gas: 1039987.404 units remaining) + - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.404 units remaining) [ 3 1 ] - - location: 20 (remaining gas: 1039987.404 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039987.404 units remaining) [ 1 ] - - location: 22 (remaining gas: 1039987.394 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.394 units remaining) [ 1 1 ] - - location: 25 (remaining gas: 1039987.359 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.359 units remaining) [ 2 ] - - location: 20 (remaining gas: 1039987.334 units remaining) + - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.334 units remaining) [ 3 2 ] - - location: 14 (remaining gas: 1039987.319 units remaining) + - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.319 units remaining) [ 3 2 ] - - location: 16 (remaining gas: 1039987.319 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039987.319 units remaining) [ 2 ] - - location: 18 (remaining gas: 1039987.309 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.309 units remaining) [ 2 2 ] - - location: 16 (remaining gas: 1039987.284 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.284 units remaining) [ 3 2 2 ] - - location: 19 (remaining gas: 1039987.249 units remaining) + - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.249 units remaining) [ 5 2 ] - - location: 20 (remaining gas: 1039987.249 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039987.249 units remaining) [ 2 ] - - location: 22 (remaining gas: 1039987.239 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.239 units remaining) [ 1 2 ] - - location: 25 (remaining gas: 1039987.204 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.204 units remaining) [ 3 ] - - location: 20 (remaining gas: 1039987.179 units remaining) + - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.179 units remaining) [ 5 3 ] - - location: 14 (remaining gas: 1039987.164 units remaining) + - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.164 units remaining) [ 0 3 ] - - location: 16 (remaining gas: 1039987.164 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039987.164 units remaining) [ 3 ] - - location: 18 (remaining gas: 1039987.154 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.154 units remaining) [ 3 3 ] - - location: 16 (remaining gas: 1039987.129 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.129 units remaining) [ 0 3 3 ] - - location: 19 (remaining gas: 1039987.094 units remaining) + - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.094 units remaining) [ 3 3 ] - - location: 20 (remaining gas: 1039987.094 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039987.094 units remaining) [ 3 ] - - location: 22 (remaining gas: 1039987.084 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.084 units remaining) [ 1 3 ] - - location: 25 (remaining gas: 1039987.049 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.049 units remaining) [ 4 ] - - location: 20 (remaining gas: 1039987.024 units remaining) + - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.024 units remaining) [ 3 4 ] - - location: 14 (remaining gas: 1039987.009 units remaining) + - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.009 units remaining) [ { 1 ; 3 ; 5 ; 3 } 4 ] - - location: 26 (remaining gas: 1039986.999 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039986.999 units remaining) [ {} { 1 ; 3 ; 5 ; 3 } 4 ] - - location: 28 (remaining gas: 1039986.989 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039986.989 units remaining) [ (Pair {} { 1 ; 3 ; 5 ; 3 }) 4 ] - - location: 29 (remaining gas: 1039986.989 units remaining) + - location: 29 (just consumed gas: 0, remaining gas: 1039986.989 units remaining) [ 4 ] - - location: 31 (remaining gas: 1039986.979 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039986.979 units remaining) [ ] - - location: 29 (remaining gas: 1039986.954 units remaining) + - location: 29 (just consumed gas: 0.025, remaining gas: 1039986.954 units remaining) [ (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 b7840145e91e..40634f478857 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, remaining gas: 1039988.059 units remaining) [ (Pair {} { 0 }) ] - - location: 9 (remaining gas: 1039988.049 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039988.049 units remaining) [ {} ] - - location: 10 (remaining gas: 1039988.039 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039988.039 units remaining) [ 0 {} ] - - location: 13 (remaining gas: 1039988.029 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039988.029 units remaining) [ {} 0 ] - - location: 14 (remaining gas: 1039988.029 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039988.029 units remaining) [ {} 0 ] - - location: 26 (remaining gas: 1039988.019 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.019 units remaining) [ {} {} 0 ] - - location: 28 (remaining gas: 1039988.009 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.009 units remaining) [ (Pair {} {}) 0 ] - - location: 29 (remaining gas: 1039988.009 units remaining) + - location: 29 (just consumed gas: 0, remaining gas: 1039988.009 units remaining) [ 0 ] - - location: 31 (remaining gas: 1039987.999 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039987.999 units remaining) [ ] - - location: 29 (remaining gas: 1039987.974 units remaining) + - location: 29 (just consumed gas: 0.025, remaining gas: 1039987.974 units remaining) [ (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 0a37ca66348c..97e1f138fc9a 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, remaining gas: 1039995.005 units remaining) [ (Pair { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } 111) ] - - location: 8 (remaining gas: 1039994.995 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.995 units remaining) [ { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } ] - - location: 9 (remaining gas: 1039994.985 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.985 units remaining) [ 6 ] - - location: 10 (remaining gas: 1039994.975 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.975 units remaining) [ {} 6 ] - - location: 12 (remaining gas: 1039994.965 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.965 units remaining) [ (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 f31a205d5514..7fec6773aab6 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, remaining gas: 1039995.305 units remaining) [ (Pair { 1 ; 2 ; 3 } 111) ] - - location: 8 (remaining gas: 1039995.295 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.295 units remaining) [ { 1 ; 2 ; 3 } ] - - location: 9 (remaining gas: 1039995.285 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.285 units remaining) [ 3 ] - - location: 10 (remaining gas: 1039995.275 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.275 units remaining) [ {} 3 ] - - location: 12 (remaining gas: 1039995.265 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.265 units remaining) [ (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 eaece68b2f26..4d9616927750 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, remaining gas: 1039995.505 units remaining) [ (Pair { 1 } 111) ] - - location: 8 (remaining gas: 1039995.495 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.495 units remaining) [ { 1 } ] - - location: 9 (remaining gas: 1039995.485 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.485 units remaining) [ 1 ] - - location: 10 (remaining gas: 1039995.475 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.475 units remaining) [ {} 1 ] - - location: 12 (remaining gas: 1039995.465 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.465 units remaining) [ (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 efbc5ee6f8d4..d8e9727f4b33 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, remaining gas: 1039995.605 units remaining) [ (Pair {} 111) ] - - location: 8 (remaining gas: 1039995.595 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.595 units remaining) [ {} ] - - location: 9 (remaining gas: 1039995.585 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.585 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039995.575 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.575 units remaining) [ {} 0 ] - - location: 12 (remaining gas: 1039995.565 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.565 units remaining) [ (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 b204aae5b070..d40ecc31f3b0 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, remaining gas: 1039982.365 units remaining) [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (remaining gas: 1039982.355 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039982.355 units remaining) [ { "c" ; "b" ; "a" } ] - - location: 10 (remaining gas: 1039982.345 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039982.345 units remaining) [ {} { "c" ; "b" ; "a" } ] - - location: 12 (remaining gas: 1039982.335 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039982.335 units remaining) [ { "c" ; "b" ; "a" } {} ] - - location: 13 (remaining gas: 1039982.325 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039982.325 units remaining) [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 14 (remaining gas: 1039982.315 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039982.315 units remaining) [ (Left (Pair { "c" ; "b" ; "a" } {})) ] - - location: 41 (remaining gas: 1039982.315 units remaining) + - location: 41 (just consumed gas: 0, remaining gas: 1039982.315 units remaining) [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 19 (remaining gas: 1039982.305 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039982.305 units remaining) [ (Pair { "c" ; "b" ; "a" } {}) (Pair { "c" ; "b" ; "a" } {}) ] - - location: 20 (remaining gas: 1039982.295 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039982.295 units remaining) [ { "c" ; "b" ; "a" } (Pair { "c" ; "b" ; "a" } {}) ] - - location: 21 (remaining gas: 1039982.295 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039982.295 units remaining) [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 23 (remaining gas: 1039982.285 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039982.285 units remaining) [ {} ] - - location: 21 (remaining gas: 1039982.260 units remaining) + - location: 21 (just consumed gas: 0.025, remaining gas: 1039982.260 units remaining) [ { "c" ; "b" ; "a" } {} ] - - location: 24 (remaining gas: 1039982.260 units remaining) + - location: 24 (just consumed gas: 0, remaining gas: 1039982.260 units remaining) [ "c" { "b" ; "a" } {} ] - - location: 26 (remaining gas: 1039982.250 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039982.250 units remaining) [ { "b" ; "a" } "c" {} ] - - location: 27 (remaining gas: 1039982.250 units remaining) + - location: 27 (just consumed gas: 0, remaining gas: 1039982.250 units remaining) [ "c" {} ] - - location: 29 (remaining gas: 1039982.240 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039982.240 units remaining) [ { "c" } ] - - location: 27 (remaining gas: 1039982.215 units remaining) + - location: 27 (just consumed gas: 0.025, remaining gas: 1039982.215 units remaining) [ { "b" ; "a" } { "c" } ] - - location: 30 (remaining gas: 1039982.205 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039982.205 units remaining) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 31 (remaining gas: 1039982.195 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039982.195 units remaining) [ (Left (Pair { "b" ; "a" } { "c" })) ] - - location: 24 (remaining gas: 1039982.180 units remaining) + - location: 24 (just consumed gas: 0.015, remaining gas: 1039982.180 units remaining) [ (Left (Pair { "b" ; "a" } { "c" })) ] - - location: 41 (remaining gas: 1039982.165 units remaining) + - location: 41 (just consumed gas: 0.015, remaining gas: 1039982.165 units remaining) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 19 (remaining gas: 1039982.155 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039982.155 units remaining) [ (Pair { "b" ; "a" } { "c" }) (Pair { "b" ; "a" } { "c" }) ] - - location: 20 (remaining gas: 1039982.145 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039982.145 units remaining) [ { "b" ; "a" } (Pair { "b" ; "a" } { "c" }) ] - - location: 21 (remaining gas: 1039982.145 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039982.145 units remaining) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 23 (remaining gas: 1039982.135 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039982.135 units remaining) [ { "c" } ] - - location: 21 (remaining gas: 1039982.110 units remaining) + - location: 21 (just consumed gas: 0.025, remaining gas: 1039982.110 units remaining) [ { "b" ; "a" } { "c" } ] - - location: 24 (remaining gas: 1039982.110 units remaining) + - location: 24 (just consumed gas: 0, remaining gas: 1039982.110 units remaining) [ "b" { "a" } { "c" } ] - - location: 26 (remaining gas: 1039982.100 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039982.100 units remaining) [ { "a" } "b" { "c" } ] - - location: 27 (remaining gas: 1039982.100 units remaining) + - location: 27 (just consumed gas: 0, remaining gas: 1039982.100 units remaining) [ "b" { "c" } ] - - location: 29 (remaining gas: 1039982.090 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039982.090 units remaining) [ { "b" ; "c" } ] - - location: 27 (remaining gas: 1039982.065 units remaining) + - location: 27 (just consumed gas: 0.025, remaining gas: 1039982.065 units remaining) [ { "a" } { "b" ; "c" } ] - - location: 30 (remaining gas: 1039982.055 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039982.055 units remaining) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 31 (remaining gas: 1039982.045 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039982.045 units remaining) [ (Left (Pair { "a" } { "b" ; "c" })) ] - - location: 24 (remaining gas: 1039982.030 units remaining) + - location: 24 (just consumed gas: 0.015, remaining gas: 1039982.030 units remaining) [ (Left (Pair { "a" } { "b" ; "c" })) ] - - location: 41 (remaining gas: 1039982.015 units remaining) + - location: 41 (just consumed gas: 0.015, remaining gas: 1039982.015 units remaining) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 19 (remaining gas: 1039982.005 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039982.005 units remaining) [ (Pair { "a" } { "b" ; "c" }) (Pair { "a" } { "b" ; "c" }) ] - - location: 20 (remaining gas: 1039981.995 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039981.995 units remaining) [ { "a" } (Pair { "a" } { "b" ; "c" }) ] - - location: 21 (remaining gas: 1039981.995 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039981.995 units remaining) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 23 (remaining gas: 1039981.985 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039981.985 units remaining) [ { "b" ; "c" } ] - - location: 21 (remaining gas: 1039981.960 units remaining) + - location: 21 (just consumed gas: 0.025, remaining gas: 1039981.960 units remaining) [ { "a" } { "b" ; "c" } ] - - location: 24 (remaining gas: 1039981.960 units remaining) + - location: 24 (just consumed gas: 0, remaining gas: 1039981.960 units remaining) [ "a" {} { "b" ; "c" } ] - - location: 26 (remaining gas: 1039981.950 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039981.950 units remaining) [ {} "a" { "b" ; "c" } ] - - location: 27 (remaining gas: 1039981.950 units remaining) + - location: 27 (just consumed gas: 0, remaining gas: 1039981.950 units remaining) [ "a" { "b" ; "c" } ] - - location: 29 (remaining gas: 1039981.940 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039981.940 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 27 (remaining gas: 1039981.915 units remaining) + - location: 27 (just consumed gas: 0.025, remaining gas: 1039981.915 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 30 (remaining gas: 1039981.905 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039981.905 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 31 (remaining gas: 1039981.895 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039981.895 units remaining) [ (Left (Pair {} { "a" ; "b" ; "c" })) ] - - location: 24 (remaining gas: 1039981.880 units remaining) + - location: 24 (just consumed gas: 0.015, remaining gas: 1039981.880 units remaining) [ (Left (Pair {} { "a" ; "b" ; "c" })) ] - - location: 41 (remaining gas: 1039981.865 units remaining) + - location: 41 (just consumed gas: 0.015, remaining gas: 1039981.865 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 19 (remaining gas: 1039981.855 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039981.855 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) (Pair {} { "a" ; "b" ; "c" }) ] - - location: 20 (remaining gas: 1039981.845 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039981.845 units remaining) [ {} (Pair {} { "a" ; "b" ; "c" }) ] - - location: 21 (remaining gas: 1039981.845 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039981.845 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 23 (remaining gas: 1039981.835 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039981.835 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 21 (remaining gas: 1039981.810 units remaining) + - location: 21 (just consumed gas: 0.025, remaining gas: 1039981.810 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 24 (remaining gas: 1039981.810 units remaining) + - location: 24 (just consumed gas: 0, remaining gas: 1039981.810 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 35 (remaining gas: 1039981.800 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039981.800 units remaining) [ (Right { "a" ; "b" ; "c" }) ] - - location: 24 (remaining gas: 1039981.785 units remaining) + - location: 24 (just consumed gas: 0.015, remaining gas: 1039981.785 units remaining) [ (Right { "a" ; "b" ; "c" }) ] - - location: 41 (remaining gas: 1039981.770 units remaining) + - location: 41 (just consumed gas: 0.015, remaining gas: 1039981.770 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 41 (remaining gas: 1039981.760 units remaining) + - location: 41 (just consumed gas: 0.010, remaining gas: 1039981.760 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 43 (remaining gas: 1039981.750 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039981.750 units remaining) [ (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 21f748b2691c..c02da3bd9338 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, remaining gas: 1039982.737 units remaining) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039982.727 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039982.727 units remaining) [ {} ] - - location: 10 (remaining gas: 1039982.717 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039982.717 units remaining) [ {} {} ] - - location: 12 (remaining gas: 1039982.707 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039982.707 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039982.697 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039982.697 units remaining) [ (Pair {} {}) ] - - location: 14 (remaining gas: 1039982.687 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039982.687 units remaining) [ (Left (Pair {} {})) ] - - location: 41 (remaining gas: 1039982.687 units remaining) + - location: 41 (just consumed gas: 0, remaining gas: 1039982.687 units remaining) [ (Pair {} {}) ] - - location: 19 (remaining gas: 1039982.677 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039982.677 units remaining) [ (Pair {} {}) (Pair {} {}) ] - - location: 20 (remaining gas: 1039982.667 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039982.667 units remaining) [ {} (Pair {} {}) ] - - location: 21 (remaining gas: 1039982.667 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039982.667 units remaining) [ (Pair {} {}) ] - - location: 23 (remaining gas: 1039982.657 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039982.657 units remaining) [ {} ] - - location: 21 (remaining gas: 1039982.632 units remaining) + - location: 21 (just consumed gas: 0.025, remaining gas: 1039982.632 units remaining) [ {} {} ] - - location: 24 (remaining gas: 1039982.632 units remaining) + - location: 24 (just consumed gas: 0, remaining gas: 1039982.632 units remaining) [ {} ] - - location: 35 (remaining gas: 1039982.622 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039982.622 units remaining) [ (Right {}) ] - - location: 24 (remaining gas: 1039982.607 units remaining) + - location: 24 (just consumed gas: 0.015, remaining gas: 1039982.607 units remaining) [ (Right {}) ] - - location: 41 (remaining gas: 1039982.592 units remaining) + - location: 41 (just consumed gas: 0.015, remaining gas: 1039982.592 units remaining) [ {} ] - - location: 41 (remaining gas: 1039982.582 units remaining) + - location: 41 (just consumed gas: 0.010, remaining gas: 1039982.582 units remaining) [ {} {} ] - - location: 43 (remaining gas: 1039982.572 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039982.572 units remaining) [ (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 5031c8a46a2b..075f11973ad7 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, remaining gas: 1039994.969 units remaining) [ (Pair { Elt 0 0 ; Elt 3 4 } {}) ] - - location: 11 (remaining gas: 1039994.959 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.959 units remaining) [ { Elt 0 0 ; Elt 3 4 } ] - - location: 12 (remaining gas: 1039994.949 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.949 units remaining) [ {} { Elt 0 0 ; Elt 3 4 } ] - - location: 14 (remaining gas: 1039994.939 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.939 units remaining) [ (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 3a89e03bfc44..1932bf973c05 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, remaining gas: 1039995.284 units remaining) [ (Pair { Elt 0 0 } {}) ] - - location: 11 (remaining gas: 1039995.274 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.274 units remaining) [ { Elt 0 0 } ] - - location: 12 (remaining gas: 1039995.264 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.264 units remaining) [ {} { Elt 0 0 } ] - - location: 14 (remaining gas: 1039995.254 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039995.254 units remaining) [ (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 2a083aa4058a..2ab899757aff 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, remaining gas: 1039995.284 units remaining) [ (Pair { Elt 0 1 } {}) ] - - location: 11 (remaining gas: 1039995.274 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.274 units remaining) [ { Elt 0 1 } ] - - location: 12 (remaining gas: 1039995.264 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.264 units remaining) [ {} { Elt 0 1 } ] - - location: 14 (remaining gas: 1039995.254 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039995.254 units remaining) [ (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 63f2dff238a6..e8ce492d72d9 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, remaining gas: 1039981.384 units remaining) [ (Pair { Elt 0 100 ; Elt 2 100 } 0 0) ] - - location: 11 (remaining gas: 1039981.374 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039981.374 units remaining) [ { Elt 0 100 ; Elt 2 100 } ] - - location: 12 (remaining gas: 1039981.364 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039981.364 units remaining) [ 0 { Elt 0 100 ; Elt 2 100 } ] - - location: 15 (remaining gas: 1039981.354 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039981.354 units remaining) [ 0 0 { Elt 0 100 ; Elt 2 100 } ] - - location: 18 (remaining gas: 1039981.344 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039981.344 units remaining) [ (Pair 0 0) { Elt 0 100 ; Elt 2 100 } ] - - location: 19 (remaining gas: 1039981.334 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039981.334 units remaining) [ { Elt 0 100 ; Elt 2 100 } (Pair 0 0) ] - - location: 20 (remaining gas: 1039981.334 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039981.334 units remaining) [ (Pair 0 100) (Pair 0 0) ] - - location: 22 (remaining gas: 1039981.334 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039981.334 units remaining) [ (Pair 0 0) ] - - location: 24 (remaining gas: 1039981.324 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039981.324 units remaining) [ (Pair 0 0) (Pair 0 0) ] - - location: 25 (remaining gas: 1039981.314 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039981.314 units remaining) [ 0 (Pair 0 0) ] - - location: 26 (remaining gas: 1039981.314 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039981.314 units remaining) [ (Pair 0 0) ] - - location: 28 (remaining gas: 1039981.304 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039981.304 units remaining) [ 0 ] - - location: 26 (remaining gas: 1039981.279 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039981.279 units remaining) [ 0 0 ] - - location: 22 (remaining gas: 1039981.254 units remaining) + - location: 22 (just consumed gas: 0.025, remaining gas: 1039981.254 units remaining) [ (Pair 0 100) 0 0 ] - - location: 29 (remaining gas: 1039981.244 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039981.244 units remaining) [ (Pair 0 100) (Pair 0 100) 0 0 ] - - location: 30 (remaining gas: 1039981.244 units remaining) + - location: 30 (just consumed gas: 0, remaining gas: 1039981.244 units remaining) [ (Pair 0 100) 0 0 ] - - location: 32 (remaining gas: 1039981.234 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039981.234 units remaining) [ 0 0 0 ] - - location: 33 (remaining gas: 1039981.199 units remaining) + - location: 33 (just consumed gas: 0.035, remaining gas: 1039981.199 units remaining) [ 0 0 ] - - location: 30 (remaining gas: 1039981.174 units remaining) + - location: 30 (just consumed gas: 0.025, remaining gas: 1039981.174 units remaining) [ (Pair 0 100) 0 0 ] - - location: 34 (remaining gas: 1039981.164 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039981.164 units remaining) [ 0 (Pair 0 100) 0 ] - - location: 35 (remaining gas: 1039981.164 units remaining) + - location: 35 (just consumed gas: 0, remaining gas: 1039981.164 units remaining) [ (Pair 0 100) 0 ] - - location: 37 (remaining gas: 1039981.154 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039981.154 units remaining) [ 100 0 ] - - location: 38 (remaining gas: 1039981.119 units remaining) + - location: 38 (just consumed gas: 0.035, remaining gas: 1039981.119 units remaining) [ 100 ] - - location: 35 (remaining gas: 1039981.094 units remaining) + - location: 35 (just consumed gas: 0.025, remaining gas: 1039981.094 units remaining) [ 0 100 ] - - location: 39 (remaining gas: 1039981.084 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039981.084 units remaining) [ (Pair 0 100) ] - - location: 20 (remaining gas: 1039981.069 units remaining) + - location: 20 (just consumed gas: 0.015, remaining gas: 1039981.069 units remaining) [ (Pair 2 100) (Pair 0 100) ] - - location: 22 (remaining gas: 1039981.069 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039981.069 units remaining) [ (Pair 0 100) ] - - location: 24 (remaining gas: 1039981.059 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039981.059 units remaining) [ (Pair 0 100) (Pair 0 100) ] - - location: 25 (remaining gas: 1039981.049 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039981.049 units remaining) [ 0 (Pair 0 100) ] - - location: 26 (remaining gas: 1039981.049 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039981.049 units remaining) [ (Pair 0 100) ] - - location: 28 (remaining gas: 1039981.039 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039981.039 units remaining) [ 100 ] - - location: 26 (remaining gas: 1039981.014 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039981.014 units remaining) [ 0 100 ] - - location: 22 (remaining gas: 1039980.989 units remaining) + - location: 22 (just consumed gas: 0.025, remaining gas: 1039980.989 units remaining) [ (Pair 2 100) 0 100 ] - - location: 29 (remaining gas: 1039980.979 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039980.979 units remaining) [ (Pair 2 100) (Pair 2 100) 0 100 ] - - location: 30 (remaining gas: 1039980.979 units remaining) + - location: 30 (just consumed gas: 0, remaining gas: 1039980.979 units remaining) [ (Pair 2 100) 0 100 ] - - location: 32 (remaining gas: 1039980.969 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039980.969 units remaining) [ 2 0 100 ] - - location: 33 (remaining gas: 1039980.934 units remaining) + - location: 33 (just consumed gas: 0.035, remaining gas: 1039980.934 units remaining) [ 2 100 ] - - location: 30 (remaining gas: 1039980.909 units remaining) + - location: 30 (just consumed gas: 0.025, remaining gas: 1039980.909 units remaining) [ (Pair 2 100) 2 100 ] - - location: 34 (remaining gas: 1039980.899 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039980.899 units remaining) [ 2 (Pair 2 100) 100 ] - - location: 35 (remaining gas: 1039980.899 units remaining) + - location: 35 (just consumed gas: 0, remaining gas: 1039980.899 units remaining) [ (Pair 2 100) 100 ] - - location: 37 (remaining gas: 1039980.889 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039980.889 units remaining) [ 100 100 ] - - location: 38 (remaining gas: 1039980.854 units remaining) + - location: 38 (just consumed gas: 0.035, remaining gas: 1039980.854 units remaining) [ 200 ] - - location: 35 (remaining gas: 1039980.829 units remaining) + - location: 35 (just consumed gas: 0.025, remaining gas: 1039980.829 units remaining) [ 2 200 ] - - location: 39 (remaining gas: 1039980.819 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039980.819 units remaining) [ (Pair 2 200) ] - - location: 20 (remaining gas: 1039980.804 units remaining) + - location: 20 (just consumed gas: 0.015, remaining gas: 1039980.804 units remaining) [ (Pair 2 200) ] - - location: 40 (remaining gas: 1039980.794 units remaining) + - location: 40 (just consumed gas: 0.010, remaining gas: 1039980.794 units remaining) [ {} (Pair 2 200) ] - - location: 42 (remaining gas: 1039980.784 units remaining) + - location: 42 (just consumed gas: 0.010, remaining gas: 1039980.784 units remaining) [ (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 e6d7e861616e..c75f7dce8b66 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, remaining gas: 1039981.384 units remaining) [ (Pair { Elt 1 1 ; Elt 2 100 } 0 0) ] - - location: 11 (remaining gas: 1039981.374 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039981.374 units remaining) [ { Elt 1 1 ; Elt 2 100 } ] - - location: 12 (remaining gas: 1039981.364 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039981.364 units remaining) [ 0 { Elt 1 1 ; Elt 2 100 } ] - - location: 15 (remaining gas: 1039981.354 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039981.354 units remaining) [ 0 0 { Elt 1 1 ; Elt 2 100 } ] - - location: 18 (remaining gas: 1039981.344 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039981.344 units remaining) [ (Pair 0 0) { Elt 1 1 ; Elt 2 100 } ] - - location: 19 (remaining gas: 1039981.334 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039981.334 units remaining) [ { Elt 1 1 ; Elt 2 100 } (Pair 0 0) ] - - location: 20 (remaining gas: 1039981.334 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039981.334 units remaining) [ (Pair 1 1) (Pair 0 0) ] - - location: 22 (remaining gas: 1039981.334 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039981.334 units remaining) [ (Pair 0 0) ] - - location: 24 (remaining gas: 1039981.324 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039981.324 units remaining) [ (Pair 0 0) (Pair 0 0) ] - - location: 25 (remaining gas: 1039981.314 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039981.314 units remaining) [ 0 (Pair 0 0) ] - - location: 26 (remaining gas: 1039981.314 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039981.314 units remaining) [ (Pair 0 0) ] - - location: 28 (remaining gas: 1039981.304 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039981.304 units remaining) [ 0 ] - - location: 26 (remaining gas: 1039981.279 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039981.279 units remaining) [ 0 0 ] - - location: 22 (remaining gas: 1039981.254 units remaining) + - location: 22 (just consumed gas: 0.025, remaining gas: 1039981.254 units remaining) [ (Pair 1 1) 0 0 ] - - location: 29 (remaining gas: 1039981.244 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039981.244 units remaining) [ (Pair 1 1) (Pair 1 1) 0 0 ] - - location: 30 (remaining gas: 1039981.244 units remaining) + - location: 30 (just consumed gas: 0, remaining gas: 1039981.244 units remaining) [ (Pair 1 1) 0 0 ] - - location: 32 (remaining gas: 1039981.234 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039981.234 units remaining) [ 1 0 0 ] - - location: 33 (remaining gas: 1039981.199 units remaining) + - location: 33 (just consumed gas: 0.035, remaining gas: 1039981.199 units remaining) [ 1 0 ] - - location: 30 (remaining gas: 1039981.174 units remaining) + - location: 30 (just consumed gas: 0.025, remaining gas: 1039981.174 units remaining) [ (Pair 1 1) 1 0 ] - - location: 34 (remaining gas: 1039981.164 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039981.164 units remaining) [ 1 (Pair 1 1) 0 ] - - location: 35 (remaining gas: 1039981.164 units remaining) + - location: 35 (just consumed gas: 0, remaining gas: 1039981.164 units remaining) [ (Pair 1 1) 0 ] - - location: 37 (remaining gas: 1039981.154 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039981.154 units remaining) [ 1 0 ] - - location: 38 (remaining gas: 1039981.119 units remaining) + - location: 38 (just consumed gas: 0.035, remaining gas: 1039981.119 units remaining) [ 1 ] - - location: 35 (remaining gas: 1039981.094 units remaining) + - location: 35 (just consumed gas: 0.025, remaining gas: 1039981.094 units remaining) [ 1 1 ] - - location: 39 (remaining gas: 1039981.084 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039981.084 units remaining) [ (Pair 1 1) ] - - location: 20 (remaining gas: 1039981.069 units remaining) + - location: 20 (just consumed gas: 0.015, remaining gas: 1039981.069 units remaining) [ (Pair 2 100) (Pair 1 1) ] - - location: 22 (remaining gas: 1039981.069 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039981.069 units remaining) [ (Pair 1 1) ] - - location: 24 (remaining gas: 1039981.059 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039981.059 units remaining) [ (Pair 1 1) (Pair 1 1) ] - - location: 25 (remaining gas: 1039981.049 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039981.049 units remaining) [ 1 (Pair 1 1) ] - - location: 26 (remaining gas: 1039981.049 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039981.049 units remaining) [ (Pair 1 1) ] - - location: 28 (remaining gas: 1039981.039 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039981.039 units remaining) [ 1 ] - - location: 26 (remaining gas: 1039981.014 units remaining) + - location: 26 (just consumed gas: 0.025, remaining gas: 1039981.014 units remaining) [ 1 1 ] - - location: 22 (remaining gas: 1039980.989 units remaining) + - location: 22 (just consumed gas: 0.025, remaining gas: 1039980.989 units remaining) [ (Pair 2 100) 1 1 ] - - location: 29 (remaining gas: 1039980.979 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039980.979 units remaining) [ (Pair 2 100) (Pair 2 100) 1 1 ] - - location: 30 (remaining gas: 1039980.979 units remaining) + - location: 30 (just consumed gas: 0, remaining gas: 1039980.979 units remaining) [ (Pair 2 100) 1 1 ] - - location: 32 (remaining gas: 1039980.969 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039980.969 units remaining) [ 2 1 1 ] - - location: 33 (remaining gas: 1039980.934 units remaining) + - location: 33 (just consumed gas: 0.035, remaining gas: 1039980.934 units remaining) [ 3 1 ] - - location: 30 (remaining gas: 1039980.909 units remaining) + - location: 30 (just consumed gas: 0.025, remaining gas: 1039980.909 units remaining) [ (Pair 2 100) 3 1 ] - - location: 34 (remaining gas: 1039980.899 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039980.899 units remaining) [ 3 (Pair 2 100) 1 ] - - location: 35 (remaining gas: 1039980.899 units remaining) + - location: 35 (just consumed gas: 0, remaining gas: 1039980.899 units remaining) [ (Pair 2 100) 1 ] - - location: 37 (remaining gas: 1039980.889 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039980.889 units remaining) [ 100 1 ] - - location: 38 (remaining gas: 1039980.854 units remaining) + - location: 38 (just consumed gas: 0.035, remaining gas: 1039980.854 units remaining) [ 101 ] - - location: 35 (remaining gas: 1039980.829 units remaining) + - location: 35 (just consumed gas: 0.025, remaining gas: 1039980.829 units remaining) [ 3 101 ] - - location: 39 (remaining gas: 1039980.819 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039980.819 units remaining) [ (Pair 3 101) ] - - location: 20 (remaining gas: 1039980.804 units remaining) + - location: 20 (just consumed gas: 0.015, remaining gas: 1039980.804 units remaining) [ (Pair 3 101) ] - - location: 40 (remaining gas: 1039980.794 units remaining) + - location: 40 (just consumed gas: 0.010, remaining gas: 1039980.794 units remaining) [ {} (Pair 3 101) ] - - location: 42 (remaining gas: 1039980.784 units remaining) + - location: 42 (just consumed gas: 0.010, remaining gas: 1039980.784 units remaining) [ (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 74d9aed0778e..6b479b3d849d 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, remaining gas: 1039990.083 units remaining) [ (Pair 15 { Elt "bar" 5 ; Elt "foo" 1 }) ] - - location: 9 (remaining gas: 1039990.073 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039990.073 units remaining) [ 15 { Elt "bar" 5 ; Elt "foo" 1 } ] - - location: 10 (remaining gas: 1039990.063 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.063 units remaining) [ { Elt "bar" 5 ; Elt "foo" 1 } 15 ] - - location: 11 (remaining gas: 1039990.063 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039990.063 units remaining) [ (Pair "bar" 5) 15 ] - - location: 13 (remaining gas: 1039990.053 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039990.053 units remaining) [ 5 15 ] - - location: 14 (remaining gas: 1039990.053 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039990.053 units remaining) [ 15 ] - - location: 16 (remaining gas: 1039990.043 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.043 units remaining) [ 15 15 ] - - location: 14 (remaining gas: 1039990.018 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039990.018 units remaining) [ 5 15 15 ] - - location: 17 (remaining gas: 1039989.983 units remaining) + - location: 17 (just consumed gas: 0.035, remaining gas: 1039989.983 units remaining) [ 20 15 ] - - location: 11 (remaining gas: 1039989.968 units remaining) + - location: 11 (just consumed gas: 0.015, remaining gas: 1039989.968 units remaining) [ (Pair "foo" 1) 15 ] - - location: 13 (remaining gas: 1039989.958 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.958 units remaining) [ 1 15 ] - - location: 14 (remaining gas: 1039989.958 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039989.958 units remaining) [ 15 ] - - location: 16 (remaining gas: 1039989.948 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.948 units remaining) [ 15 15 ] - - location: 14 (remaining gas: 1039989.923 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039989.923 units remaining) [ 1 15 15 ] - - location: 17 (remaining gas: 1039989.888 units remaining) + - location: 17 (just consumed gas: 0.035, remaining gas: 1039989.888 units remaining) [ 16 15 ] - - location: 11 (remaining gas: 1039989.873 units remaining) + - location: 11 (just consumed gas: 0.015, remaining gas: 1039989.873 units remaining) [ { Elt "bar" 20 ; Elt "foo" 16 } 15 ] - - location: 18 (remaining gas: 1039989.873 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039989.873 units remaining) [ 15 ] - - location: 20 (remaining gas: 1039989.863 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.863 units remaining) [ ] - - location: 18 (remaining gas: 1039989.838 units remaining) + - location: 18 (just consumed gas: 0.025, remaining gas: 1039989.838 units remaining) [ { Elt "bar" 20 ; Elt "foo" 16 } ] - - location: 21 (remaining gas: 1039989.828 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.828 units remaining) [ {} { Elt "bar" 20 ; Elt "foo" 16 } ] - - location: 23 (remaining gas: 1039989.818 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.818 units remaining) [ (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 204221d443b6..309da412d720 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, remaining gas: 1039990.454 units remaining) [ (Pair 10 { Elt "foo" 1 }) ] - - location: 9 (remaining gas: 1039990.444 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039990.444 units remaining) [ 10 { Elt "foo" 1 } ] - - location: 10 (remaining gas: 1039990.434 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.434 units remaining) [ { Elt "foo" 1 } 10 ] - - location: 11 (remaining gas: 1039990.434 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039990.434 units remaining) [ (Pair "foo" 1) 10 ] - - location: 13 (remaining gas: 1039990.424 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039990.424 units remaining) [ 1 10 ] - - location: 14 (remaining gas: 1039990.424 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039990.424 units remaining) [ 10 ] - - location: 16 (remaining gas: 1039990.414 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.414 units remaining) [ 10 10 ] - - location: 14 (remaining gas: 1039990.389 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039990.389 units remaining) [ 1 10 10 ] - - location: 17 (remaining gas: 1039990.354 units remaining) + - location: 17 (just consumed gas: 0.035, remaining gas: 1039990.354 units remaining) [ 11 10 ] - - location: 11 (remaining gas: 1039990.339 units remaining) + - location: 11 (just consumed gas: 0.015, remaining gas: 1039990.339 units remaining) [ { Elt "foo" 11 } 10 ] - - location: 18 (remaining gas: 1039990.339 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039990.339 units remaining) [ 10 ] - - location: 20 (remaining gas: 1039990.329 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.329 units remaining) [ ] - - location: 18 (remaining gas: 1039990.304 units remaining) + - location: 18 (just consumed gas: 0.025, remaining gas: 1039990.304 units remaining) [ { Elt "foo" 11 } ] - - location: 21 (remaining gas: 1039990.294 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.294 units remaining) [ {} { Elt "foo" 11 } ] - - location: 23 (remaining gas: 1039990.284 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039990.284 units remaining) [ (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 30a877c6cbcf..3ff8542b0740 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, remaining gas: 1039990.784 units remaining) [ (Pair 10 {}) ] - - location: 9 (remaining gas: 1039990.774 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039990.774 units remaining) [ 10 {} ] - - location: 10 (remaining gas: 1039990.764 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.764 units remaining) [ {} 10 ] - - location: 11 (remaining gas: 1039990.764 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039990.764 units remaining) [ {} 10 ] - - location: 18 (remaining gas: 1039990.764 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039990.764 units remaining) [ 10 ] - - location: 20 (remaining gas: 1039990.754 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.754 units remaining) [ ] - - location: 18 (remaining gas: 1039990.729 units remaining) + - location: 18 (just consumed gas: 0.025, remaining gas: 1039990.729 units remaining) [ {} ] - - location: 21 (remaining gas: 1039990.719 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.719 units remaining) [ {} {} ] - - location: 23 (remaining gas: 1039990.709 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039990.709 units remaining) [ (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 c67f5f625ee2..b1f91f1c86e5 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, remaining gas: 1039990.284 units remaining) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (remaining gas: 1039990.274 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.274 units remaining) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (remaining gas: 1039990.274 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.274 units remaining) [ (Pair { Elt 0 1 } None) ] - - location: 15 (remaining gas: 1039990.264 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.264 units remaining) [ { Elt 0 1 } ] - - location: 16 (remaining gas: 1039990.254 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.254 units remaining) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (remaining gas: 1039990.229 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.229 units remaining) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (remaining gas: 1039990.149 units remaining) + - location: 17 (just consumed gas: 0.080, remaining gas: 1039990.149 units remaining) [ False { Elt 0 1 } ] - - location: 18 (remaining gas: 1039990.139 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.139 units remaining) [ (Some False) { Elt 0 1 } ] - - location: 19 (remaining gas: 1039990.129 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.129 units remaining) [ { Elt 0 1 } (Some False) ] - - location: 20 (remaining gas: 1039990.119 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.119 units remaining) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039990.109 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.109 units remaining) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039990.099 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039990.099 units remaining) [ (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 4b737f886893..1f21c1e22b62 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, remaining gas: 1039990.284 units remaining) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (remaining gas: 1039990.274 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.274 units remaining) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (remaining gas: 1039990.274 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.274 units remaining) [ (Pair { Elt 1 0 } None) ] - - location: 15 (remaining gas: 1039990.264 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.264 units remaining) [ { Elt 1 0 } ] - - location: 16 (remaining gas: 1039990.254 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.254 units remaining) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (remaining gas: 1039990.229 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.229 units remaining) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (remaining gas: 1039990.149 units remaining) + - location: 17 (just consumed gas: 0.080, remaining gas: 1039990.149 units remaining) [ True { Elt 1 0 } ] - - location: 18 (remaining gas: 1039990.139 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.139 units remaining) [ (Some True) { Elt 1 0 } ] - - location: 19 (remaining gas: 1039990.129 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.129 units remaining) [ { Elt 1 0 } (Some True) ] - - location: 20 (remaining gas: 1039990.119 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.119 units remaining) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039990.109 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.109 units remaining) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039990.099 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039990.099 units remaining) [ (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 52de74fc3aae..e42b73452f37 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, remaining gas: 1039989.969 units remaining) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039989.959 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.959 units remaining) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039989.959 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.959 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039989.949 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.949 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039989.939 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.939 units remaining) [ { 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, remaining gas: 1039989.914 units remaining) [ 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, remaining gas: 1039989.834 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039989.824 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.824 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039989.814 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.814 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039989.804 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.804 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039989.794 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.794 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039989.784 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.784 units remaining) [ (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 56e8f57438d5..23cdcfa88a05 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, remaining gas: 1039989.969 units remaining) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039989.959 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.959 units remaining) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039989.959 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.959 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039989.949 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.949 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039989.939 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.939 units remaining) [ { 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, remaining gas: 1039989.914 units remaining) [ 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, remaining gas: 1039989.834 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039989.824 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.824 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039989.814 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.814 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039989.804 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.804 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039989.794 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.794 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039989.784 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.784 units remaining) [ (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 b308b20ace4a..4ecd7afdfc4e 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, remaining gas: 1039989.969 units remaining) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039989.959 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.959 units remaining) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039989.959 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.959 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039989.949 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.949 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039989.939 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.939 units remaining) [ { 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, remaining gas: 1039989.914 units remaining) [ 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, remaining gas: 1039989.834 units remaining) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039989.824 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.824 units remaining) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039989.814 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.814 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (remaining gas: 1039989.804 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.804 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039989.794 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.794 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039989.784 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.784 units remaining) [ (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 e9da23ac69e3..5e63caea8ec0 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, remaining gas: 1039990.564 units remaining) [ (Pair 1 {} None) ] - - location: 12 (remaining gas: 1039990.554 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.554 units remaining) [ 1 (Pair {} None) ] - - location: 13 (remaining gas: 1039990.554 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.554 units remaining) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039990.544 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.544 units remaining) [ {} ] - - location: 16 (remaining gas: 1039990.534 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.534 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039990.509 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.509 units remaining) [ 1 {} {} ] - - location: 17 (remaining gas: 1039990.429 units remaining) + - location: 17 (just consumed gas: 0.080, remaining gas: 1039990.429 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039990.419 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.419 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039990.409 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.409 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039990.399 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.399 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039990.389 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.389 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039990.379 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039990.379 units remaining) [ (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 9ceadd37ffe2..30c9b0fb6762 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, remaining gas: 1039989.819 units remaining) [ (Pair "bar" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039989.809 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.809 units remaining) [ "bar" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039989.809 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.809 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039989.799 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.799 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039989.789 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.789 units remaining) [ { 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, remaining gas: 1039989.764 units remaining) [ "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, remaining gas: 1039989.675 units remaining) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039989.665 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.665 units remaining) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039989.655 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.655 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039989.645 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.645 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039989.635 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.635 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039989.625 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.625 units remaining) [ (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 8f7814c98977..6b7a1c963b02 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, remaining gas: 1039989.819 units remaining) [ (Pair "foo" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039989.809 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.809 units remaining) [ "foo" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039989.809 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.809 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039989.799 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.799 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039989.789 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.789 units remaining) [ { 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, remaining gas: 1039989.764 units remaining) [ "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, remaining gas: 1039989.675 units remaining) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039989.665 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.665 units remaining) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039989.655 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.655 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039989.645 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.645 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039989.635 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.635 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039989.625 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.625 units remaining) [ (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 ccabc3c552d2..899239355f36 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, remaining gas: 1039989.819 units remaining) [ (Pair "baz" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039989.809 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.809 units remaining) [ "baz" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039989.809 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039989.809 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039989.799 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.799 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039989.789 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.789 units remaining) [ { 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, remaining gas: 1039989.764 units remaining) [ "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, remaining gas: 1039989.675 units remaining) [ False { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039989.665 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.665 units remaining) [ (Some False) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039989.655 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.655 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some False) ] - - location: 20 (remaining gas: 1039989.645 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.645 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 21 (remaining gas: 1039989.635 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.635 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 23 (remaining gas: 1039989.625 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.625 units remaining) [ (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 95320ea2295f..dd697d8b3fec 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, remaining gas: 1039990.190 units remaining) [ (Pair "foo" { Elt "foo" 0 } None) ] - - location: 12 (remaining gas: 1039990.180 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.180 units remaining) [ "foo" (Pair { Elt "foo" 0 } None) ] - - location: 13 (remaining gas: 1039990.180 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.180 units remaining) [ (Pair { Elt "foo" 0 } None) ] - - location: 15 (remaining gas: 1039990.170 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.170 units remaining) [ { Elt "foo" 0 } ] - - location: 16 (remaining gas: 1039990.160 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.160 units remaining) [ { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 13 (remaining gas: 1039990.135 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.135 units remaining) [ "foo" { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 17 (remaining gas: 1039990.049 units remaining) + - location: 17 (just consumed gas: 0.086, remaining gas: 1039990.049 units remaining) [ True { Elt "foo" 0 } ] - - location: 18 (remaining gas: 1039990.039 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.039 units remaining) [ (Some True) { Elt "foo" 0 } ] - - location: 19 (remaining gas: 1039990.029 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.029 units remaining) [ { Elt "foo" 0 } (Some True) ] - - location: 20 (remaining gas: 1039990.019 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.019 units remaining) [ (Pair { Elt "foo" 0 } (Some True)) ] - - location: 21 (remaining gas: 1039990.009 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.009 units remaining) [ {} (Pair { Elt "foo" 0 } (Some True)) ] - - location: 23 (remaining gas: 1039989.999 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.999 units remaining) [ (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 4d554cfd9140..6842e6b86f10 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, remaining gas: 1039990.190 units remaining) [ (Pair "bar" { Elt "foo" 1 } None) ] - - location: 12 (remaining gas: 1039990.180 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.180 units remaining) [ "bar" (Pair { Elt "foo" 1 } None) ] - - location: 13 (remaining gas: 1039990.180 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.180 units remaining) [ (Pair { Elt "foo" 1 } None) ] - - location: 15 (remaining gas: 1039990.170 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.170 units remaining) [ { Elt "foo" 1 } ] - - location: 16 (remaining gas: 1039990.160 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.160 units remaining) [ { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 13 (remaining gas: 1039990.135 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.135 units remaining) [ "bar" { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 17 (remaining gas: 1039990.049 units remaining) + - location: 17 (just consumed gas: 0.086, remaining gas: 1039990.049 units remaining) [ False { Elt "foo" 1 } ] - - location: 18 (remaining gas: 1039990.039 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.039 units remaining) [ (Some False) { Elt "foo" 1 } ] - - location: 19 (remaining gas: 1039990.029 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.029 units remaining) [ { Elt "foo" 1 } (Some False) ] - - location: 20 (remaining gas: 1039990.019 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.019 units remaining) [ (Pair { Elt "foo" 1 } (Some False)) ] - - location: 21 (remaining gas: 1039990.009 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.009 units remaining) [ {} (Pair { Elt "foo" 1 } (Some False)) ] - - location: 23 (remaining gas: 1039989.999 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039989.999 units remaining) [ (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 dd1a90c27c5d..01a86d528dd3 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, remaining gas: 1039990.520 units remaining) [ (Pair "bar" {} None) ] - - location: 12 (remaining gas: 1039990.510 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.510 units remaining) [ "bar" (Pair {} None) ] - - location: 13 (remaining gas: 1039990.510 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.510 units remaining) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039990.500 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.500 units remaining) [ {} ] - - location: 16 (remaining gas: 1039990.490 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.490 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039990.465 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.465 units remaining) [ "bar" {} {} ] - - location: 17 (remaining gas: 1039990.382 units remaining) + - location: 17 (just consumed gas: 0.083, remaining gas: 1039990.382 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039990.372 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.372 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039990.362 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.362 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039990.352 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.352 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039990.342 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.342 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039990.332 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039990.332 units remaining) [ (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 6646f0c7b6d1..59ebfab1013f 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, remaining gas: 1039993.444 units remaining) [ (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, remaining gas: 1039993.434 units remaining) [ { 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, remaining gas: 1039993.424 units remaining) [ 6 ] - - location: 11 (remaining gas: 1039993.414 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.414 units remaining) [ {} 6 ] - - location: 13 (remaining gas: 1039993.404 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.404 units remaining) [ (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 502d121b09d5..941f6206d05d 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, remaining gas: 1039994.483 units remaining) [ (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, remaining gas: 1039994.473 units remaining) [ { Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 } ] - - location: 10 (remaining gas: 1039994.463 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.463 units remaining) [ 3 ] - - location: 11 (remaining gas: 1039994.453 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.453 units remaining) [ {} 3 ] - - location: 13 (remaining gas: 1039994.443 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.443 units remaining) [ (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 0a1cea6ecc97..cab1e92889d0 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, remaining gas: 1039995.171 units remaining) [ (Pair { Elt "a" 1 } 111) ] - - location: 9 (remaining gas: 1039995.161 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.161 units remaining) [ { Elt "a" 1 } ] - - location: 10 (remaining gas: 1039995.151 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.151 units remaining) [ 1 ] - - location: 11 (remaining gas: 1039995.141 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.141 units remaining) [ {} 1 ] - - location: 13 (remaining gas: 1039995.131 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039995.131 units remaining) [ (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 7ff70c59c6a9..d023df008bbe 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, remaining gas: 1039995.477 units remaining) [ (Pair {} 111) ] - - location: 9 (remaining gas: 1039995.467 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.467 units remaining) [ {} ] - - location: 10 (remaining gas: 1039995.457 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.457 units remaining) [ 0 ] - - location: 11 (remaining gas: 1039995.447 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.447 units remaining) [ {} 0 ] - - location: 13 (remaining gas: 1039995.437 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039995.437 units remaining) [ (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 5ea0b2ac04f7..7ada75e92607 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, remaining gas: 1039949.201 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039949.191 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039949.191 units remaining) [ Unit ] - - location: 8 (remaining gas: 1039949.181 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039949.181 units remaining) [ ] - - location: 9 (remaining gas: 1039949.171 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039949.171 units remaining) [ 7987 ] - - location: 12 (remaining gas: 1039949.161 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039949.161 units remaining) [ 10 7987 ] - - location: 15 (remaining gas: 1039949.161 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039949.161 units remaining) [ 79870 ] - - location: 16 (remaining gas: 1039949.151 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039949.151 units remaining) [ 79870 79870 ] - - location: 19 (remaining gas: 1039949.116 units remaining) + - location: 19 (just consumed gas: 0.035, remaining gas: 1039949.116 units remaining) [ 0 ] - - location: 21 (remaining gas: 1039949.106 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039949.106 units remaining) [ True ] - - location: 22 (remaining gas: 1039949.106 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039949.106 units remaining) [ ] - - location: 22 (remaining gas: 1039949.091 units remaining) + - location: 22 (just consumed gas: 0.015, remaining gas: 1039949.091 units remaining) [ ] - - location: 28 (remaining gas: 1039949.081 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039949.081 units remaining) [ 10 ] - - location: 31 (remaining gas: 1039949.071 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039949.071 units remaining) [ 7987 10 ] - - location: 34 (remaining gas: 1039949.071 units remaining) + - location: 34 (just consumed gas: 0, remaining gas: 1039949.071 units remaining) [ 79870 ] - - location: 35 (remaining gas: 1039949.061 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039949.061 units remaining) [ 79870 79870 ] - - location: 38 (remaining gas: 1039949.026 units remaining) + - location: 38 (just consumed gas: 0.035, remaining gas: 1039949.026 units remaining) [ 0 ] - - location: 40 (remaining gas: 1039949.016 units remaining) + - location: 40 (just consumed gas: 0.010, remaining gas: 1039949.016 units remaining) [ True ] - - location: 41 (remaining gas: 1039949.016 units remaining) + - location: 41 (just consumed gas: 0, remaining gas: 1039949.016 units remaining) [ ] - - location: 41 (remaining gas: 1039949.001 units remaining) + - location: 41 (just consumed gas: 0.015, remaining gas: 1039949.001 units remaining) [ ] - - location: 47 (remaining gas: 1039948.991 units remaining) + - location: 47 (just consumed gas: 0.010, remaining gas: 1039948.991 units remaining) [ 10 ] - - location: 50 (remaining gas: 1039948.981 units remaining) + - location: 50 (just consumed gas: 0.010, remaining gas: 1039948.981 units remaining) [ -7987 10 ] - - location: 53 (remaining gas: 1039948.920 units remaining) + - location: 53 (just consumed gas: 0.061, remaining gas: 1039948.920 units remaining) [ -79870 ] - - location: 54 (remaining gas: 1039948.910 units remaining) + - location: 54 (just consumed gas: 0.010, remaining gas: 1039948.910 units remaining) [ -79870 -79870 ] - - location: 57 (remaining gas: 1039948.875 units remaining) + - location: 57 (just consumed gas: 0.035, remaining gas: 1039948.875 units remaining) [ 0 ] - - location: 59 (remaining gas: 1039948.865 units remaining) + - location: 59 (just consumed gas: 0.010, remaining gas: 1039948.865 units remaining) [ True ] - - location: 60 (remaining gas: 1039948.865 units remaining) + - location: 60 (just consumed gas: 0, remaining gas: 1039948.865 units remaining) [ ] - - location: 60 (remaining gas: 1039948.850 units remaining) + - location: 60 (just consumed gas: 0.015, remaining gas: 1039948.850 units remaining) [ ] - - location: 66 (remaining gas: 1039948.840 units remaining) + - location: 66 (just consumed gas: 0.010, remaining gas: 1039948.840 units remaining) [ 10 ] - - location: 69 (remaining gas: 1039948.830 units remaining) + - location: 69 (just consumed gas: 0.010, remaining gas: 1039948.830 units remaining) [ -7987 10 ] - - location: 72 (remaining gas: 1039948.769 units remaining) + - location: 72 (just consumed gas: 0.061, remaining gas: 1039948.769 units remaining) [ -79870 ] - - location: 73 (remaining gas: 1039948.759 units remaining) + - location: 73 (just consumed gas: 0.010, remaining gas: 1039948.759 units remaining) [ -79870 -79870 ] - - location: 76 (remaining gas: 1039948.724 units remaining) + - location: 76 (just consumed gas: 0.035, remaining gas: 1039948.724 units remaining) [ 0 ] - - location: 78 (remaining gas: 1039948.714 units remaining) + - location: 78 (just consumed gas: 0.010, remaining gas: 1039948.714 units remaining) [ True ] - - location: 79 (remaining gas: 1039948.714 units remaining) + - location: 79 (just consumed gas: 0, remaining gas: 1039948.714 units remaining) [ ] - - location: 79 (remaining gas: 1039948.699 units remaining) + - location: 79 (just consumed gas: 0.015, remaining gas: 1039948.699 units remaining) [ ] - - location: 85 (remaining gas: 1039948.689 units remaining) + - location: 85 (just consumed gas: 0.010, remaining gas: 1039948.689 units remaining) [ -10 ] - - location: 88 (remaining gas: 1039948.679 units remaining) + - location: 88 (just consumed gas: 0.010, remaining gas: 1039948.679 units remaining) [ 7987 -10 ] - - location: 91 (remaining gas: 1039948.618 units remaining) + - location: 91 (just consumed gas: 0.061, remaining gas: 1039948.618 units remaining) [ -79870 ] - - location: 92 (remaining gas: 1039948.608 units remaining) + - location: 92 (just consumed gas: 0.010, remaining gas: 1039948.608 units remaining) [ -79870 -79870 ] - - location: 95 (remaining gas: 1039948.573 units remaining) + - location: 95 (just consumed gas: 0.035, remaining gas: 1039948.573 units remaining) [ 0 ] - - location: 97 (remaining gas: 1039948.563 units remaining) + - location: 97 (just consumed gas: 0.010, remaining gas: 1039948.563 units remaining) [ True ] - - location: 98 (remaining gas: 1039948.563 units remaining) + - location: 98 (just consumed gas: 0, remaining gas: 1039948.563 units remaining) [ ] - - location: 98 (remaining gas: 1039948.548 units remaining) + - location: 98 (just consumed gas: 0.015, remaining gas: 1039948.548 units remaining) [ ] - - location: 104 (remaining gas: 1039948.538 units remaining) + - location: 104 (just consumed gas: 0.010, remaining gas: 1039948.538 units remaining) [ 10 ] - - location: 107 (remaining gas: 1039948.528 units remaining) + - location: 107 (just consumed gas: 0.010, remaining gas: 1039948.528 units remaining) [ 7987 10 ] - - location: 110 (remaining gas: 1039948.467 units remaining) + - location: 110 (just consumed gas: 0.061, remaining gas: 1039948.467 units remaining) [ 79870 ] - - location: 111 (remaining gas: 1039948.457 units remaining) + - location: 111 (just consumed gas: 0.010, remaining gas: 1039948.457 units remaining) [ 79870 79870 ] - - location: 114 (remaining gas: 1039948.422 units remaining) + - location: 114 (just consumed gas: 0.035, remaining gas: 1039948.422 units remaining) [ 0 ] - - location: 116 (remaining gas: 1039948.412 units remaining) + - location: 116 (just consumed gas: 0.010, remaining gas: 1039948.412 units remaining) [ True ] - - location: 117 (remaining gas: 1039948.412 units remaining) + - location: 117 (just consumed gas: 0, remaining gas: 1039948.412 units remaining) [ ] - - location: 117 (remaining gas: 1039948.397 units remaining) + - location: 117 (just consumed gas: 0.015, remaining gas: 1039948.397 units remaining) [ ] - - location: 123 (remaining gas: 1039948.387 units remaining) + - location: 123 (just consumed gas: 0.010, remaining gas: 1039948.387 units remaining) [ Unit ] - - location: 124 (remaining gas: 1039948.377 units remaining) + - location: 124 (just consumed gas: 0.010, remaining gas: 1039948.377 units remaining) [ {} Unit ] - - location: 126 (remaining gas: 1039948.367 units remaining) + - location: 126 (just consumed gas: 0.010, remaining gas: 1039948.367 units remaining) [ (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 b9735ea7c404..32720c445816 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, remaining gas: 1039989.053 units remaining) [ (Pair 257 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039989.043 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.043 units remaining) [ 257 ] - - location: 8 (remaining gas: 1039989.033 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.033 units remaining) [ 1 257 ] - - location: 11 (remaining gas: 1039989.023 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039989.023 units remaining) [ 257 1 ] - - location: 12 (remaining gas: 1039988.943 units remaining) + - location: 12 (just consumed gas: 0.080, remaining gas: 1039988.943 units remaining) [ (Some (Pair 257 0)) ] - - location: 14 (remaining gas: 1039988.943 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039988.943 units remaining) [ (Pair 257 0) ] - - location: 14 (remaining gas: 1039988.928 units remaining) + - location: 14 (just consumed gas: 0.015, remaining gas: 1039988.928 units remaining) [ (Pair 257 0) ] - - location: 20 (remaining gas: 1039988.918 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.918 units remaining) [ 257 ] - - location: 21 (remaining gas: 1039988.908 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.908 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 257 ] - - location: 24 (remaining gas: 1039988.641 units remaining) + - location: 24 (just consumed gas: 0.267, remaining gas: 1039988.641 units remaining) [ 0x0101000000000000000000000000000000000000000000000000000000000000 ] - - location: 25 (remaining gas: 1039988.631 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039988.631 units remaining) [ {} 0x0101000000000000000000000000000000000000000000000000000000000000 ] - - location: 27 (remaining gas: 1039988.621 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039988.621 units remaining) [ (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 6f015bbcddfd..8fb6d3ec96de 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, remaining gas: 1039989.053 units remaining) [ (Pair 16 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039989.043 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.043 units remaining) [ 16 ] - - location: 8 (remaining gas: 1039989.033 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.033 units remaining) [ 1 16 ] - - location: 11 (remaining gas: 1039989.023 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039989.023 units remaining) [ 16 1 ] - - location: 12 (remaining gas: 1039988.943 units remaining) + - location: 12 (just consumed gas: 0.080, remaining gas: 1039988.943 units remaining) [ (Some (Pair 16 0)) ] - - location: 14 (remaining gas: 1039988.943 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039988.943 units remaining) [ (Pair 16 0) ] - - location: 14 (remaining gas: 1039988.928 units remaining) + - location: 14 (just consumed gas: 0.015, remaining gas: 1039988.928 units remaining) [ (Pair 16 0) ] - - location: 20 (remaining gas: 1039988.918 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.918 units remaining) [ 16 ] - - location: 21 (remaining gas: 1039988.908 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.908 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 16 ] - - location: 24 (remaining gas: 1039988.642 units remaining) + - location: 24 (just consumed gas: 0.266, remaining gas: 1039988.642 units remaining) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 25 (remaining gas: 1039988.632 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039988.632 units remaining) [ {} 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 27 (remaining gas: 1039988.622 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039988.622 units remaining) [ (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 7a4c4d6ec1f9..f7c0395d1efc 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, remaining gas: 1039993.831 units remaining) [ (Pair (Left -2) 0) ] - - location: 9 (remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.821 units remaining) [ (Left -2) ] - - location: 10 (remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039993.821 units remaining) [ -2 ] - - location: 12 (remaining gas: 1039993.796 units remaining) + - location: 12 (just consumed gas: 0.025, remaining gas: 1039993.796 units remaining) [ 2 ] - - location: 10 (remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.781 units remaining) [ 2 ] - - location: 15 (remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039993.771 units remaining) [ {} 2 ] - - location: 17 (remaining gas: 1039993.761 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039993.761 units remaining) [ (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 b8025a233edd..b2c4d8ed1da9 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, remaining gas: 1039993.831 units remaining) [ (Pair (Left 0) 0) ] - - location: 9 (remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.821 units remaining) [ (Left 0) ] - - location: 10 (remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039993.821 units remaining) [ 0 ] - - location: 12 (remaining gas: 1039993.796 units remaining) + - location: 12 (just consumed gas: 0.025, remaining gas: 1039993.796 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.781 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039993.771 units remaining) [ {} 0 ] - - location: 17 (remaining gas: 1039993.761 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039993.761 units remaining) [ (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 7ef3788ee6a3..6aa7ceb890bb 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, remaining gas: 1039993.831 units remaining) [ (Pair (Left 2) 0) ] - - location: 9 (remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.821 units remaining) [ (Left 2) ] - - location: 10 (remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039993.821 units remaining) [ 2 ] - - location: 12 (remaining gas: 1039993.796 units remaining) + - location: 12 (just consumed gas: 0.025, remaining gas: 1039993.796 units remaining) [ -2 ] - - location: 10 (remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.781 units remaining) [ -2 ] - - location: 15 (remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039993.771 units remaining) [ {} -2 ] - - location: 17 (remaining gas: 1039993.761 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039993.761 units remaining) [ (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 b9326e586c11..a1a7eedad774 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, remaining gas: 1039993.831 units remaining) [ (Pair (Right 0) 0) ] - - location: 9 (remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.821 units remaining) [ (Right 0) ] - - location: 10 (remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039993.821 units remaining) [ 0 ] - - location: 14 (remaining gas: 1039993.796 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039993.796 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.781 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039993.771 units remaining) [ {} 0 ] - - location: 17 (remaining gas: 1039993.761 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039993.761 units remaining) [ (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 d30a47997111..2f611aadaf9d 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, remaining gas: 1039993.831 units remaining) [ (Pair (Right 2) 0) ] - - location: 9 (remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.821 units remaining) [ (Right 2) ] - - location: 10 (remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0, remaining gas: 1039993.821 units remaining) [ 2 ] - - location: 14 (remaining gas: 1039993.796 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039993.796 units remaining) [ -2 ] - - location: 10 (remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.781 units remaining) [ -2 ] - - location: 15 (remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039993.771 units remaining) [ {} -2 ] - - location: 17 (remaining gas: 1039993.761 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039993.761 units remaining) [ (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 aea607726d9f..8c6327c6badb 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, remaining gas: 1039995.227 units remaining) [ (Pair Unit (Some 10)) ] - - location: 8 (remaining gas: 1039995.217 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.217 units remaining) [ ] - - location: 9 (remaining gas: 1039995.207 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.207 units remaining) [ None ] - - location: 11 (remaining gas: 1039995.197 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.197 units remaining) [ {} None ] - - location: 13 (remaining gas: 1039995.187 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039995.187 units remaining) [ (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 280ba34de802..43401d3ed6b3 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, remaining gas: 1039994.947 units remaining) [ (Pair False None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) [ False ] - - location: 9 (remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.927 units remaining) [ True ] - - location: 10 (remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.917 units remaining) [ (Some True) ] - - location: 11 (remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.907 units remaining) [ {} (Some True) ] - - location: 13 (remaining gas: 1039994.897 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.897 units remaining) [ (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 287ae820ecb0..f1a5e754f316 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, remaining gas: 1039994.947 units remaining) [ (Pair True None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) [ True ] - - location: 9 (remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.927 units remaining) [ False ] - - location: 10 (remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.917 units remaining) [ (Some False) ] - - location: 11 (remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.907 units remaining) [ {} (Some False) ] - - location: 13 (remaining gas: 1039994.897 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.897 units remaining) [ (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 14a6f34a2193..a85ef48232cd 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, remaining gas: 1039993.035 units remaining) [ (Pair (Left -8) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) [ (Left -8) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) [ -8 ] - - location: 13 (remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) [ 7 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) [ 7 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) [ (Some 7) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) [ {} (Some 7) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.955 units remaining) [ (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 0692f83607a1..69639d1902f1 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, remaining gas: 1039993.035 units remaining) [ (Pair (Left -9) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) [ (Left -9) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) [ -9 ] - - location: 13 (remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) [ 8 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) [ 8 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) [ (Some 8) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) [ {} (Some 8) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.955 units remaining) [ (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 4e3deaa32a2a..68197836bed8 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, remaining gas: 1039993.035 units remaining) [ (Pair (Left 0) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) [ (Left 0) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) [ -1 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) [ -1 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) [ (Some -1) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) [ {} (Some -1) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.955 units remaining) [ (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 0429db07ae33..9cd2969ffd1b 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, remaining gas: 1039993.035 units remaining) [ (Pair (Left 7) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) [ (Left 7) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) [ 7 ] - - location: 13 (remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) [ -8 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) [ -8 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) [ (Some -8) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) [ {} (Some -8) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.955 units remaining) [ (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 394ca276b913..142363eeee4d 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, remaining gas: 1039993.035 units remaining) [ (Pair (Left 8) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) [ (Left 8) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) [ 8 ] - - location: 13 (remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) [ -9 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) [ -9 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) [ (Some -9) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) [ {} (Some -9) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.955 units remaining) [ (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 f495c59805bd..d4a045d9eda3 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, remaining gas: 1039993.035 units remaining) [ (Pair (Right 0) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) [ (Right 0) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039993 units remaining) + - location: 15 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) [ -1 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) [ -1 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) [ (Some -1) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) [ {} (Some -1) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.955 units remaining) [ (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 37b65b6feebe..b23419d05e5c 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, remaining gas: 1039993.035 units remaining) [ (Pair (Right 7) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) [ (Right 7) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) [ 7 ] - - location: 15 (remaining gas: 1039993 units remaining) + - location: 15 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) [ -8 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) [ -8 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) [ (Some -8) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) [ {} (Some -8) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.955 units remaining) [ (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 a0f8035d76b4..ee62da7f35da 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, remaining gas: 1039993.035 units remaining) [ (Pair (Right 8) None) ] - - location: 10 (remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) [ (Right 8) ] - - location: 11 (remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) [ 8 ] - - location: 15 (remaining gas: 1039993 units remaining) + - location: 15 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) [ -9 ] - - location: 11 (remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) [ -9 ] - - location: 16 (remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) [ (Some -9) ] - - location: 17 (remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) [ {} (Some -9) ] - - location: 19 (remaining gas: 1039992.955 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.955 units remaining) [ (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 eac6d6a9d954..bd25fb8dde29 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, remaining gas: 1039991.885 units remaining) [ (Pair (Pair False False) None) ] - - location: 10 (remaining gas: 1039991.875 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.875 units remaining) [ (Pair False False) ] - - location: 11 (remaining gas: 1039991.865 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.865 units remaining) [ (Pair False False) (Pair False False) ] - - location: 12 (remaining gas: 1039991.855 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039991.855 units remaining) [ False (Pair False False) ] - - location: 13 (remaining gas: 1039991.845 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.845 units remaining) [ (Pair False False) False ] - - location: 14 (remaining gas: 1039991.835 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.835 units remaining) [ False False ] - - location: 15 (remaining gas: 1039991.825 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.825 units remaining) [ False ] - - location: 16 (remaining gas: 1039991.815 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.815 units remaining) [ (Some False) ] - - location: 17 (remaining gas: 1039991.805 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.805 units remaining) [ {} (Some False) ] - - location: 19 (remaining gas: 1039991.795 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.795 units remaining) [ (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 1aab2abc6fd8..57c35eba3f14 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, remaining gas: 1039991.885 units remaining) [ (Pair (Pair False True) None) ] - - location: 10 (remaining gas: 1039991.875 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.875 units remaining) [ (Pair False True) ] - - location: 11 (remaining gas: 1039991.865 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.865 units remaining) [ (Pair False True) (Pair False True) ] - - location: 12 (remaining gas: 1039991.855 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039991.855 units remaining) [ False (Pair False True) ] - - location: 13 (remaining gas: 1039991.845 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.845 units remaining) [ (Pair False True) False ] - - location: 14 (remaining gas: 1039991.835 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.835 units remaining) [ True False ] - - location: 15 (remaining gas: 1039991.825 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.825 units remaining) [ True ] - - location: 16 (remaining gas: 1039991.815 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.815 units remaining) [ (Some True) ] - - location: 17 (remaining gas: 1039991.805 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.805 units remaining) [ {} (Some True) ] - - location: 19 (remaining gas: 1039991.795 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.795 units remaining) [ (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 7066c1b6e583..7985c4848955 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, remaining gas: 1039991.885 units remaining) [ (Pair (Pair True False) None) ] - - location: 10 (remaining gas: 1039991.875 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.875 units remaining) [ (Pair True False) ] - - location: 11 (remaining gas: 1039991.865 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.865 units remaining) [ (Pair True False) (Pair True False) ] - - location: 12 (remaining gas: 1039991.855 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039991.855 units remaining) [ True (Pair True False) ] - - location: 13 (remaining gas: 1039991.845 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.845 units remaining) [ (Pair True False) True ] - - location: 14 (remaining gas: 1039991.835 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.835 units remaining) [ False True ] - - location: 15 (remaining gas: 1039991.825 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.825 units remaining) [ True ] - - location: 16 (remaining gas: 1039991.815 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.815 units remaining) [ (Some True) ] - - location: 17 (remaining gas: 1039991.805 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.805 units remaining) [ {} (Some True) ] - - location: 19 (remaining gas: 1039991.795 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.795 units remaining) [ (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 a0d50231329f..5124b314b343 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, remaining gas: 1039991.885 units remaining) [ (Pair (Pair True True) None) ] - - location: 10 (remaining gas: 1039991.875 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.875 units remaining) [ (Pair True True) ] - - location: 11 (remaining gas: 1039991.865 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.865 units remaining) [ (Pair True True) (Pair True True) ] - - location: 12 (remaining gas: 1039991.855 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039991.855 units remaining) [ True (Pair True True) ] - - location: 13 (remaining gas: 1039991.845 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.845 units remaining) [ (Pair True True) True ] - - location: 14 (remaining gas: 1039991.835 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.835 units remaining) [ True True ] - - location: 15 (remaining gas: 1039991.825 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.825 units remaining) [ True ] - - location: 16 (remaining gas: 1039991.815 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.815 units remaining) [ (Some True) ] - - location: 17 (remaining gas: 1039991.805 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.805 units remaining) [ {} (Some True) ] - - location: 19 (remaining gas: 1039991.795 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.795 units remaining) [ (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 7134a024f069..d6ba93a6a6f4 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, remaining gas: 1039993.859 units remaining) [ (Pair (Pair 0 8) None) ] - - location: 10 (remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.849 units remaining) [ (Pair 0 8) ] - - location: 11 (remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.839 units remaining) [ 0 8 ] - - location: 12 (remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035, remaining gas: 1039993.804 units remaining) [ 8 ] - - location: 13 (remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.794 units remaining) [ (Some 8) ] - - location: 14 (remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.784 units remaining) [ {} (Some 8) ] - - location: 16 (remaining gas: 1039993.774 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.774 units remaining) [ (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 5b231716c634..5811f76e6b81 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, remaining gas: 1039993.859 units remaining) [ (Pair (Pair 14 1) None) ] - - location: 10 (remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.849 units remaining) [ (Pair 14 1) ] - - location: 11 (remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.839 units remaining) [ 14 1 ] - - location: 12 (remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035, remaining gas: 1039993.804 units remaining) [ 15 ] - - location: 13 (remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.794 units remaining) [ (Some 15) ] - - location: 14 (remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.784 units remaining) [ {} (Some 15) ] - - location: 16 (remaining gas: 1039993.774 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.774 units remaining) [ (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 936d4717dee7..782a4c5df432 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, remaining gas: 1039993.859 units remaining) [ (Pair (Pair 15 4) None) ] - - location: 10 (remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.849 units remaining) [ (Pair 15 4) ] - - location: 11 (remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.839 units remaining) [ 15 4 ] - - location: 12 (remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035, remaining gas: 1039993.804 units remaining) [ 15 ] - - location: 13 (remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.794 units remaining) [ (Some 15) ] - - location: 14 (remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.784 units remaining) [ {} (Some 15) ] - - location: 16 (remaining gas: 1039993.774 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.774 units remaining) [ (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 1b62cc25988e..5e1c6314e0d9 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, remaining gas: 1039993.859 units remaining) [ (Pair (Pair 4 8) None) ] - - location: 10 (remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.849 units remaining) [ (Pair 4 8) ] - - location: 11 (remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.839 units remaining) [ 4 8 ] - - location: 12 (remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035, remaining gas: 1039993.804 units remaining) [ 12 ] - - location: 13 (remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.794 units remaining) [ (Some 12) ] - - location: 14 (remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.784 units remaining) [ {} (Some 12) ] - - location: 16 (remaining gas: 1039993.774 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.774 units remaining) [ (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 6f0477f2a8f0..20f5986d0ef8 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, remaining gas: 1039993.859 units remaining) [ (Pair (Pair 7 7) None) ] - - location: 10 (remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.849 units remaining) [ (Pair 7 7) ] - - location: 11 (remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.839 units remaining) [ 7 7 ] - - location: 12 (remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035, remaining gas: 1039993.804 units remaining) [ 7 ] - - location: 13 (remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.794 units remaining) [ (Some 7) ] - - location: 14 (remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.784 units remaining) [ {} (Some 7) ] - - location: 16 (remaining gas: 1039993.774 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.774 units remaining) [ (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 a80b14a9830c..aee9780469d9 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, remaining gas: 1039993.859 units remaining) [ (Pair (Pair 8 0) None) ] - - location: 10 (remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.849 units remaining) [ (Pair 8 0) ] - - location: 11 (remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.839 units remaining) [ 8 0 ] - - location: 12 (remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035, remaining gas: 1039993.804 units remaining) [ 8 ] - - location: 13 (remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.794 units remaining) [ (Some 8) ] - - location: 14 (remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.784 units remaining) [ {} (Some 8) ] - - location: 16 (remaining gas: 1039993.774 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.774 units remaining) [ (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 147ad9ea25eb..3445a00f7152 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, remaining gas: 1039851.817 units remaining) [ (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, remaining gas: 1039851.807 units remaining) [ (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, remaining gas: 1039851.797 units remaining) [ (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, remaining gas: 1039851.787 units remaining) [ -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, remaining gas: 1039851.787 units remaining) [ (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, remaining gas: 1039851.777 units remaining) [ -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, remaining gas: 1039851.752 units remaining) [ -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, remaining gas: 1039851.511 units remaining) [ 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, remaining gas: 1039851.090 units remaining) [ (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, remaining gas: 1039851.090 units remaining) [ -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, remaining gas: 1039851.075 units remaining) [ -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, remaining gas: 1039851.040 units remaining) [ 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, remaining gas: 1039851.030 units remaining) [ 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, remaining gas: 1039851.030 units remaining) [ (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, remaining gas: 1039851.015 units remaining) [ (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, remaining gas: 1039851.005 units remaining) [ (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, remaining gas: 1039850.995 units remaining) [ 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, remaining gas: 1039850.995 units remaining) [ (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, remaining gas: 1039850.985 units remaining) [ 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, remaining gas: 1039850.960 units remaining) [ 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, remaining gas: 1039850.719 units remaining) [ 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, remaining gas: 1039850.298 units remaining) [ (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, remaining gas: 1039850.298 units remaining) [ 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, remaining gas: 1039850.283 units remaining) [ 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, remaining gas: 1039850.248 units remaining) [ 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, remaining gas: 1039850.238 units remaining) [ 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, remaining gas: 1039850.238 units remaining) [ (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, remaining gas: 1039850.223 units remaining) [ (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, remaining gas: 1039850.213 units remaining) [ (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, remaining gas: 1039850.203 units remaining) [ "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, remaining gas: 1039850.203 units remaining) [ (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, remaining gas: 1039850.193 units remaining) [ "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, remaining gas: 1039850.168 units remaining) [ "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, remaining gas: 1039849.892 units remaining) [ 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, remaining gas: 1039849.212 units remaining) [ (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, remaining gas: 1039849.212 units remaining) [ "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, remaining gas: 1039849.197 units remaining) [ "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, remaining gas: 1039849.162 units remaining) [ 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, remaining gas: 1039849.152 units remaining) [ 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, remaining gas: 1039849.152 units remaining) [ (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, remaining gas: 1039849.137 units remaining) [ (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, remaining gas: 1039849.127 units remaining) [ (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, remaining gas: 1039849.117 units remaining) [ 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, remaining gas: 1039849.117 units remaining) [ (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, remaining gas: 1039849.107 units remaining) [ 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, remaining gas: 1039849.082 units remaining) [ 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, remaining gas: 1039848.826 units remaining) [ 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, remaining gas: 1039848.261 units remaining) [ (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, remaining gas: 1039848.261 units remaining) [ 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, remaining gas: 1039848.246 units remaining) [ 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, remaining gas: 1039848.211 units remaining) [ 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, remaining gas: 1039848.201 units remaining) [ 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, remaining gas: 1039848.201 units remaining) [ (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, remaining gas: 1039848.186 units remaining) [ (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, remaining gas: 1039848.176 units remaining) [ (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, remaining gas: 1039848.166 units remaining) [ 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, remaining gas: 1039848.166 units remaining) [ (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, remaining gas: 1039848.156 units remaining) [ 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, remaining gas: 1039848.131 units remaining) [ 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, remaining gas: 1039847.865 units remaining) [ 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, remaining gas: 1039847.423 units remaining) [ (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, remaining gas: 1039847.423 units remaining) [ 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, remaining gas: 1039847.408 units remaining) [ 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, remaining gas: 1039847.373 units remaining) [ 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, remaining gas: 1039847.363 units remaining) [ True (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039847.363 units remaining) + - location: 136 (just consumed gas: 0, remaining gas: 1039847.363 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039847.348 units remaining) + - location: 136 (just consumed gas: 0.015, remaining gas: 1039847.348 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 142 (remaining gas: 1039847.338 units remaining) + - location: 142 (just consumed gas: 0.010, remaining gas: 1039847.338 units remaining) [ (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, remaining gas: 1039847.328 units remaining) [ False (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039847.328 units remaining) + - location: 144 (just consumed gas: 0, remaining gas: 1039847.328 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 146 (remaining gas: 1039847.318 units remaining) + - location: 146 (just consumed gas: 0.010, remaining gas: 1039847.318 units remaining) [ False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039847.293 units remaining) + - location: 144 (just consumed gas: 0.025, remaining gas: 1039847.293 units remaining) [ 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, remaining gas: 1039847.077 units remaining) [ 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, remaining gas: 1039846.656 units remaining) [ (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, remaining gas: 1039846.656 units remaining) [ 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, remaining gas: 1039846.641 units remaining) [ 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, remaining gas: 1039846.606 units remaining) [ 0 (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 160 (remaining gas: 1039846.596 units remaining) + - location: 160 (just consumed gas: 0.010, remaining gas: 1039846.596 units remaining) [ True (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039846.596 units remaining) + - location: 161 (just consumed gas: 0, remaining gas: 1039846.596 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039846.581 units remaining) + - location: 161 (just consumed gas: 0.015, remaining gas: 1039846.581 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 167 (remaining gas: 1039846.571 units remaining) + - location: 167 (just consumed gas: 0.010, remaining gas: 1039846.571 units remaining) [ (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, remaining gas: 1039846.561 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039846.561 units remaining) + - location: 169 (just consumed gas: 0, remaining gas: 1039846.561 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 171 (remaining gas: 1039846.551 units remaining) + - location: 171 (just consumed gas: 0.010, remaining gas: 1039846.551 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039846.526 units remaining) + - location: 169 (just consumed gas: 0.025, remaining gas: 1039846.526 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 172 (remaining gas: 1039846.030 units remaining) + - location: 172 (just consumed gas: 0.496, remaining gas: 1039846.030 units remaining) [ 0x050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 173 (remaining gas: 1039845.067 units remaining) + - location: 173 (just consumed gas: 0.963, remaining gas: 1039845.067 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039845.067 units remaining) + - location: 176 (just consumed gas: 0, remaining gas: 1039845.067 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039845.052 units remaining) + - location: 176 (just consumed gas: 0.015, remaining gas: 1039845.052 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 184 (remaining gas: 1039845.016 units remaining) + - location: 184 (just consumed gas: 0.036, remaining gas: 1039845.016 units remaining) [ 0 (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 185 (remaining gas: 1039845.006 units remaining) + - location: 185 (just consumed gas: 0.010, remaining gas: 1039845.006 units remaining) [ True (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039845.006 units remaining) + - location: 186 (just consumed gas: 0, remaining gas: 1039845.006 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039844.991 units remaining) + - location: 186 (just consumed gas: 0.015, remaining gas: 1039844.991 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 192 (remaining gas: 1039844.981 units remaining) + - location: 192 (just consumed gas: 0.010, remaining gas: 1039844.981 units remaining) [ (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, remaining gas: 1039844.971 units remaining) [ "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, remaining gas: 1039844.971 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 196 (remaining gas: 1039844.961 units remaining) + - location: 196 (just consumed gas: 0.010, remaining gas: 1039844.961 units remaining) [ "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 194 (remaining gas: 1039844.936 units remaining) + - location: 194 (just consumed gas: 0.025, remaining gas: 1039844.936 units remaining) [ "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, remaining gas: 1039844.620 units remaining) [ 0x050095bbb0d70b "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 198 (remaining gas: 1039844.117 units remaining) + - location: 198 (just consumed gas: 0.503, remaining gas: 1039844.117 units remaining) [ (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, remaining gas: 1039844.117 units remaining) [ "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, remaining gas: 1039844.102 units remaining) [ "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, remaining gas: 1039844.067 units remaining) [ 0 "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 210 (remaining gas: 1039844.057 units remaining) + - location: 210 (just consumed gas: 0.010, remaining gas: 1039844.057 units remaining) [ True "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039844.057 units remaining) + - location: 211 (just consumed gas: 0, remaining gas: 1039844.057 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039844.042 units remaining) + - location: 211 (just consumed gas: 0.015, remaining gas: 1039844.042 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 217 (remaining gas: 1039844.032 units remaining) + - location: 217 (just consumed gas: 0.010, remaining gas: 1039844.032 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 218 (remaining gas: 1039843.526 units remaining) + - location: 218 (just consumed gas: 0.506, remaining gas: 1039843.526 units remaining) [ 0x050a000000160000bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 219 (remaining gas: 1039842.542 units remaining) + - location: 219 (just consumed gas: 0.984, remaining gas: 1039842.542 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1039842.542 units remaining) + - location: 222 (just consumed gas: 0, remaining gas: 1039842.542 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1039842.527 units remaining) + - location: 222 (just consumed gas: 0.015, remaining gas: 1039842.527 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 230 (remaining gas: 1039842.491 units remaining) + - location: 230 (just consumed gas: 0.036, remaining gas: 1039842.491 units remaining) [ 0 ] - - location: 231 (remaining gas: 1039842.481 units remaining) + - location: 231 (just consumed gas: 0.010, remaining gas: 1039842.481 units remaining) [ True ] - - location: 232 (remaining gas: 1039842.481 units remaining) + - location: 232 (just consumed gas: 0, remaining gas: 1039842.481 units remaining) [ ] - - location: 232 (remaining gas: 1039842.466 units remaining) + - location: 232 (just consumed gas: 0.015, remaining gas: 1039842.466 units remaining) [ ] - - location: 238 (remaining gas: 1039842.456 units remaining) + - location: 238 (just consumed gas: 0.010, remaining gas: 1039842.456 units remaining) [ 0 ] - - location: 241 (remaining gas: 1039842.240 units remaining) + - location: 241 (just consumed gas: 0.216, remaining gas: 1039842.240 units remaining) [ 0x050000 ] - - location: 242 (remaining gas: 1039841.819 units remaining) + - location: 242 (just consumed gas: 0.421, remaining gas: 1039841.819 units remaining) [ (Some 0) ] - - location: 245 (remaining gas: 1039841.819 units remaining) + - location: 245 (just consumed gas: 0, remaining gas: 1039841.819 units remaining) [ 0 ] - - location: 245 (remaining gas: 1039841.804 units remaining) + - location: 245 (just consumed gas: 0.015, remaining gas: 1039841.804 units remaining) [ 0 ] - - location: 251 (remaining gas: 1039841.794 units remaining) + - location: 251 (just consumed gas: 0.010, remaining gas: 1039841.794 units remaining) [ ] - - location: 252 (remaining gas: 1039841.784 units remaining) + - location: 252 (just consumed gas: 0.010, remaining gas: 1039841.784 units remaining) [ -1 ] - - location: 255 (remaining gas: 1039841.543 units remaining) + - location: 255 (just consumed gas: 0.241, remaining gas: 1039841.543 units remaining) [ 0x050041 ] - - location: 256 (remaining gas: 1039745.222 units remaining) + - location: 256 (just consumed gas: 96.321, remaining gas: 1039745.222 units remaining) [ None ] - - location: 259 (remaining gas: 1039745.222 units remaining) + - location: 259 (just consumed gas: 0, remaining gas: 1039745.222 units remaining) [ ] - - location: 259 (remaining gas: 1039745.207 units remaining) + - location: 259 (just consumed gas: 0.015, remaining gas: 1039745.207 units remaining) [ ] - - location: 265 (remaining gas: 1039745.197 units remaining) + - location: 265 (just consumed gas: 0.010, remaining gas: 1039745.197 units remaining) [ 0x ] - - location: 268 (remaining gas: 1039744.937 units remaining) + - location: 268 (just consumed gas: 0.260, remaining gas: 1039744.937 units remaining) [ None ] - - location: 271 (remaining gas: 1039744.937 units remaining) + - location: 271 (just consumed gas: 0, remaining gas: 1039744.937 units remaining) [ ] - - location: 271 (remaining gas: 1039744.922 units remaining) + - location: 271 (just consumed gas: 0.015, remaining gas: 1039744.922 units remaining) [ ] - - location: 277 (remaining gas: 1039744.912 units remaining) + - location: 277 (just consumed gas: 0.010, remaining gas: 1039744.912 units remaining) [ 0x04 ] - - location: 280 (remaining gas: 1039744.632 units remaining) + - location: 280 (just consumed gas: 0.280, remaining gas: 1039744.632 units remaining) [ None ] - - location: 283 (remaining gas: 1039744.632 units remaining) + - location: 283 (just consumed gas: 0, remaining gas: 1039744.632 units remaining) [ ] - - location: 283 (remaining gas: 1039744.617 units remaining) + - location: 283 (just consumed gas: 0.015, remaining gas: 1039744.617 units remaining) [ ] - - location: 289 (remaining gas: 1039744.607 units remaining) + - location: 289 (just consumed gas: 0.010, remaining gas: 1039744.607 units remaining) [ 0x05 ] - - location: 292 (remaining gas: 1039744.327 units remaining) + - location: 292 (just consumed gas: 0.280, remaining gas: 1039744.327 units remaining) [ None ] - - location: 295 (remaining gas: 1039744.327 units remaining) + - location: 295 (just consumed gas: 0, remaining gas: 1039744.327 units remaining) [ ] - - location: 295 (remaining gas: 1039744.312 units remaining) + - location: 295 (just consumed gas: 0.015, remaining gas: 1039744.312 units remaining) [ ] - - location: 301 (remaining gas: 1039744.302 units remaining) + - location: 301 (just consumed gas: 0.010, remaining gas: 1039744.302 units remaining) [ Unit ] - - location: 302 (remaining gas: 1039744.292 units remaining) + - location: 302 (just consumed gas: 0.010, remaining gas: 1039744.292 units remaining) [ {} Unit ] - - location: 304 (remaining gas: 1039744.282 units remaining) + - location: 304 (just consumed gas: 0.010, remaining gas: 1039744.282 units remaining) [ (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 701f595ae548..9fb616816b56 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, remaining gas: 1039851.817 units remaining) [ (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, remaining gas: 1039851.807 units remaining) [ (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, remaining gas: 1039851.797 units remaining) [ (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, remaining gas: 1039851.787 units remaining) [ -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, remaining gas: 1039851.787 units remaining) [ (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, remaining gas: 1039851.777 units remaining) [ -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, remaining gas: 1039851.752 units remaining) [ -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, remaining gas: 1039851.511 units remaining) [ 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, remaining gas: 1039851.090 units remaining) [ (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, remaining gas: 1039851.090 units remaining) [ -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, remaining gas: 1039851.075 units remaining) [ -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, remaining gas: 1039851.040 units remaining) [ 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, remaining gas: 1039851.030 units remaining) [ 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, remaining gas: 1039851.030 units remaining) [ (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, remaining gas: 1039851.015 units remaining) [ (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, remaining gas: 1039851.005 units remaining) [ (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, remaining gas: 1039850.995 units remaining) [ 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, remaining gas: 1039850.995 units remaining) [ (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, remaining gas: 1039850.985 units remaining) [ 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, remaining gas: 1039850.960 units remaining) [ 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, remaining gas: 1039850.719 units remaining) [ 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, remaining gas: 1039850.298 units remaining) [ (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, remaining gas: 1039850.298 units remaining) [ 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, remaining gas: 1039850.283 units remaining) [ 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, remaining gas: 1039850.248 units remaining) [ 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, remaining gas: 1039850.238 units remaining) [ 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, remaining gas: 1039850.238 units remaining) [ (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, remaining gas: 1039850.223 units remaining) [ (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, remaining gas: 1039850.213 units remaining) [ (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, remaining gas: 1039850.203 units remaining) [ "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, remaining gas: 1039850.203 units remaining) [ (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, remaining gas: 1039850.193 units remaining) [ "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, remaining gas: 1039850.168 units remaining) [ "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, remaining gas: 1039849.892 units remaining) [ 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, remaining gas: 1039849.212 units remaining) [ (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, remaining gas: 1039849.212 units remaining) [ "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, remaining gas: 1039849.197 units remaining) [ "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, remaining gas: 1039849.162 units remaining) [ 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, remaining gas: 1039849.152 units remaining) [ 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, remaining gas: 1039849.152 units remaining) [ (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, remaining gas: 1039849.137 units remaining) [ (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, remaining gas: 1039849.127 units remaining) [ (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, remaining gas: 1039849.117 units remaining) [ 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, remaining gas: 1039849.117 units remaining) [ (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, remaining gas: 1039849.107 units remaining) [ 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, remaining gas: 1039849.082 units remaining) [ 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, remaining gas: 1039848.826 units remaining) [ 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, remaining gas: 1039848.261 units remaining) [ (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, remaining gas: 1039848.261 units remaining) [ 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, remaining gas: 1039848.246 units remaining) [ 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, remaining gas: 1039848.211 units remaining) [ 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, remaining gas: 1039848.201 units remaining) [ 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, remaining gas: 1039848.201 units remaining) [ (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, remaining gas: 1039848.186 units remaining) [ (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, remaining gas: 1039848.176 units remaining) [ (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, remaining gas: 1039848.166 units remaining) [ 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, remaining gas: 1039848.166 units remaining) [ (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, remaining gas: 1039848.156 units remaining) [ 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, remaining gas: 1039848.131 units remaining) [ 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, remaining gas: 1039847.865 units remaining) [ 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, remaining gas: 1039847.423 units remaining) [ (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, remaining gas: 1039847.423 units remaining) [ 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, remaining gas: 1039847.408 units remaining) [ 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, remaining gas: 1039847.373 units remaining) [ 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, remaining gas: 1039847.363 units remaining) [ True (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039847.363 units remaining) + - location: 136 (just consumed gas: 0, remaining gas: 1039847.363 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039847.348 units remaining) + - location: 136 (just consumed gas: 0.015, remaining gas: 1039847.348 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 142 (remaining gas: 1039847.338 units remaining) + - location: 142 (just consumed gas: 0.010, remaining gas: 1039847.338 units remaining) [ (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, remaining gas: 1039847.328 units remaining) [ False (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039847.328 units remaining) + - location: 144 (just consumed gas: 0, remaining gas: 1039847.328 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 146 (remaining gas: 1039847.318 units remaining) + - location: 146 (just consumed gas: 0.010, remaining gas: 1039847.318 units remaining) [ False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039847.293 units remaining) + - location: 144 (just consumed gas: 0.025, remaining gas: 1039847.293 units remaining) [ 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, remaining gas: 1039847.077 units remaining) [ 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, remaining gas: 1039846.656 units remaining) [ (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, remaining gas: 1039846.656 units remaining) [ 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, remaining gas: 1039846.641 units remaining) [ 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, remaining gas: 1039846.606 units remaining) [ 0 (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 160 (remaining gas: 1039846.596 units remaining) + - location: 160 (just consumed gas: 0.010, remaining gas: 1039846.596 units remaining) [ True (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039846.596 units remaining) + - location: 161 (just consumed gas: 0, remaining gas: 1039846.596 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039846.581 units remaining) + - location: 161 (just consumed gas: 0.015, remaining gas: 1039846.581 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 167 (remaining gas: 1039846.571 units remaining) + - location: 167 (just consumed gas: 0.010, remaining gas: 1039846.571 units remaining) [ (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, remaining gas: 1039846.561 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039846.561 units remaining) + - location: 169 (just consumed gas: 0, remaining gas: 1039846.561 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 171 (remaining gas: 1039846.551 units remaining) + - location: 171 (just consumed gas: 0.010, remaining gas: 1039846.551 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039846.526 units remaining) + - location: 169 (just consumed gas: 0.025, remaining gas: 1039846.526 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 172 (remaining gas: 1039846.030 units remaining) + - location: 172 (just consumed gas: 0.496, remaining gas: 1039846.030 units remaining) [ 0x050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 173 (remaining gas: 1039845.067 units remaining) + - location: 173 (just consumed gas: 0.963, remaining gas: 1039845.067 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039845.067 units remaining) + - location: 176 (just consumed gas: 0, remaining gas: 1039845.067 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039845.052 units remaining) + - location: 176 (just consumed gas: 0.015, remaining gas: 1039845.052 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 184 (remaining gas: 1039845.016 units remaining) + - location: 184 (just consumed gas: 0.036, remaining gas: 1039845.016 units remaining) [ 0 (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 185 (remaining gas: 1039845.006 units remaining) + - location: 185 (just consumed gas: 0.010, remaining gas: 1039845.006 units remaining) [ True (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039845.006 units remaining) + - location: 186 (just consumed gas: 0, remaining gas: 1039845.006 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039844.991 units remaining) + - location: 186 (just consumed gas: 0.015, remaining gas: 1039844.991 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 192 (remaining gas: 1039844.981 units remaining) + - location: 192 (just consumed gas: 0.010, remaining gas: 1039844.981 units remaining) [ (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, remaining gas: 1039844.971 units remaining) [ "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, remaining gas: 1039844.971 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 196 (remaining gas: 1039844.961 units remaining) + - location: 196 (just consumed gas: 0.010, remaining gas: 1039844.961 units remaining) [ "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 194 (remaining gas: 1039844.936 units remaining) + - location: 194 (just consumed gas: 0.025, remaining gas: 1039844.936 units remaining) [ "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, remaining gas: 1039844.620 units remaining) [ 0x050095bbb0d70b "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 198 (remaining gas: 1039844.117 units remaining) + - location: 198 (just consumed gas: 0.503, remaining gas: 1039844.117 units remaining) [ (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, remaining gas: 1039844.117 units remaining) [ "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, remaining gas: 1039844.102 units remaining) [ "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, remaining gas: 1039844.067 units remaining) [ 0 "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 210 (remaining gas: 1039844.057 units remaining) + - location: 210 (just consumed gas: 0.010, remaining gas: 1039844.057 units remaining) [ True "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039844.057 units remaining) + - location: 211 (just consumed gas: 0, remaining gas: 1039844.057 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039844.042 units remaining) + - location: 211 (just consumed gas: 0.015, remaining gas: 1039844.042 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 217 (remaining gas: 1039844.032 units remaining) + - location: 217 (just consumed gas: 0.010, remaining gas: 1039844.032 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 218 (remaining gas: 1039843.526 units remaining) + - location: 218 (just consumed gas: 0.506, remaining gas: 1039843.526 units remaining) [ 0x050a000000160000bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 219 (remaining gas: 1039842.542 units remaining) + - location: 219 (just consumed gas: 0.984, remaining gas: 1039842.542 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1039842.542 units remaining) + - location: 222 (just consumed gas: 0, remaining gas: 1039842.542 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1039842.527 units remaining) + - location: 222 (just consumed gas: 0.015, remaining gas: 1039842.527 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 230 (remaining gas: 1039842.491 units remaining) + - location: 230 (just consumed gas: 0.036, remaining gas: 1039842.491 units remaining) [ 0 ] - - location: 231 (remaining gas: 1039842.481 units remaining) + - location: 231 (just consumed gas: 0.010, remaining gas: 1039842.481 units remaining) [ True ] - - location: 232 (remaining gas: 1039842.481 units remaining) + - location: 232 (just consumed gas: 0, remaining gas: 1039842.481 units remaining) [ ] - - location: 232 (remaining gas: 1039842.466 units remaining) + - location: 232 (just consumed gas: 0.015, remaining gas: 1039842.466 units remaining) [ ] - - location: 238 (remaining gas: 1039842.456 units remaining) + - location: 238 (just consumed gas: 0.010, remaining gas: 1039842.456 units remaining) [ 0 ] - - location: 241 (remaining gas: 1039842.240 units remaining) + - location: 241 (just consumed gas: 0.216, remaining gas: 1039842.240 units remaining) [ 0x050000 ] - - location: 242 (remaining gas: 1039841.819 units remaining) + - location: 242 (just consumed gas: 0.421, remaining gas: 1039841.819 units remaining) [ (Some 0) ] - - location: 245 (remaining gas: 1039841.819 units remaining) + - location: 245 (just consumed gas: 0, remaining gas: 1039841.819 units remaining) [ 0 ] - - location: 245 (remaining gas: 1039841.804 units remaining) + - location: 245 (just consumed gas: 0.015, remaining gas: 1039841.804 units remaining) [ 0 ] - - location: 251 (remaining gas: 1039841.794 units remaining) + - location: 251 (just consumed gas: 0.010, remaining gas: 1039841.794 units remaining) [ ] - - location: 252 (remaining gas: 1039841.784 units remaining) + - location: 252 (just consumed gas: 0.010, remaining gas: 1039841.784 units remaining) [ -1 ] - - location: 255 (remaining gas: 1039841.543 units remaining) + - location: 255 (just consumed gas: 0.241, remaining gas: 1039841.543 units remaining) [ 0x050041 ] - - location: 256 (remaining gas: 1039745.222 units remaining) + - location: 256 (just consumed gas: 96.321, remaining gas: 1039745.222 units remaining) [ None ] - - location: 259 (remaining gas: 1039745.222 units remaining) + - location: 259 (just consumed gas: 0, remaining gas: 1039745.222 units remaining) [ ] - - location: 259 (remaining gas: 1039745.207 units remaining) + - location: 259 (just consumed gas: 0.015, remaining gas: 1039745.207 units remaining) [ ] - - location: 265 (remaining gas: 1039745.197 units remaining) + - location: 265 (just consumed gas: 0.010, remaining gas: 1039745.197 units remaining) [ 0x ] - - location: 268 (remaining gas: 1039744.937 units remaining) + - location: 268 (just consumed gas: 0.260, remaining gas: 1039744.937 units remaining) [ None ] - - location: 271 (remaining gas: 1039744.937 units remaining) + - location: 271 (just consumed gas: 0, remaining gas: 1039744.937 units remaining) [ ] - - location: 271 (remaining gas: 1039744.922 units remaining) + - location: 271 (just consumed gas: 0.015, remaining gas: 1039744.922 units remaining) [ ] - - location: 277 (remaining gas: 1039744.912 units remaining) + - location: 277 (just consumed gas: 0.010, remaining gas: 1039744.912 units remaining) [ 0x04 ] - - location: 280 (remaining gas: 1039744.632 units remaining) + - location: 280 (just consumed gas: 0.280, remaining gas: 1039744.632 units remaining) [ None ] - - location: 283 (remaining gas: 1039744.632 units remaining) + - location: 283 (just consumed gas: 0, remaining gas: 1039744.632 units remaining) [ ] - - location: 283 (remaining gas: 1039744.617 units remaining) + - location: 283 (just consumed gas: 0.015, remaining gas: 1039744.617 units remaining) [ ] - - location: 289 (remaining gas: 1039744.607 units remaining) + - location: 289 (just consumed gas: 0.010, remaining gas: 1039744.607 units remaining) [ 0x05 ] - - location: 292 (remaining gas: 1039744.327 units remaining) + - location: 292 (just consumed gas: 0.280, remaining gas: 1039744.327 units remaining) [ None ] - - location: 295 (remaining gas: 1039744.327 units remaining) + - location: 295 (just consumed gas: 0, remaining gas: 1039744.327 units remaining) [ ] - - location: 295 (remaining gas: 1039744.312 units remaining) + - location: 295 (just consumed gas: 0.015, remaining gas: 1039744.312 units remaining) [ ] - - location: 301 (remaining gas: 1039744.302 units remaining) + - location: 301 (just consumed gas: 0.010, remaining gas: 1039744.302 units remaining) [ Unit ] - - location: 302 (remaining gas: 1039744.292 units remaining) + - location: 302 (just consumed gas: 0.010, remaining gas: 1039744.292 units remaining) [ {} Unit ] - - location: 304 (remaining gas: 1039744.282 units remaining) + - location: 304 (just consumed gas: 0.010, remaining gas: 1039744.282 units remaining) [ (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 99b993f0bfd1..8e1df9a3a342 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, remaining gas: 1039497.693 units remaining) [ (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, remaining gas: 1039497.683 units remaining) [ (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, remaining gas: 1039497.673 units remaining) [ (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, remaining gas: 1039497.663 units remaining) [ "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, remaining gas: 1039497.663 units remaining) [ (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, remaining gas: 1039497.653 units remaining) [ "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, remaining gas: 1039497.628 units remaining) [ "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, remaining gas: 1039496.627 units remaining) [ 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, remaining gas: 1039496.627 units remaining) [ "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, remaining gas: 1039495.626 units remaining) [ 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, remaining gas: 1039174.467 units remaining) [ (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, remaining gas: 1039174.467 units remaining) [ "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, remaining gas: 1039174.452 units remaining) [ "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, remaining gas: 1039173.451 units remaining) [ 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, remaining gas: 1039173.426 units remaining) [ 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, remaining gas: 1039173.391 units remaining) [ 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, remaining gas: 1039173.381 units remaining) [ 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, remaining gas: 1039173.381 units remaining) [ (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, remaining gas: 1039173.366 units remaining) [ (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, remaining gas: 1039173.356 units remaining) [ (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, remaining gas: 1039173.346 units remaining) [ 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, remaining gas: 1039173.346 units remaining) [ (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, remaining gas: 1039173.336 units remaining) [ 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, remaining gas: 1039173.311 units remaining) [ 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, remaining gas: 1039173.095 units remaining) [ 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, remaining gas: 1039173.095 units remaining) [ 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, remaining gas: 1039172.879 units remaining) [ 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, remaining gas: 1039172.458 units remaining) [ (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, remaining gas: 1039172.458 units remaining) [ 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, remaining gas: 1039172.443 units remaining) [ 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, remaining gas: 1039172.227 units remaining) [ 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, remaining gas: 1039172.202 units remaining) [ 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, remaining gas: 1039172.167 units remaining) [ 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, remaining gas: 1039172.157 units remaining) [ 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, remaining gas: 1039172.157 units remaining) [ (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, remaining gas: 1039172.142 units remaining) [ (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, remaining gas: 1039172.132 units remaining) [ (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, remaining gas: 1039172.122 units remaining) [ "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, remaining gas: 1039172.122 units remaining) [ (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, remaining gas: 1039172.112 units remaining) [ "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, remaining gas: 1039172.087 units remaining) [ "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, remaining gas: 1039171.186 units remaining) [ 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, remaining gas: 1039171.186 units remaining) [ "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, remaining gas: 1039170.285 units remaining) [ 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, remaining gas: 1039168.455 units remaining) [ (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, remaining gas: 1039168.455 units remaining) [ "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, remaining gas: 1039168.440 units remaining) [ "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, remaining gas: 1039167.539 units remaining) [ 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, remaining gas: 1039167.514 units remaining) [ 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, remaining gas: 1039167.478 units remaining) [ 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, remaining gas: 1039167.468 units remaining) [ 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, remaining gas: 1039167.468 units remaining) [ (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, remaining gas: 1039167.453 units remaining) [ (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, remaining gas: 1039167.443 units remaining) [ (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, remaining gas: 1039167.433 units remaining) [ (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, remaining gas: 1039167.433 units remaining) [ (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, remaining gas: 1039167.423 units remaining) [ (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, remaining gas: 1039167.398 units remaining) [ (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, remaining gas: 1039166.281 units remaining) [ 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, remaining gas: 1039166.281 units remaining) [ (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, remaining gas: 1039165.164 units remaining) [ 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, remaining gas: 1039163.193 units remaining) [ (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, remaining gas: 1039163.193 units remaining) [ (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, remaining gas: 1039163.178 units remaining) [ (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, remaining gas: 1039162.061 units remaining) [ 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, remaining gas: 1039162.036 units remaining) [ 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, remaining gas: 1039162 units remaining) [ 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, remaining gas: 1039161.990 units remaining) [ 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, remaining gas: 1039161.990 units remaining) [ (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, remaining gas: 1039161.975 units remaining) [ (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, remaining gas: 1039161.965 units remaining) [ (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, remaining gas: 1039161.955 units remaining) [ { 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, remaining gas: 1039161.955 units remaining) [ (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, remaining gas: 1039161.945 units remaining) [ { 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, remaining gas: 1039161.920 units remaining) [ { 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, remaining gas: 1039161.488 units remaining) [ 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, remaining gas: 1039161.488 units remaining) [ { 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, remaining gas: 1039161.056 units remaining) [ 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, remaining gas: 1039160.432 units remaining) [ (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, remaining gas: 1039160.432 units remaining) [ { 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, remaining gas: 1039160.417 units remaining) [ { 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, remaining gas: 1039159.985 units remaining) [ 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, remaining gas: 1039159.960 units remaining) [ 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, remaining gas: 1039159.925 units remaining) [ 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, remaining gas: 1039159.915 units remaining) [ 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, remaining gas: 1039159.915 units remaining) [ (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, remaining gas: 1039159.900 units remaining) [ (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, remaining gas: 1039159.890 units remaining) [ (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, remaining gas: 1039159.880 units remaining) [ { 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, remaining gas: 1039159.880 units remaining) [ (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, remaining gas: 1039159.870 units remaining) [ { 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, remaining gas: 1039159.845 units remaining) [ { 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, remaining gas: 1039159.413 units remaining) [ 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, remaining gas: 1039159.413 units remaining) [ { 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, remaining gas: 1039158.981 units remaining) [ 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, remaining gas: 1039158.225 units remaining) [ (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, remaining gas: 1039158.225 units remaining) [ { 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, remaining gas: 1039158.210 units remaining) [ { 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, remaining gas: 1039157.778 units remaining) [ 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, remaining gas: 1039157.753 units remaining) [ 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, remaining gas: 1039157.718 units remaining) [ 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, remaining gas: 1039157.708 units remaining) [ 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, remaining gas: 1039157.708 units remaining) [ (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, remaining gas: 1039157.693 units remaining) [ (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, remaining gas: 1039157.683 units remaining) [ (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, remaining gas: 1039157.673 units remaining) [ (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, remaining gas: 1039157.673 units remaining) [ (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, remaining gas: 1039157.663 units remaining) [ (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, remaining gas: 1039157.638 units remaining) [ (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, remaining gas: 1039156.940 units remaining) [ 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, remaining gas: 1039156.940 units remaining) [ (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, remaining gas: 1039156.242 units remaining) [ 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, remaining gas: 1039155.539 units remaining) [ (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, remaining gas: 1039155.539 units remaining) [ (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, remaining gas: 1039155.524 units remaining) [ (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, remaining gas: 1039154.826 units remaining) [ 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, remaining gas: 1039154.801 units remaining) [ 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, remaining gas: 1039154.766 units remaining) [ 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, remaining gas: 1039154.756 units remaining) [ 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, remaining gas: 1039154.756 units remaining) [ (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, remaining gas: 1039154.741 units remaining) [ (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, remaining gas: 1039154.731 units remaining) [ (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, remaining gas: 1039154.721 units remaining) [ (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, remaining gas: 1039154.721 units remaining) [ (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, remaining gas: 1039154.711 units remaining) [ (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, remaining gas: 1039154.686 units remaining) [ (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, remaining gas: 1039153.974 units remaining) [ 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, remaining gas: 1039153.974 units remaining) [ (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, remaining gas: 1039153.262 units remaining) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 246 (remaining gas: 1039152.158 units remaining) + - location: 246 (just consumed gas: 1.104, remaining gas: 1039152.158 units remaining) [ (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, remaining gas: 1039152.158 units remaining) [ (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, remaining gas: 1039152.143 units remaining) [ (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, remaining gas: 1039151.431 units remaining) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 243 (remaining gas: 1039151.406 units remaining) + - location: 243 (just consumed gas: 0.025, remaining gas: 1039151.406 units remaining) [ 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, remaining gas: 1039151.371 units remaining) [ 0 (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 261 (remaining gas: 1039151.361 units remaining) + - location: 261 (just consumed gas: 0.010, remaining gas: 1039151.361 units remaining) [ True (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 262 (remaining gas: 1039151.361 units remaining) + - location: 262 (just consumed gas: 0, remaining gas: 1039151.361 units remaining) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 262 (remaining gas: 1039151.346 units remaining) + - location: 262 (just consumed gas: 0.015, remaining gas: 1039151.346 units remaining) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 268 (remaining gas: 1039151.336 units remaining) + - location: 268 (just consumed gas: 0.010, remaining gas: 1039151.336 units remaining) [ (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, remaining gas: 1039151.326 units remaining) [ { 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, remaining gas: 1039151.326 units remaining) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 272 (remaining gas: 1039151.316 units remaining) + - location: 272 (just consumed gas: 0.010, remaining gas: 1039151.316 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 270 (remaining gas: 1039151.291 units remaining) + - location: 270 (just consumed gas: 0.025, remaining gas: 1039151.291 units remaining) [ { 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, remaining gas: 1039149.824 units remaining) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 274 (remaining gas: 1039149.824 units remaining) + - location: 274 (just consumed gas: 0, remaining gas: 1039149.824 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 276 (remaining gas: 1039148.357 units remaining) + - location: 276 (just consumed gas: 1.467, remaining gas: 1039148.357 units remaining) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 277 (remaining gas: 1039146.699 units remaining) + - location: 277 (just consumed gas: 1.658, remaining gas: 1039146.699 units remaining) [ (Some { Elt 0 "foo" ; Elt 1 "bar" }) { PACK } ] - - location: 282 (remaining gas: 1039146.699 units remaining) + - location: 282 (just consumed gas: 0, remaining gas: 1039146.699 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 282 (remaining gas: 1039146.684 units remaining) + - location: 282 (just consumed gas: 0.015, remaining gas: 1039146.684 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 288 (remaining gas: 1039145.217 units remaining) + - location: 288 (just consumed gas: 1.467, remaining gas: 1039145.217 units remaining) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 274 (remaining gas: 1039145.192 units remaining) + - location: 274 (just consumed gas: 0.025, remaining gas: 1039145.192 units remaining) [ 0x050200000018070400000100000003666f6f070400010100000003626172 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 291 (remaining gas: 1039145.157 units remaining) + - location: 291 (just consumed gas: 0.035, remaining gas: 1039145.157 units remaining) [ 0 { PACK } ] - - location: 292 (remaining gas: 1039145.147 units remaining) + - location: 292 (just consumed gas: 0.010, remaining gas: 1039145.147 units remaining) [ True { PACK } ] - - location: 293 (remaining gas: 1039145.147 units remaining) + - location: 293 (just consumed gas: 0, remaining gas: 1039145.147 units remaining) [ { PACK } ] - - location: 293 (remaining gas: 1039145.132 units remaining) + - location: 293 (just consumed gas: 0.015, remaining gas: 1039145.132 units remaining) [ { PACK } ] - - location: 299 (remaining gas: 1039145.122 units remaining) + - location: 299 (just consumed gas: 0.010, remaining gas: 1039145.122 units remaining) [ { PACK } { PACK } ] - - location: 300 (remaining gas: 1039144.525 units remaining) + - location: 300 (just consumed gas: 0.597, remaining gas: 1039144.525 units remaining) [ 0x050200000002030c { PACK } ] - - location: 301 (remaining gas: 1039144.525 units remaining) + - location: 301 (just consumed gas: 0, remaining gas: 1039144.525 units remaining) [ { PACK } ] - - location: 303 (remaining gas: 1039143.928 units remaining) + - location: 303 (just consumed gas: 0.597, remaining gas: 1039143.928 units remaining) [ 0x050200000002030c ] - - location: 304 (remaining gas: 1039142.904 units remaining) + - location: 304 (just consumed gas: 1.024, remaining gas: 1039142.904 units remaining) [ (Some { PACK }) ] - - location: 309 (remaining gas: 1039142.904 units remaining) + - location: 309 (just consumed gas: 0, remaining gas: 1039142.904 units remaining) [ { PACK } ] - - location: 309 (remaining gas: 1039142.889 units remaining) + - location: 309 (just consumed gas: 0.015, remaining gas: 1039142.889 units remaining) [ { PACK } ] - - location: 315 (remaining gas: 1039142.292 units remaining) + - location: 315 (just consumed gas: 0.597, remaining gas: 1039142.292 units remaining) [ 0x050200000002030c ] - - location: 301 (remaining gas: 1039142.267 units remaining) + - location: 301 (just consumed gas: 0.025, remaining gas: 1039142.267 units remaining) [ 0x050200000002030c 0x050200000002030c ] - - location: 318 (remaining gas: 1039142.232 units remaining) + - location: 318 (just consumed gas: 0.035, remaining gas: 1039142.232 units remaining) [ 0 ] - - location: 319 (remaining gas: 1039142.222 units remaining) + - location: 319 (just consumed gas: 0.010, remaining gas: 1039142.222 units remaining) [ True ] - - location: 320 (remaining gas: 1039142.222 units remaining) + - location: 320 (just consumed gas: 0, remaining gas: 1039142.222 units remaining) [ ] - - location: 320 (remaining gas: 1039142.207 units remaining) + - location: 320 (just consumed gas: 0.015, remaining gas: 1039142.207 units remaining) [ ] - - location: 326 (remaining gas: 1039142.197 units remaining) + - location: 326 (just consumed gas: 0.010, remaining gas: 1039142.197 units remaining) [ Unit ] - - location: 327 (remaining gas: 1039142.187 units remaining) + - location: 327 (just consumed gas: 0.010, remaining gas: 1039142.187 units remaining) [ {} Unit ] - - location: 329 (remaining gas: 1039142.177 units remaining) + - location: 329 (just consumed gas: 0.010, remaining gas: 1039142.177 units remaining) [ (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 30b9a497c641..8ffc765b756e 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, remaining gas: 1039507.420 units remaining) [ (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, remaining gas: 1039507.410 units remaining) [ (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, remaining gas: 1039507.400 units remaining) [ (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, remaining gas: 1039507.390 units remaining) [ "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, remaining gas: 1039507.390 units remaining) [ (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, remaining gas: 1039507.380 units remaining) [ "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, remaining gas: 1039507.355 units remaining) [ "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, remaining gas: 1039506.354 units remaining) [ 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, remaining gas: 1039506.354 units remaining) [ "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, remaining gas: 1039505.353 units remaining) [ 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, remaining gas: 1039184.194 units remaining) [ (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, remaining gas: 1039184.194 units remaining) [ "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, remaining gas: 1039184.179 units remaining) [ "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, remaining gas: 1039183.178 units remaining) [ 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, remaining gas: 1039183.153 units remaining) [ 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, remaining gas: 1039183.118 units remaining) [ 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, remaining gas: 1039183.108 units remaining) [ 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, remaining gas: 1039183.108 units remaining) [ (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, remaining gas: 1039183.093 units remaining) [ (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, remaining gas: 1039183.083 units remaining) [ (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, remaining gas: 1039183.073 units remaining) [ 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, remaining gas: 1039183.073 units remaining) [ (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, remaining gas: 1039183.063 units remaining) [ 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, remaining gas: 1039183.038 units remaining) [ 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, remaining gas: 1039182.822 units remaining) [ 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, remaining gas: 1039182.822 units remaining) [ 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, remaining gas: 1039182.606 units remaining) [ 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, remaining gas: 1039182.185 units remaining) [ (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, remaining gas: 1039182.185 units remaining) [ 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, remaining gas: 1039182.170 units remaining) [ 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, remaining gas: 1039181.954 units remaining) [ 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, remaining gas: 1039181.929 units remaining) [ 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, remaining gas: 1039181.894 units remaining) [ 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, remaining gas: 1039181.884 units remaining) [ 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, remaining gas: 1039181.884 units remaining) [ (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, remaining gas: 1039181.869 units remaining) [ (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, remaining gas: 1039181.859 units remaining) [ (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, remaining gas: 1039181.849 units remaining) [ "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, remaining gas: 1039181.849 units remaining) [ (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, remaining gas: 1039181.839 units remaining) [ "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, remaining gas: 1039181.814 units remaining) [ "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, remaining gas: 1039180.913 units remaining) [ 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, remaining gas: 1039180.913 units remaining) [ "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, remaining gas: 1039180.012 units remaining) [ 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, remaining gas: 1039178.182 units remaining) [ (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, remaining gas: 1039178.182 units remaining) [ "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, remaining gas: 1039178.167 units remaining) [ "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, remaining gas: 1039177.266 units remaining) [ 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, remaining gas: 1039177.241 units remaining) [ 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, remaining gas: 1039177.205 units remaining) [ 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, remaining gas: 1039177.195 units remaining) [ 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, remaining gas: 1039177.195 units remaining) [ (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, remaining gas: 1039177.180 units remaining) [ (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, remaining gas: 1039177.170 units remaining) [ (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, remaining gas: 1039177.160 units remaining) [ 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, remaining gas: 1039177.160 units remaining) [ (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, remaining gas: 1039177.150 units remaining) [ 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, remaining gas: 1039177.125 units remaining) [ 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, remaining gas: 1039176.909 units remaining) [ 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, remaining gas: 1039176.909 units remaining) [ 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, remaining gas: 1039176.693 units remaining) [ 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, remaining gas: 1039176.272 units remaining) [ (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, remaining gas: 1039176.272 units remaining) [ 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, remaining gas: 1039176.257 units remaining) [ 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, remaining gas: 1039176.041 units remaining) [ 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, remaining gas: 1039176.016 units remaining) [ 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, remaining gas: 1039175.981 units remaining) [ 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, remaining gas: 1039175.971 units remaining) [ 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, remaining gas: 1039175.971 units remaining) [ (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, remaining gas: 1039175.956 units remaining) [ (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, remaining gas: 1039175.946 units remaining) [ (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, remaining gas: 1039175.936 units remaining) [ {} (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, remaining gas: 1039175.936 units remaining) [ (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, remaining gas: 1039175.926 units remaining) [ {} (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, remaining gas: 1039175.901 units remaining) [ {} {} (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, remaining gas: 1039175.685 units remaining) [ 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, remaining gas: 1039175.685 units remaining) [ {} (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, remaining gas: 1039175.469 units remaining) [ 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, remaining gas: 1039174.986 units remaining) [ (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, remaining gas: 1039174.986 units remaining) [ {} (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, remaining gas: 1039174.971 units remaining) [ {} (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, remaining gas: 1039174.755 units remaining) [ 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, remaining gas: 1039174.730 units remaining) [ 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, remaining gas: 1039174.695 units remaining) [ 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, remaining gas: 1039174.685 units remaining) [ 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, remaining gas: 1039174.685 units remaining) [ (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, remaining gas: 1039174.670 units remaining) [ (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, remaining gas: 1039174.660 units remaining) [ (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, remaining gas: 1039174.650 units remaining) [ {} (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, remaining gas: 1039174.650 units remaining) [ (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, remaining gas: 1039174.640 units remaining) [ {} (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, remaining gas: 1039174.615 units remaining) [ {} {} (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, remaining gas: 1039174.399 units remaining) [ 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, remaining gas: 1039174.399 units remaining) [ {} (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, remaining gas: 1039174.183 units remaining) [ 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, remaining gas: 1039173.700 units remaining) [ (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, remaining gas: 1039173.700 units remaining) [ {} (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, remaining gas: 1039173.685 units remaining) [ {} (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, remaining gas: 1039173.469 units remaining) [ 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, remaining gas: 1039173.444 units remaining) [ 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, remaining gas: 1039173.409 units remaining) [ 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, remaining gas: 1039173.399 units remaining) [ 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, remaining gas: 1039173.399 units remaining) [ (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, remaining gas: 1039173.384 units remaining) [ (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, remaining gas: 1039173.374 units remaining) [ (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, remaining gas: 1039173.364 units remaining) [ (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, remaining gas: 1039173.364 units remaining) [ (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, remaining gas: 1039173.354 units remaining) [ (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, remaining gas: 1039173.329 units remaining) [ (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, remaining gas: 1039172.631 units remaining) [ 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, remaining gas: 1039172.631 units remaining) [ (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, remaining gas: 1039171.933 units remaining) [ 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, remaining gas: 1039171.230 units remaining) [ (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, remaining gas: 1039171.230 units remaining) [ (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, remaining gas: 1039171.215 units remaining) [ (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, remaining gas: 1039170.517 units remaining) [ 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, remaining gas: 1039170.492 units remaining) [ 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, remaining gas: 1039170.457 units remaining) [ 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, remaining gas: 1039170.447 units remaining) [ 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, remaining gas: 1039170.447 units remaining) [ (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, remaining gas: 1039170.432 units remaining) [ (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, remaining gas: 1039170.422 units remaining) [ (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, remaining gas: 1039170.412 units remaining) [ (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, remaining gas: 1039170.412 units remaining) [ (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, remaining gas: 1039170.402 units remaining) [ (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, remaining gas: 1039170.377 units remaining) [ (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, remaining gas: 1039169.845 units remaining) [ 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, remaining gas: 1039169.845 units remaining) [ (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, remaining gas: 1039169.313 units remaining) [ 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 246 (remaining gas: 1039168.669 units remaining) + - location: 246 (just consumed gas: 0.644, remaining gas: 1039168.669 units remaining) [ (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, remaining gas: 1039168.669 units remaining) [ (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, remaining gas: 1039168.654 units remaining) [ (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, remaining gas: 1039168.122 units remaining) [ 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 243 (remaining gas: 1039168.097 units remaining) + - location: 243 (just consumed gas: 0.025, remaining gas: 1039168.097 units remaining) [ 0x0505080095bbb0d70b 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 260 (remaining gas: 1039168.062 units remaining) + - location: 260 (just consumed gas: 0.035, remaining gas: 1039168.062 units remaining) [ 0 (Pair {} { DUP ; DROP ; PACK }) ] - - location: 261 (remaining gas: 1039168.052 units remaining) + - location: 261 (just consumed gas: 0.010, remaining gas: 1039168.052 units remaining) [ True (Pair {} { DUP ; DROP ; PACK }) ] - - location: 262 (remaining gas: 1039168.052 units remaining) + - location: 262 (just consumed gas: 0, remaining gas: 1039168.052 units remaining) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 262 (remaining gas: 1039168.037 units remaining) + - location: 262 (just consumed gas: 0.015, remaining gas: 1039168.037 units remaining) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 268 (remaining gas: 1039168.027 units remaining) + - location: 268 (just consumed gas: 0.010, remaining gas: 1039168.027 units remaining) [ (Pair {} { DUP ; DROP ; PACK }) (Pair {} { DUP ; DROP ; PACK }) ] - - location: 269 (remaining gas: 1039168.017 units remaining) + - location: 269 (just consumed gas: 0.010, remaining gas: 1039168.017 units remaining) [ {} (Pair {} { DUP ; DROP ; PACK }) ] - - location: 270 (remaining gas: 1039168.017 units remaining) + - location: 270 (just consumed gas: 0, remaining gas: 1039168.017 units remaining) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 272 (remaining gas: 1039168.007 units remaining) + - location: 272 (just consumed gas: 0.010, remaining gas: 1039168.007 units remaining) [ {} { DUP ; DROP ; PACK } ] - - location: 270 (remaining gas: 1039167.982 units remaining) + - location: 270 (just consumed gas: 0.025, remaining gas: 1039167.982 units remaining) [ {} {} { DUP ; DROP ; PACK } ] - - location: 273 (remaining gas: 1039167.766 units remaining) + - location: 273 (just consumed gas: 0.216, remaining gas: 1039167.766 units remaining) [ 0x050200000000 {} { DUP ; DROP ; PACK } ] - - location: 274 (remaining gas: 1039167.766 units remaining) + - location: 274 (just consumed gas: 0, remaining gas: 1039167.766 units remaining) [ {} { DUP ; DROP ; PACK } ] - - location: 276 (remaining gas: 1039167.550 units remaining) + - location: 276 (just consumed gas: 0.216, remaining gas: 1039167.550 units remaining) [ 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 277 (remaining gas: 1039167.067 units remaining) + - location: 277 (just consumed gas: 0.483, remaining gas: 1039167.067 units remaining) [ (Some {}) { DUP ; DROP ; PACK } ] - - location: 282 (remaining gas: 1039167.067 units remaining) + - location: 282 (just consumed gas: 0, remaining gas: 1039167.067 units remaining) [ {} { DUP ; DROP ; PACK } ] - - location: 282 (remaining gas: 1039167.052 units remaining) + - location: 282 (just consumed gas: 0.015, remaining gas: 1039167.052 units remaining) [ {} { DUP ; DROP ; PACK } ] - - location: 288 (remaining gas: 1039166.836 units remaining) + - location: 288 (just consumed gas: 0.216, remaining gas: 1039166.836 units remaining) [ 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 274 (remaining gas: 1039166.811 units remaining) + - location: 274 (just consumed gas: 0.025, remaining gas: 1039166.811 units remaining) [ 0x050200000000 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 291 (remaining gas: 1039166.776 units remaining) + - location: 291 (just consumed gas: 0.035, remaining gas: 1039166.776 units remaining) [ 0 { DUP ; DROP ; PACK } ] - - location: 292 (remaining gas: 1039166.766 units remaining) + - location: 292 (just consumed gas: 0.010, remaining gas: 1039166.766 units remaining) [ True { DUP ; DROP ; PACK } ] - - location: 293 (remaining gas: 1039166.766 units remaining) + - location: 293 (just consumed gas: 0, remaining gas: 1039166.766 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 293 (remaining gas: 1039166.751 units remaining) + - location: 293 (just consumed gas: 0.015, remaining gas: 1039166.751 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 299 (remaining gas: 1039166.741 units remaining) + - location: 299 (just consumed gas: 0.010, remaining gas: 1039166.741 units remaining) [ { DUP ; DROP ; PACK } { DUP ; DROP ; PACK } ] - - location: 300 (remaining gas: 1039165.612 units remaining) + - location: 300 (just consumed gas: 1.129, remaining gas: 1039165.612 units remaining) [ 0x05020000000603210320030c { DUP ; DROP ; PACK } ] - - location: 301 (remaining gas: 1039165.612 units remaining) + - location: 301 (just consumed gas: 0, remaining gas: 1039165.612 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 303 (remaining gas: 1039164.483 units remaining) + - location: 303 (just consumed gas: 1.129, remaining gas: 1039164.483 units remaining) [ 0x05020000000603210320030c ] - - location: 304 (remaining gas: 1039162.397 units remaining) + - location: 304 (just consumed gas: 2.086, remaining gas: 1039162.397 units remaining) [ (Some { DUP ; DROP ; PACK }) ] - - location: 309 (remaining gas: 1039162.397 units remaining) + - location: 309 (just consumed gas: 0, remaining gas: 1039162.397 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 309 (remaining gas: 1039162.382 units remaining) + - location: 309 (just consumed gas: 0.015, remaining gas: 1039162.382 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 315 (remaining gas: 1039161.253 units remaining) + - location: 315 (just consumed gas: 1.129, remaining gas: 1039161.253 units remaining) [ 0x05020000000603210320030c ] - - location: 301 (remaining gas: 1039161.228 units remaining) + - location: 301 (just consumed gas: 0.025, remaining gas: 1039161.228 units remaining) [ 0x05020000000603210320030c 0x05020000000603210320030c ] - - location: 318 (remaining gas: 1039161.193 units remaining) + - location: 318 (just consumed gas: 0.035, remaining gas: 1039161.193 units remaining) [ 0 ] - - location: 319 (remaining gas: 1039161.183 units remaining) + - location: 319 (just consumed gas: 0.010, remaining gas: 1039161.183 units remaining) [ True ] - - location: 320 (remaining gas: 1039161.183 units remaining) + - location: 320 (just consumed gas: 0, remaining gas: 1039161.183 units remaining) [ ] - - location: 320 (remaining gas: 1039161.168 units remaining) + - location: 320 (just consumed gas: 0.015, remaining gas: 1039161.168 units remaining) [ ] - - location: 326 (remaining gas: 1039161.158 units remaining) + - location: 326 (just consumed gas: 0.010, remaining gas: 1039161.158 units remaining) [ Unit ] - - location: 327 (remaining gas: 1039161.148 units remaining) + - location: 327 (just consumed gas: 0.010, remaining gas: 1039161.148 units remaining) [ {} Unit ] - - location: 329 (remaining gas: 1039161.138 units remaining) + - location: 329 (just consumed gas: 0.010, remaining gas: 1039161.138 units remaining) [ (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 4d93ce72b796..ecea7cf9f2b6 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, remaining gas: 1039994.499 units remaining) [ (Pair (Pair False False) None) ] - - location: 12 (remaining gas: 1039994.489 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.489 units remaining) [ (Pair False False) ] - - location: 13 (remaining gas: 1039994.479 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.479 units remaining) [ (Some (Pair False False)) ] - - location: 14 (remaining gas: 1039994.469 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.469 units remaining) [ {} (Some (Pair False False)) ] - - location: 16 (remaining gas: 1039994.459 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039994.459 units remaining) [ (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 c6633e1a232d..cc2144c54bbf 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, remaining gas: 1039994.499 units remaining) [ (Pair (Pair False True) None) ] - - location: 12 (remaining gas: 1039994.489 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.489 units remaining) [ (Pair False True) ] - - location: 13 (remaining gas: 1039994.479 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.479 units remaining) [ (Some (Pair False True)) ] - - location: 14 (remaining gas: 1039994.469 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.469 units remaining) [ {} (Some (Pair False True)) ] - - location: 16 (remaining gas: 1039994.459 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039994.459 units remaining) [ (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 34a143823a1b..89ffc12f8cf8 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, remaining gas: 1039994.499 units remaining) [ (Pair (Pair True False) None) ] - - location: 12 (remaining gas: 1039994.489 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.489 units remaining) [ (Pair True False) ] - - location: 13 (remaining gas: 1039994.479 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.479 units remaining) [ (Some (Pair True False)) ] - - location: 14 (remaining gas: 1039994.469 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.469 units remaining) [ {} (Some (Pair True False)) ] - - location: 16 (remaining gas: 1039994.459 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039994.459 units remaining) [ (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 eacc04badc89..8506b35ea88b 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, remaining gas: 1039994.499 units remaining) [ (Pair (Pair True True) None) ] - - location: 12 (remaining gas: 1039994.489 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.489 units remaining) [ (Pair True True) ] - - location: 13 (remaining gas: 1039994.479 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.479 units remaining) [ (Some (Pair True True)) ] - - location: 14 (remaining gas: 1039994.469 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.469 units remaining) [ {} (Some (Pair True True)) ] - - location: 16 (remaining gas: 1039994.459 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039994.459 units remaining) [ (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 2a5a9c0d865d..a661980774c7 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, remaining gas: 1039990.979 units remaining) [ (Pair 38 14) ] - - location: 7 (remaining gas: 1039990.969 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039990.969 units remaining) [ { UNPAIR ; ADD } (Pair 38 14) ] - - location: 15 (remaining gas: 1039990.959 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.959 units remaining) [ (Pair 38 14) { UNPAIR ; ADD } ] - - location: 16 (remaining gas: 1039990.949 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.949 units remaining) [ 38 14 { UNPAIR ; ADD } ] - - location: 17 (remaining gas: 1039990.949 units remaining) + - location: 17 (just consumed gas: 0, remaining gas: 1039990.949 units remaining) [ 14 { UNPAIR ; ADD } ] - - location: 19 (remaining gas: 1039990.548 units remaining) + - location: 19 (just consumed gas: 0.401, remaining gas: 1039990.548 units remaining) [ { PUSH nat 14 ; PAIR ; { UNPAIR ; ADD } } ] - - location: 17 (remaining gas: 1039990.523 units remaining) + - location: 17 (just consumed gas: 0.025, remaining gas: 1039990.523 units remaining) [ 38 { PUSH nat 14 ; PAIR ; { UNPAIR ; ADD } } ] - - location: 12 (remaining gas: 1039990.513 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.513 units remaining) [ 14 38 ] - - location: 12 (remaining gas: 1039990.503 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.503 units remaining) [ (Pair 14 38) ] - - location: 13 (remaining gas: 1039990.493 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039990.493 units remaining) [ 14 38 ] - - location: 14 (remaining gas: 1039990.458 units remaining) + - location: 14 (just consumed gas: 0.035, remaining gas: 1039990.458 units remaining) [ 52 ] - - location: 20 (remaining gas: 1039990.433 units remaining) + - location: 20 (just consumed gas: 0.025, remaining gas: 1039990.433 units remaining) [ 52 ] - - location: 21 (remaining gas: 1039990.423 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.423 units remaining) [ {} 52 ] - - location: 23 (remaining gas: 1039990.413 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039990.413 units remaining) [ (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 00b0d4a1f6b8..f42a6f07499c 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, remaining gas: 1039982.991 units remaining) [ (Pair 4 { 0 ; 1 ; 2 ; 3 }) ] - - location: 8 (remaining gas: 1039982.981 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039982.981 units remaining) [ 4 { 0 ; 1 ; 2 ; 3 } ] - - location: 9 (remaining gas: 1039982.971 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039982.971 units remaining) [ { 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, remaining gas: 1039982.961 units remaining) [ 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, remaining gas: 1039982.560 units remaining) [ { 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, remaining gas: 1039982.550 units remaining) [ 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, remaining gas: 1039982.149 units remaining) [ { 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, remaining gas: 1039982.139 units remaining) [ { 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, remaining gas: 1039982.139 units remaining) [ 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, remaining gas: 1039982.139 units remaining) [ { 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, remaining gas: 1039982.129 units remaining) [ { 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, remaining gas: 1039982.104 units remaining) [ 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, remaining gas: 1039982.094 units remaining) [ 3 0 ] - - location: 16 (remaining gas: 1039982.084 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039982.084 units remaining) [ (Pair 3 0) ] - - location: 16 (remaining gas: 1039982.074 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039982.074 units remaining) [ 4 (Pair 3 0) ] - - location: 16 (remaining gas: 1039982.064 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039982.064 units remaining) [ (Pair 4 3 0) ] - - location: 17 (remaining gas: 1039982.054 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039982.054 units remaining) [ 4 (Pair 3 0) ] - - location: 18 (remaining gas: 1039982.054 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039982.054 units remaining) [ (Pair 3 0) ] - - location: 20 (remaining gas: 1039982.044 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039982.044 units remaining) [ 3 0 ] - - location: 18 (remaining gas: 1039982.019 units remaining) + - location: 18 (just consumed gas: 0.025, remaining gas: 1039982.019 units remaining) [ 4 3 0 ] - - location: 21 (remaining gas: 1039981.984 units remaining) + - location: 21 (just consumed gas: 0.035, remaining gas: 1039981.984 units remaining) [ 7 0 ] - - location: 22 (remaining gas: 1039981.928 units remaining) + - location: 22 (just consumed gas: 0.056, remaining gas: 1039981.928 units remaining) [ 0 ] - - location: 35 (remaining gas: 1039981.903 units remaining) + - location: 35 (just consumed gas: 0.025, remaining gas: 1039981.903 units remaining) [ 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, remaining gas: 1039981.888 units remaining) [ 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, remaining gas: 1039981.888 units remaining) [ { 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, remaining gas: 1039981.878 units remaining) [ { 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, remaining gas: 1039981.853 units remaining) [ 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, remaining gas: 1039981.843 units remaining) [ 3 1 ] - - location: 16 (remaining gas: 1039981.833 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.833 units remaining) [ (Pair 3 1) ] - - location: 16 (remaining gas: 1039981.823 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.823 units remaining) [ 4 (Pair 3 1) ] - - location: 16 (remaining gas: 1039981.813 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.813 units remaining) [ (Pair 4 3 1) ] - - location: 17 (remaining gas: 1039981.803 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039981.803 units remaining) [ 4 (Pair 3 1) ] - - location: 18 (remaining gas: 1039981.803 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039981.803 units remaining) [ (Pair 3 1) ] - - location: 20 (remaining gas: 1039981.793 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039981.793 units remaining) [ 3 1 ] - - location: 18 (remaining gas: 1039981.768 units remaining) + - location: 18 (just consumed gas: 0.025, remaining gas: 1039981.768 units remaining) [ 4 3 1 ] - - location: 21 (remaining gas: 1039981.733 units remaining) + - location: 21 (just consumed gas: 0.035, remaining gas: 1039981.733 units remaining) [ 7 1 ] - - location: 22 (remaining gas: 1039981.674 units remaining) + - location: 22 (just consumed gas: 0.059, remaining gas: 1039981.674 units remaining) [ 7 ] - - location: 35 (remaining gas: 1039981.649 units remaining) + - location: 35 (just consumed gas: 0.025, remaining gas: 1039981.649 units remaining) [ 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, remaining gas: 1039981.634 units remaining) [ 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, remaining gas: 1039981.634 units remaining) [ { 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, remaining gas: 1039981.624 units remaining) [ { 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, remaining gas: 1039981.599 units remaining) [ 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, remaining gas: 1039981.589 units remaining) [ 3 2 ] - - location: 16 (remaining gas: 1039981.579 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.579 units remaining) [ (Pair 3 2) ] - - location: 16 (remaining gas: 1039981.569 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.569 units remaining) [ 4 (Pair 3 2) ] - - location: 16 (remaining gas: 1039981.559 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.559 units remaining) [ (Pair 4 3 2) ] - - location: 17 (remaining gas: 1039981.549 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039981.549 units remaining) [ 4 (Pair 3 2) ] - - location: 18 (remaining gas: 1039981.549 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039981.549 units remaining) [ (Pair 3 2) ] - - location: 20 (remaining gas: 1039981.539 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039981.539 units remaining) [ 3 2 ] - - location: 18 (remaining gas: 1039981.514 units remaining) + - location: 18 (just consumed gas: 0.025, remaining gas: 1039981.514 units remaining) [ 4 3 2 ] - - location: 21 (remaining gas: 1039981.479 units remaining) + - location: 21 (just consumed gas: 0.035, remaining gas: 1039981.479 units remaining) [ 7 2 ] - - location: 22 (remaining gas: 1039981.420 units remaining) + - location: 22 (just consumed gas: 0.059, remaining gas: 1039981.420 units remaining) [ 14 ] - - location: 35 (remaining gas: 1039981.395 units remaining) + - location: 35 (just consumed gas: 0.025, remaining gas: 1039981.395 units remaining) [ 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, remaining gas: 1039981.380 units remaining) [ 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, remaining gas: 1039981.380 units remaining) [ { 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, remaining gas: 1039981.370 units remaining) [ { 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, remaining gas: 1039981.345 units remaining) [ 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, remaining gas: 1039981.335 units remaining) [ 3 3 ] - - location: 16 (remaining gas: 1039981.325 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.325 units remaining) [ (Pair 3 3) ] - - location: 16 (remaining gas: 1039981.315 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.315 units remaining) [ 4 (Pair 3 3) ] - - location: 16 (remaining gas: 1039981.305 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.305 units remaining) [ (Pair 4 3 3) ] - - location: 17 (remaining gas: 1039981.295 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039981.295 units remaining) [ 4 (Pair 3 3) ] - - location: 18 (remaining gas: 1039981.295 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039981.295 units remaining) [ (Pair 3 3) ] - - location: 20 (remaining gas: 1039981.285 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039981.285 units remaining) [ 3 3 ] - - location: 18 (remaining gas: 1039981.260 units remaining) + - location: 18 (just consumed gas: 0.025, remaining gas: 1039981.260 units remaining) [ 4 3 3 ] - - location: 21 (remaining gas: 1039981.225 units remaining) + - location: 21 (just consumed gas: 0.035, remaining gas: 1039981.225 units remaining) [ 7 3 ] - - location: 22 (remaining gas: 1039981.166 units remaining) + - location: 22 (just consumed gas: 0.059, remaining gas: 1039981.166 units remaining) [ 21 ] - - location: 35 (remaining gas: 1039981.141 units remaining) + - location: 35 (just consumed gas: 0.025, remaining gas: 1039981.141 units remaining) [ 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, remaining gas: 1039981.126 units remaining) [ { 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, remaining gas: 1039981.126 units remaining) [ { 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, remaining gas: 1039981.116 units remaining) [ ] - - location: 36 (remaining gas: 1039981.091 units remaining) + - location: 36 (just consumed gas: 0.025, remaining gas: 1039981.091 units remaining) [ { 0 ; 7 ; 14 ; 21 } ] - - location: 39 (remaining gas: 1039981.081 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039981.081 units remaining) [ {} { 0 ; 7 ; 14 ; 21 } ] - - location: 41 (remaining gas: 1039981.071 units remaining) + - location: 41 (just consumed gas: 0.010, remaining gas: 1039981.071 units remaining) [ (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 d5d0e691f0a0..b49adeda21a9 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, remaining gas: 1039994.486 units remaining) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039994.476 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.476 units remaining) [ ] - - location: 9 (remaining gas: 1039994.466 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.466 units remaining) [ 300 ] - - location: 12 (remaining gas: 1039994.456 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.456 units remaining) [ (Some 300) ] - - location: 13 (remaining gas: 1039994.446 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.446 units remaining) [ {} (Some 300) ] - - location: 15 (remaining gas: 1039994.436 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039994.436 units remaining) [ (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 cd6c770f9a0d..7a309691a1c9 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, remaining gas: 1039992.672 units remaining) [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (remaining gas: 1039992.662 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039992.662 units remaining) [ { "c" ; "b" ; "a" } ] - - location: 10 (remaining gas: 1039992.652 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039992.652 units remaining) [ {} { "c" ; "b" ; "a" } ] - - location: 12 (remaining gas: 1039992.642 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.642 units remaining) [ { "c" ; "b" ; "a" } {} ] - - location: 13 (remaining gas: 1039992.642 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039992.642 units remaining) [ "c" {} ] - - location: 15 (remaining gas: 1039992.632 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039992.632 units remaining) [ { "c" } ] - - location: 13 (remaining gas: 1039992.617 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.617 units remaining) [ "b" { "c" } ] - - location: 15 (remaining gas: 1039992.607 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039992.607 units remaining) [ { "b" ; "c" } ] - - location: 13 (remaining gas: 1039992.592 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.592 units remaining) [ "a" { "b" ; "c" } ] - - location: 15 (remaining gas: 1039992.582 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039992.582 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 13 (remaining gas: 1039992.567 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.567 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 16 (remaining gas: 1039992.557 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.557 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039992.547 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.547 units remaining) [ (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 8fbf21864707..2b3cb855ab03 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, remaining gas: 1039993.044 units remaining) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039993.034 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.034 units remaining) [ {} ] - - location: 10 (remaining gas: 1039993.024 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.024 units remaining) [ {} {} ] - - location: 12 (remaining gas: 1039993.014 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.014 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039993.014 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039993.014 units remaining) [ {} ] - - location: 16 (remaining gas: 1039993.004 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.004 units remaining) [ {} {} ] - - location: 18 (remaining gas: 1039992.994 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.994 units remaining) [ (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 3008e4930c92..cbac151f5cd6 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, remaining gas: 1039985.842 units remaining) [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (remaining gas: 1039985.832 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039985.832 units remaining) [ { "c" ; "b" ; "a" } ] - - location: 10 (remaining gas: 1039985.822 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039985.822 units remaining) [ {} { "c" ; "b" ; "a" } ] - - location: 12 (remaining gas: 1039985.812 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039985.812 units remaining) [ { "c" ; "b" ; "a" } {} ] - - location: 13 (remaining gas: 1039985.802 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039985.802 units remaining) [ True { "c" ; "b" ; "a" } {} ] - - location: 33 (remaining gas: 1039985.802 units remaining) + - location: 33 (just consumed gas: 0, remaining gas: 1039985.802 units remaining) [ { "c" ; "b" ; "a" } {} ] - - location: 18 (remaining gas: 1039985.802 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039985.802 units remaining) [ "c" { "b" ; "a" } {} ] - - location: 20 (remaining gas: 1039985.792 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.792 units remaining) [ { "b" ; "a" } "c" {} ] - - location: 21 (remaining gas: 1039985.792 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039985.792 units remaining) [ "c" {} ] - - location: 23 (remaining gas: 1039985.782 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039985.782 units remaining) [ { "c" } ] - - location: 21 (remaining gas: 1039985.757 units remaining) + - location: 21 (just consumed gas: 0.025, remaining gas: 1039985.757 units remaining) [ { "b" ; "a" } { "c" } ] - - location: 24 (remaining gas: 1039985.747 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.747 units remaining) [ True { "b" ; "a" } { "c" } ] - - location: 18 (remaining gas: 1039985.732 units remaining) + - location: 18 (just consumed gas: 0.015, remaining gas: 1039985.732 units remaining) [ True { "b" ; "a" } { "c" } ] - - location: 33 (remaining gas: 1039985.717 units remaining) + - location: 33 (just consumed gas: 0.015, remaining gas: 1039985.717 units remaining) [ { "b" ; "a" } { "c" } ] - - location: 18 (remaining gas: 1039985.717 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039985.717 units remaining) [ "b" { "a" } { "c" } ] - - location: 20 (remaining gas: 1039985.707 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.707 units remaining) [ { "a" } "b" { "c" } ] - - location: 21 (remaining gas: 1039985.707 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039985.707 units remaining) [ "b" { "c" } ] - - location: 23 (remaining gas: 1039985.697 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039985.697 units remaining) [ { "b" ; "c" } ] - - location: 21 (remaining gas: 1039985.672 units remaining) + - location: 21 (just consumed gas: 0.025, remaining gas: 1039985.672 units remaining) [ { "a" } { "b" ; "c" } ] - - location: 24 (remaining gas: 1039985.662 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.662 units remaining) [ True { "a" } { "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.647 units remaining) + - location: 18 (just consumed gas: 0.015, remaining gas: 1039985.647 units remaining) [ True { "a" } { "b" ; "c" } ] - - location: 33 (remaining gas: 1039985.632 units remaining) + - location: 33 (just consumed gas: 0.015, remaining gas: 1039985.632 units remaining) [ { "a" } { "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.632 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039985.632 units remaining) [ "a" {} { "b" ; "c" } ] - - location: 20 (remaining gas: 1039985.622 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.622 units remaining) [ {} "a" { "b" ; "c" } ] - - location: 21 (remaining gas: 1039985.622 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039985.622 units remaining) [ "a" { "b" ; "c" } ] - - location: 23 (remaining gas: 1039985.612 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039985.612 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 21 (remaining gas: 1039985.587 units remaining) + - location: 21 (just consumed gas: 0.025, remaining gas: 1039985.587 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 24 (remaining gas: 1039985.577 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.577 units remaining) [ True {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.562 units remaining) + - location: 18 (just consumed gas: 0.015, remaining gas: 1039985.562 units remaining) [ True {} { "a" ; "b" ; "c" } ] - - location: 33 (remaining gas: 1039985.547 units remaining) + - location: 33 (just consumed gas: 0.015, remaining gas: 1039985.547 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.547 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039985.547 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 28 (remaining gas: 1039985.537 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039985.537 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 30 (remaining gas: 1039985.527 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039985.527 units remaining) [ False {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.512 units remaining) + - location: 18 (just consumed gas: 0.015, remaining gas: 1039985.512 units remaining) [ False {} { "a" ; "b" ; "c" } ] - - location: 33 (remaining gas: 1039985.497 units remaining) + - location: 33 (just consumed gas: 0.015, remaining gas: 1039985.497 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 33 (remaining gas: 1039985.487 units remaining) + - location: 33 (just consumed gas: 0.010, remaining gas: 1039985.487 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 34 (remaining gas: 1039985.477 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039985.477 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 36 (remaining gas: 1039985.467 units remaining) + - location: 36 (just consumed gas: 0.010, remaining gas: 1039985.467 units remaining) [ (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 caeab38894b7..dba4559cff7f 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, remaining gas: 1039986.214 units remaining) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039986.204 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039986.204 units remaining) [ {} ] - - location: 10 (remaining gas: 1039986.194 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039986.194 units remaining) [ {} {} ] - - location: 12 (remaining gas: 1039986.184 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039986.184 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039986.174 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039986.174 units remaining) [ True {} {} ] - - location: 33 (remaining gas: 1039986.174 units remaining) + - location: 33 (just consumed gas: 0, remaining gas: 1039986.174 units remaining) [ {} {} ] - - location: 18 (remaining gas: 1039986.174 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039986.174 units remaining) [ {} ] - - location: 28 (remaining gas: 1039986.164 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039986.164 units remaining) [ {} {} ] - - location: 30 (remaining gas: 1039986.154 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039986.154 units remaining) [ False {} {} ] - - location: 18 (remaining gas: 1039986.139 units remaining) + - location: 18 (just consumed gas: 0.015, remaining gas: 1039986.139 units remaining) [ False {} {} ] - - location: 33 (remaining gas: 1039986.124 units remaining) + - location: 33 (just consumed gas: 0.015, remaining gas: 1039986.124 units remaining) [ {} {} ] - - location: 33 (remaining gas: 1039986.114 units remaining) + - location: 33 (just consumed gas: 0.010, remaining gas: 1039986.114 units remaining) [ {} ] - - location: 34 (remaining gas: 1039986.104 units remaining) + - location: 34 (just consumed gas: 0.010, remaining gas: 1039986.104 units remaining) [ {} {} ] - - location: 36 (remaining gas: 1039986.094 units remaining) + - location: 36 (just consumed gas: 0.010, remaining gas: 1039986.094 units remaining) [ (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 90fc736a79f2..fd90cb22fd90 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, remaining gas: 1039995.642 units remaining) [ (Pair Unit {}) ] - - location: 8 (remaining gas: 1039995.632 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.632 units remaining) [ ] - - location: 9 (remaining gas: 1039995.332 units remaining) + - location: 9 (just consumed gas: 0.300, remaining gas: 1039995.332 units remaining) [ {} ] - - location: 11 (remaining gas: 1039995.322 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.322 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039995.312 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039995.312 units remaining) [ (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 dbd11c0f62e8..e1df2fad4bb7 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, remaining gas: 1039986.274 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039986.264 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039986.264 units remaining) [ ] - - location: 8 (remaining gas: 1039986.254 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039986.254 units remaining) [ { DROP ; SELF_ADDRESS } ] - - location: 14 (remaining gas: 1039986.244 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039986.244 units remaining) [ Unit { DROP ; SELF_ADDRESS } ] - - location: 12 (remaining gas: 1039986.234 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039986.234 units remaining) [ ] - - location: 13 (remaining gas: 1039986.224 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039986.224 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 15 (remaining gas: 1039986.199 units remaining) + - location: 15 (just consumed gas: 0.025, remaining gas: 1039986.199 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 16 (remaining gas: 1039986.189 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039986.189 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 17 (remaining gas: 1039986.179 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039986.179 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 20 (remaining gas: 1039986.143 units remaining) + - location: 20 (just consumed gas: 0.036, remaining gas: 1039986.143 units remaining) [ 0 ] - - location: 21 (remaining gas: 1039986.133 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039986.133 units remaining) [ True ] - - location: 22 (remaining gas: 1039986.133 units remaining) + - location: 22 (just consumed gas: 0, remaining gas: 1039986.133 units remaining) [ ] - - location: 22 (remaining gas: 1039986.118 units remaining) + - location: 22 (just consumed gas: 0.015, remaining gas: 1039986.118 units remaining) [ ] - - location: 28 (remaining gas: 1039986.108 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039986.108 units remaining) [ Unit ] - - location: 29 (remaining gas: 1039986.098 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039986.098 units remaining) [ {} Unit ] - - location: 31 (remaining gas: 1039986.088 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039986.088 units remaining) [ (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 8341296ac0d4..f9fdcbe43f6a 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, remaining gas: 1039984.485 units remaining) [ (Pair (Right (Left Unit)) Unit) ] - - location: 13 (remaining gas: 1039984.475 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039984.475 units remaining) [ ] - - location: 14 (remaining gas: 1039984.465 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039984.465 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 15 (remaining gas: 1039984.455 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039984.455 units remaining) [ ] - - location: 16 (remaining gas: 1039984.445 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039984.445 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 17 (remaining gas: 1039984.435 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039984.435 units remaining) [ ] - - location: 18 (remaining gas: 1039984.425 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039984.425 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 19 (remaining gas: 1039983.919 units remaining) + - location: 19 (just consumed gas: 0.506, remaining gas: 1039983.919 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 20 (remaining gas: 1039983.909 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039983.909 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 21 (remaining gas: 1039983.403 units remaining) + - location: 21 (just consumed gas: 0.506, remaining gas: 1039983.403 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (remaining gas: 1039983.368 units remaining) + - location: 24 (just consumed gas: 0.035, remaining gas: 1039983.368 units remaining) [ 0 ] - - location: 25 (remaining gas: 1039983.358 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039983.358 units remaining) [ True ] - - location: 26 (remaining gas: 1039983.358 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039983.358 units remaining) [ ] - - location: 26 (remaining gas: 1039983.343 units remaining) + - location: 26 (just consumed gas: 0.015, remaining gas: 1039983.343 units remaining) [ ] - - location: 32 (remaining gas: 1039983.333 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039983.333 units remaining) [ Unit ] - - location: 33 (remaining gas: 1039983.323 units remaining) + - location: 33 (just consumed gas: 0.010, remaining gas: 1039983.323 units remaining) [ {} Unit ] - - location: 35 (remaining gas: 1039983.313 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039983.313 units remaining) [ (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 abe2cac12ade..97f1163cd16b 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, remaining gas: 1039959.876 units remaining) [ (Pair (Left (Left 0)) Unit) ] - - location: 13 (remaining gas: 1039959.866 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039959.866 units remaining) [ ] - - location: 14 (remaining gas: 1039959.856 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039959.856 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 15 (remaining gas: 1039959.340 units remaining) + - location: 15 (just consumed gas: 0.516, remaining gas: 1039959.340 units remaining) [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 16 (remaining gas: 1039959.330 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039959.330 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 17 (remaining gas: 1039958.824 units remaining) + - location: 17 (just consumed gas: 0.506, remaining gas: 1039958.824 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 18 (remaining gas: 1039958.814 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039958.814 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 19 (remaining gas: 1039958.814 units remaining) + - location: 19 (just consumed gas: 0, remaining gas: 1039958.814 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 21 (remaining gas: 1039958.804 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039958.804 units remaining) [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 19 (remaining gas: 1039958.779 units remaining) + - location: 19 (just consumed gas: 0.025, remaining gas: 1039958.779 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (remaining gas: 1039958.744 units remaining) + - location: 24 (just consumed gas: 0.035, remaining gas: 1039958.744 units remaining) [ -1 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 25 (remaining gas: 1039958.734 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039958.734 units remaining) [ True 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (remaining gas: 1039958.734 units remaining) + - location: 26 (just consumed gas: 0, remaining gas: 1039958.734 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (remaining gas: 1039958.719 units remaining) + - location: 26 (just consumed gas: 0.015, remaining gas: 1039958.719 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 32 (remaining gas: 1039958.709 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039958.709 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 33 (remaining gas: 1039958.203 units remaining) + - location: 33 (just consumed gas: 0.506, remaining gas: 1039958.203 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 36 (remaining gas: 1039958.168 units remaining) + - location: 36 (just consumed gas: 0.035, remaining gas: 1039958.168 units remaining) [ 0 ] - - location: 37 (remaining gas: 1039958.158 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039958.158 units remaining) [ True ] - - location: 38 (remaining gas: 1039958.158 units remaining) + - location: 38 (just consumed gas: 0, remaining gas: 1039958.158 units remaining) [ ] - - location: 38 (remaining gas: 1039958.143 units remaining) + - location: 38 (just consumed gas: 0.015, remaining gas: 1039958.143 units remaining) [ ] - - location: 44 (remaining gas: 1039958.133 units remaining) + - location: 44 (just consumed gas: 0.010, remaining gas: 1039958.133 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 48 (remaining gas: 1039958.123 units remaining) + - location: 48 (just consumed gas: 0.010, remaining gas: 1039958.123 units remaining) [ ] - - location: 49 (remaining gas: 1039958.113 units remaining) + - location: 49 (just consumed gas: 0.010, remaining gas: 1039958.113 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%B" ] - - location: 53 (remaining gas: 1039958.103 units remaining) + - location: 53 (just consumed gas: 0.010, remaining gas: 1039958.103 units remaining) [ ] - - location: 54 (remaining gas: 1039958.093 units remaining) + - location: 54 (just consumed gas: 0.010, remaining gas: 1039958.093 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%maybe_C" ] - - location: 60 (remaining gas: 1039958.083 units remaining) + - location: 60 (just consumed gas: 0.010, remaining gas: 1039958.083 units remaining) [ ] - - location: 61 (remaining gas: 1039958.073 units remaining) + - location: 61 (just consumed gas: 0.010, remaining gas: 1039958.073 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%Z" ] - - location: 65 (remaining gas: 1039958.063 units remaining) + - location: 65 (just consumed gas: 0.010, remaining gas: 1039958.063 units remaining) [ ] - - location: 66 (remaining gas: 1039958.053 units remaining) + - location: 66 (just consumed gas: 0.010, remaining gas: 1039958.053 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 76 (remaining gas: 1039958.043 units remaining) + - location: 76 (just consumed gas: 0.010, remaining gas: 1039958.043 units remaining) [ ] - - location: 77 (remaining gas: 1039958.033 units remaining) + - location: 77 (just consumed gas: 0.010, remaining gas: 1039958.033 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 87 (remaining gas: 1039958.023 units remaining) + - location: 87 (just consumed gas: 0.010, remaining gas: 1039958.023 units remaining) [ ] - - location: 88 (remaining gas: 1039958.013 units remaining) + - location: 88 (just consumed gas: 0.010, remaining gas: 1039958.013 units remaining) [ Unit ] - - location: 89 (remaining gas: 1039958.003 units remaining) + - location: 89 (just consumed gas: 0.010, remaining gas: 1039958.003 units remaining) [ {} Unit ] - - location: 91 (remaining gas: 1039957.993 units remaining) + - location: 91 (just consumed gas: 0.010, remaining gas: 1039957.993 units remaining) [ (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 81dcb9cf6f9b..3946e86e8aca 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, remaining gas: 1039989.071 units remaining) [ (Pair "" "hello" 0) ] - - location: 9 (remaining gas: 1039989.061 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.061 units remaining) [ (Pair "" "hello" 0) (Pair "" "hello" 0) ] - - location: 10 (remaining gas: 1039989.051 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.051 units remaining) [ (Pair "hello" 0) (Pair "" "hello" 0) ] - - location: 11 (remaining gas: 1039989.051 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039989.051 units remaining) [ (Pair "" "hello" 0) ] - - location: 13 (remaining gas: 1039989.041 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.041 units remaining) [ "" ] - - location: 11 (remaining gas: 1039989.016 units remaining) + - location: 11 (just consumed gas: 0.025, remaining gas: 1039989.016 units remaining) [ (Pair "hello" 0) "" ] - - location: 15 (remaining gas: 1039989.006 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.006 units remaining) [ (Pair "hello" 0) (Pair "hello" 0) "" ] - - location: 16 (remaining gas: 1039988.996 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.996 units remaining) [ "hello" (Pair "hello" 0) "" ] - - location: 17 (remaining gas: 1039988.986 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.986 units remaining) [ (Pair "hello" 0) "" ] - - location: 18 (remaining gas: 1039988.976 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.976 units remaining) [ 0 "" ] - - location: 19 (remaining gas: 1039988.966 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.966 units remaining) [ "" 0 ] - - location: 20 (remaining gas: 1039988.956 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.956 units remaining) [ (Pair "" 0) ] - - location: 21 (remaining gas: 1039988.946 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.946 units remaining) [ {} (Pair "" 0) ] - - location: 23 (remaining gas: 1039988.936 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039988.936 units remaining) [ (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 9fc155303fc8..136b224dce82 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, remaining gas: 1039989.041 units remaining) [ (Pair "abc" "hello" 0) ] - - location: 9 (remaining gas: 1039989.031 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.031 units remaining) [ (Pair "abc" "hello" 0) (Pair "abc" "hello" 0) ] - - location: 10 (remaining gas: 1039989.021 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.021 units remaining) [ (Pair "hello" 0) (Pair "abc" "hello" 0) ] - - location: 11 (remaining gas: 1039989.021 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039989.021 units remaining) [ (Pair "abc" "hello" 0) ] - - location: 13 (remaining gas: 1039989.011 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.011 units remaining) [ "abc" ] - - location: 11 (remaining gas: 1039988.986 units remaining) + - location: 11 (just consumed gas: 0.025, remaining gas: 1039988.986 units remaining) [ (Pair "hello" 0) "abc" ] - - location: 15 (remaining gas: 1039988.976 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.976 units remaining) [ (Pair "hello" 0) (Pair "hello" 0) "abc" ] - - location: 16 (remaining gas: 1039988.966 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.966 units remaining) [ "hello" (Pair "hello" 0) "abc" ] - - location: 17 (remaining gas: 1039988.956 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.956 units remaining) [ (Pair "hello" 0) "abc" ] - - location: 18 (remaining gas: 1039988.946 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.946 units remaining) [ 0 "abc" ] - - location: 19 (remaining gas: 1039988.936 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.936 units remaining) [ "abc" 0 ] - - location: 20 (remaining gas: 1039988.926 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.926 units remaining) [ (Pair "abc" 0) ] - - location: 21 (remaining gas: 1039988.916 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.916 units remaining) [ {} (Pair "abc" 0) ] - - location: 23 (remaining gas: 1039988.906 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039988.906 units remaining) [ (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 3063945c5afb..933818630bea 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, remaining gas: 1039989.021 units remaining) [ (Pair "world" "hello" 0) ] - - location: 9 (remaining gas: 1039989.011 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.011 units remaining) [ (Pair "world" "hello" 0) (Pair "world" "hello" 0) ] - - location: 10 (remaining gas: 1039989.001 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.001 units remaining) [ (Pair "hello" 0) (Pair "world" "hello" 0) ] - - location: 11 (remaining gas: 1039989.001 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039989.001 units remaining) [ (Pair "world" "hello" 0) ] - - location: 13 (remaining gas: 1039988.991 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039988.991 units remaining) [ "world" ] - - location: 11 (remaining gas: 1039988.966 units remaining) + - location: 11 (just consumed gas: 0.025, remaining gas: 1039988.966 units remaining) [ (Pair "hello" 0) "world" ] - - location: 15 (remaining gas: 1039988.956 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.956 units remaining) [ (Pair "hello" 0) (Pair "hello" 0) "world" ] - - location: 16 (remaining gas: 1039988.946 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.946 units remaining) [ "hello" (Pair "hello" 0) "world" ] - - location: 17 (remaining gas: 1039988.936 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.936 units remaining) [ (Pair "hello" 0) "world" ] - - location: 18 (remaining gas: 1039988.926 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.926 units remaining) [ 0 "world" ] - - location: 19 (remaining gas: 1039988.916 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.916 units remaining) [ "world" 0 ] - - location: 20 (remaining gas: 1039988.906 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.906 units remaining) [ (Pair "world" 0) ] - - location: 21 (remaining gas: 1039988.896 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.896 units remaining) [ {} (Pair "world" 0) ] - - location: 23 (remaining gas: 1039988.886 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039988.886 units remaining) [ (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 5cdd1f2ca042..394b91d839a4 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, remaining gas: 1039989.643 units remaining) [ (Pair 1 "hello" 0) ] - - location: 9 (remaining gas: 1039989.633 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.633 units remaining) [ (Pair 1 "hello" 0) (Pair 1 "hello" 0) ] - - location: 10 (remaining gas: 1039989.623 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.623 units remaining) [ (Pair "hello" 0) (Pair 1 "hello" 0) ] - - location: 11 (remaining gas: 1039989.623 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039989.623 units remaining) [ (Pair 1 "hello" 0) ] - - location: 13 (remaining gas: 1039989.613 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.613 units remaining) [ 1 ] - - location: 11 (remaining gas: 1039989.588 units remaining) + - location: 11 (just consumed gas: 0.025, remaining gas: 1039989.588 units remaining) [ (Pair "hello" 0) 1 ] - - location: 15 (remaining gas: 1039989.578 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.578 units remaining) [ (Pair "hello" 0) (Pair "hello" 0) 1 ] - - location: 16 (remaining gas: 1039989.568 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.568 units remaining) [ 0 (Pair "hello" 0) 1 ] - - location: 17 (remaining gas: 1039989.558 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.558 units remaining) [ (Pair "hello" 0) 1 ] - - location: 18 (remaining gas: 1039989.548 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.548 units remaining) [ "hello" 1 ] - - location: 19 (remaining gas: 1039989.538 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.538 units remaining) [ (Pair "hello" 1) ] - - location: 20 (remaining gas: 1039989.528 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.528 units remaining) [ {} (Pair "hello" 1) ] - - location: 22 (remaining gas: 1039989.518 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039989.518 units remaining) [ (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 221776a24550..c5e24ad1692a 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, remaining gas: 1039989.643 units remaining) [ (Pair 3 "hello" 500) ] - - location: 9 (remaining gas: 1039989.633 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.633 units remaining) [ (Pair 3 "hello" 500) (Pair 3 "hello" 500) ] - - location: 10 (remaining gas: 1039989.623 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.623 units remaining) [ (Pair "hello" 500) (Pair 3 "hello" 500) ] - - location: 11 (remaining gas: 1039989.623 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039989.623 units remaining) [ (Pair 3 "hello" 500) ] - - location: 13 (remaining gas: 1039989.613 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.613 units remaining) [ 3 ] - - location: 11 (remaining gas: 1039989.588 units remaining) + - location: 11 (just consumed gas: 0.025, remaining gas: 1039989.588 units remaining) [ (Pair "hello" 500) 3 ] - - location: 15 (remaining gas: 1039989.578 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.578 units remaining) [ (Pair "hello" 500) (Pair "hello" 500) 3 ] - - location: 16 (remaining gas: 1039989.568 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.568 units remaining) [ 500 (Pair "hello" 500) 3 ] - - location: 17 (remaining gas: 1039989.558 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.558 units remaining) [ (Pair "hello" 500) 3 ] - - location: 18 (remaining gas: 1039989.548 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.548 units remaining) [ "hello" 3 ] - - location: 19 (remaining gas: 1039989.538 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.538 units remaining) [ (Pair "hello" 3) ] - - location: 20 (remaining gas: 1039989.528 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.528 units remaining) [ {} (Pair "hello" 3) ] - - location: 22 (remaining gas: 1039989.518 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039989.518 units remaining) [ (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 984b88ab068a..41ab618117c2 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, remaining gas: 1039989.643 units remaining) [ (Pair 100 "hello" 7) ] - - location: 9 (remaining gas: 1039989.633 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.633 units remaining) [ (Pair 100 "hello" 7) (Pair 100 "hello" 7) ] - - location: 10 (remaining gas: 1039989.623 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.623 units remaining) [ (Pair "hello" 7) (Pair 100 "hello" 7) ] - - location: 11 (remaining gas: 1039989.623 units remaining) + - location: 11 (just consumed gas: 0, remaining gas: 1039989.623 units remaining) [ (Pair 100 "hello" 7) ] - - location: 13 (remaining gas: 1039989.613 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.613 units remaining) [ 100 ] - - location: 11 (remaining gas: 1039989.588 units remaining) + - location: 11 (just consumed gas: 0.025, remaining gas: 1039989.588 units remaining) [ (Pair "hello" 7) 100 ] - - location: 15 (remaining gas: 1039989.578 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.578 units remaining) [ (Pair "hello" 7) (Pair "hello" 7) 100 ] - - location: 16 (remaining gas: 1039989.568 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.568 units remaining) [ 7 (Pair "hello" 7) 100 ] - - location: 17 (remaining gas: 1039989.558 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.558 units remaining) [ (Pair "hello" 7) 100 ] - - location: 18 (remaining gas: 1039989.548 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.548 units remaining) [ "hello" 100 ] - - location: 19 (remaining gas: 1039989.538 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.538 units remaining) [ (Pair "hello" 100) ] - - location: 20 (remaining gas: 1039989.528 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.528 units remaining) [ {} (Pair "hello" 100) ] - - location: 22 (remaining gas: 1039989.518 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039989.518 units remaining) [ (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 24d930fc2679..cd2b1b1c1fa6 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, remaining gas: 1039995.081 units remaining) [ (Pair { "a" ; "b" ; "c" } {}) ] - - location: 9 (remaining gas: 1039995.071 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.071 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 10 (remaining gas: 1039995.061 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.061 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 12 (remaining gas: 1039995.051 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.051 units remaining) [ (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 f0fd5c2f9d87..2000dc38a989 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, remaining gas: 1039995.298 units remaining) [ (Pair { "asdf" ; "bcde" } {}) ] - - location: 9 (remaining gas: 1039995.288 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.288 units remaining) [ { "asdf" ; "bcde" } ] - - location: 10 (remaining gas: 1039995.278 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.278 units remaining) [ {} { "asdf" ; "bcde" } ] - - location: 12 (remaining gas: 1039995.268 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.268 units remaining) [ (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 1364ddb2fefb..5dd55a39ad87 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, remaining gas: 1039995.925 units remaining) [ (Pair {} {}) ] - - location: 9 (remaining gas: 1039995.915 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.915 units remaining) [ {} ] - - location: 10 (remaining gas: 1039995.905 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.905 units remaining) [ {} {} ] - - location: 12 (remaining gas: 1039995.895 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.895 units remaining) [ (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 b06b6fe5dbc3..0bb0c0e1a468 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, remaining gas: 1039992.273 units remaining) [ (Pair { -100 ; 1 ; 2 ; 3 } 111) ] - - location: 8 (remaining gas: 1039992.263 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.263 units remaining) [ { -100 ; 1 ; 2 ; 3 } ] - - location: 9 (remaining gas: 1039992.253 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039992.253 units remaining) [ 0 { -100 ; 1 ; 2 ; 3 } ] - - location: 12 (remaining gas: 1039992.243 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.243 units remaining) [ { -100 ; 1 ; 2 ; 3 } 0 ] - - location: 13 (remaining gas: 1039992.243 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039992.243 units remaining) [ -100 0 ] - - location: 15 (remaining gas: 1039992.208 units remaining) + - location: 15 (just consumed gas: 0.035, remaining gas: 1039992.208 units remaining) [ -100 ] - - location: 13 (remaining gas: 1039992.193 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.193 units remaining) [ 1 -100 ] - - location: 15 (remaining gas: 1039992.158 units remaining) + - location: 15 (just consumed gas: 0.035, remaining gas: 1039992.158 units remaining) [ -99 ] - - location: 13 (remaining gas: 1039992.143 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.143 units remaining) [ 2 -99 ] - - location: 15 (remaining gas: 1039992.108 units remaining) + - location: 15 (just consumed gas: 0.035, remaining gas: 1039992.108 units remaining) [ -97 ] - - location: 13 (remaining gas: 1039992.093 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.093 units remaining) [ 3 -97 ] - - location: 15 (remaining gas: 1039992.058 units remaining) + - location: 15 (just consumed gas: 0.035, remaining gas: 1039992.058 units remaining) [ -94 ] - - location: 13 (remaining gas: 1039992.043 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.043 units remaining) [ -94 ] - - location: 16 (remaining gas: 1039992.033 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.033 units remaining) [ {} -94 ] - - location: 18 (remaining gas: 1039992.023 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.023 units remaining) [ (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 1f433251d4e5..c888f8b5d5d3 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, remaining gas: 1039993.068 units remaining) [ (Pair { 1 } 111) ] - - location: 8 (remaining gas: 1039993.058 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039993.058 units remaining) [ { 1 } ] - - location: 9 (remaining gas: 1039993.048 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.048 units remaining) [ 0 { 1 } ] - - location: 12 (remaining gas: 1039993.038 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.038 units remaining) [ { 1 } 0 ] - - location: 13 (remaining gas: 1039993.038 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039993.038 units remaining) [ 1 0 ] - - location: 15 (remaining gas: 1039993.003 units remaining) + - location: 15 (just consumed gas: 0.035, remaining gas: 1039993.003 units remaining) [ 1 ] - - location: 13 (remaining gas: 1039992.988 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.988 units remaining) [ 1 ] - - location: 16 (remaining gas: 1039992.978 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.978 units remaining) [ {} 1 ] - - location: 18 (remaining gas: 1039992.968 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.968 units remaining) [ (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 80a3baecdcf6..d7fe0e30719e 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, remaining gas: 1039993.298 units remaining) [ (Pair {} 111) ] - - location: 8 (remaining gas: 1039993.288 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039993.288 units remaining) [ {} ] - - location: 9 (remaining gas: 1039993.278 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.278 units remaining) [ 0 {} ] - - location: 12 (remaining gas: 1039993.268 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.268 units remaining) [ {} 0 ] - - location: 13 (remaining gas: 1039993.268 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039993.268 units remaining) [ 0 ] - - location: 16 (remaining gas: 1039993.258 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.258 units remaining) [ {} 0 ] - - location: 18 (remaining gas: 1039993.248 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039993.248 units remaining) [ (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 a2be93bf95d0..90a40a360fa0 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, remaining gas: 1039985.643 units remaining) [ (Pair "" { "Hello" ; "World" } None) ] - - location: 11 (remaining gas: 1039985.633 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039985.633 units remaining) [ (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 12 (remaining gas: 1039985.623 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039985.623 units remaining) [ (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, remaining gas: 1039985.613 units remaining) [ "" (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 14 (remaining gas: 1039985.613 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039985.613 units remaining) [ (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 17 (remaining gas: 1039985.603 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039985.603 units remaining) [ (Pair { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 18 (remaining gas: 1039985.593 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039985.593 units remaining) [ { "Hello" ; "World" } (Pair "" { "Hello" ; "World" } None) ] - - location: 14 (remaining gas: 1039985.568 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039985.568 units remaining) [ "" { "Hello" ; "World" } (Pair "" { "Hello" ; "World" } None) ] - - location: 19 (remaining gas: 1039985.453 units remaining) + - location: 19 (just consumed gas: 0.115, remaining gas: 1039985.453 units remaining) [ False (Pair "" { "Hello" ; "World" } None) ] - - location: 20 (remaining gas: 1039985.443 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.443 units remaining) [ (Some False) (Pair "" { "Hello" ; "World" } None) ] - - location: 21 (remaining gas: 1039985.443 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039985.443 units remaining) [ (Pair "" { "Hello" ; "World" } None) ] - - location: 24 (remaining gas: 1039985.433 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.433 units remaining) [ (Pair { "Hello" ; "World" } None) ] - - location: 25 (remaining gas: 1039985.423 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039985.423 units remaining) [ { "Hello" ; "World" } ] - - location: 21 (remaining gas: 1039985.398 units remaining) + - location: 21 (just consumed gas: 0.025, remaining gas: 1039985.398 units remaining) [ (Some False) { "Hello" ; "World" } ] - - location: 26 (remaining gas: 1039985.388 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039985.388 units remaining) [ { "Hello" ; "World" } (Some False) ] - - location: 27 (remaining gas: 1039985.378 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039985.378 units remaining) [ (Pair { "Hello" ; "World" } (Some False)) ] - - location: 28 (remaining gas: 1039985.368 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039985.368 units remaining) [ {} (Pair { "Hello" ; "World" } (Some False)) ] - - location: 30 (remaining gas: 1039985.358 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039985.358 units remaining) [ (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 0b61a9f87844..e01e95ee04ce 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, remaining gas: 1039986.008 units remaining) [ (Pair "Hi" { "Hi" } None) ] - - location: 11 (remaining gas: 1039985.998 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039985.998 units remaining) [ (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 12 (remaining gas: 1039985.988 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039985.988 units remaining) [ (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, remaining gas: 1039985.978 units remaining) [ "Hi" (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 14 (remaining gas: 1039985.978 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039985.978 units remaining) [ (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 17 (remaining gas: 1039985.968 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039985.968 units remaining) [ (Pair { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 18 (remaining gas: 1039985.958 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039985.958 units remaining) [ { "Hi" } (Pair "Hi" { "Hi" } None) ] - - location: 14 (remaining gas: 1039985.933 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039985.933 units remaining) [ "Hi" { "Hi" } (Pair "Hi" { "Hi" } None) ] - - location: 19 (remaining gas: 1039985.814 units remaining) + - location: 19 (just consumed gas: 0.119, remaining gas: 1039985.814 units remaining) [ True (Pair "Hi" { "Hi" } None) ] - - location: 20 (remaining gas: 1039985.804 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.804 units remaining) [ (Some True) (Pair "Hi" { "Hi" } None) ] - - location: 21 (remaining gas: 1039985.804 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039985.804 units remaining) [ (Pair "Hi" { "Hi" } None) ] - - location: 24 (remaining gas: 1039985.794 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.794 units remaining) [ (Pair { "Hi" } None) ] - - location: 25 (remaining gas: 1039985.784 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039985.784 units remaining) [ { "Hi" } ] - - location: 21 (remaining gas: 1039985.759 units remaining) + - location: 21 (just consumed gas: 0.025, remaining gas: 1039985.759 units remaining) [ (Some True) { "Hi" } ] - - location: 26 (remaining gas: 1039985.749 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039985.749 units remaining) [ { "Hi" } (Some True) ] - - location: 27 (remaining gas: 1039985.739 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039985.739 units remaining) [ (Pair { "Hi" } (Some True)) ] - - location: 28 (remaining gas: 1039985.729 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039985.729 units remaining) [ {} (Pair { "Hi" } (Some True)) ] - - location: 30 (remaining gas: 1039985.719 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039985.719 units remaining) [ (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 724ebaff4e0f..8d305ec15242 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, remaining gas: 1039986.276 units remaining) [ (Pair "Hi" {} None) ] - - location: 11 (remaining gas: 1039986.266 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039986.266 units remaining) [ (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 12 (remaining gas: 1039986.256 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039986.256 units remaining) [ (Pair "Hi" {} None) (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 13 (remaining gas: 1039986.246 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039986.246 units remaining) [ "Hi" (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 14 (remaining gas: 1039986.246 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039986.246 units remaining) [ (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 17 (remaining gas: 1039986.236 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039986.236 units remaining) [ (Pair {} None) (Pair "Hi" {} None) ] - - location: 18 (remaining gas: 1039986.226 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039986.226 units remaining) [ {} (Pair "Hi" {} None) ] - - location: 14 (remaining gas: 1039986.201 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039986.201 units remaining) [ "Hi" {} (Pair "Hi" {} None) ] - - location: 19 (remaining gas: 1039986.084 units remaining) + - location: 19 (just consumed gas: 0.117, remaining gas: 1039986.084 units remaining) [ False (Pair "Hi" {} None) ] - - location: 20 (remaining gas: 1039986.074 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039986.074 units remaining) [ (Some False) (Pair "Hi" {} None) ] - - location: 21 (remaining gas: 1039986.074 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039986.074 units remaining) [ (Pair "Hi" {} None) ] - - location: 24 (remaining gas: 1039986.064 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039986.064 units remaining) [ (Pair {} None) ] - - location: 25 (remaining gas: 1039986.054 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039986.054 units remaining) [ {} ] - - location: 21 (remaining gas: 1039986.029 units remaining) + - location: 21 (just consumed gas: 0.025, remaining gas: 1039986.029 units remaining) [ (Some False) {} ] - - location: 26 (remaining gas: 1039986.019 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039986.019 units remaining) [ {} (Some False) ] - - location: 27 (remaining gas: 1039986.009 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039986.009 units remaining) [ (Pair {} (Some False)) ] - - location: 28 (remaining gas: 1039985.999 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039985.999 units remaining) [ {} (Pair {} (Some False)) ] - - location: 30 (remaining gas: 1039985.989 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039985.989 units remaining) [ (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 1b29dccb3aca..1e8a0093a6ff 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, remaining gas: 1039994.050 units remaining) [ (Pair { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } 111) ] - - location: 8 (remaining gas: 1039994.040 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.040 units remaining) [ { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } ] - - location: 9 (remaining gas: 1039994.030 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.030 units remaining) [ 6 ] - - location: 10 (remaining gas: 1039994.020 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.020 units remaining) [ {} 6 ] - - location: 12 (remaining gas: 1039994.010 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.010 units remaining) [ (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 9447751f582c..3c202ae2aad8 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, remaining gas: 1039994.845 units remaining) [ (Pair { 1 ; 2 ; 3 } 111) ] - - location: 8 (remaining gas: 1039994.835 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.835 units remaining) [ { 1 ; 2 ; 3 } ] - - location: 9 (remaining gas: 1039994.825 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.825 units remaining) [ 3 ] - - location: 10 (remaining gas: 1039994.815 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.815 units remaining) [ {} 3 ] - - location: 12 (remaining gas: 1039994.805 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.805 units remaining) [ (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 e7dc590f5c8c..f006ce19de3f 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, remaining gas: 1039995.375 units remaining) [ (Pair { 1 } 111) ] - - location: 8 (remaining gas: 1039995.365 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.365 units remaining) [ { 1 } ] - - location: 9 (remaining gas: 1039995.355 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.355 units remaining) [ 1 ] - - location: 10 (remaining gas: 1039995.345 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.345 units remaining) [ {} 1 ] - - location: 12 (remaining gas: 1039995.335 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.335 units remaining) [ (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 bd3ff05764d5..9e86f59e3b44 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, remaining gas: 1039995.605 units remaining) [ (Pair {} 111) ] - - location: 8 (remaining gas: 1039995.595 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.595 units remaining) [ {} ] - - location: 9 (remaining gas: 1039995.585 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.585 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039995.575 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.575 units remaining) [ {} 0 ] - - location: 12 (remaining gas: 1039995.565 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.565 units remaining) [ (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 e6aa2f293527..a5fda8333c0a 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, remaining gas: 1039994.947 units remaining) [ (Pair 0x48656c6c6f2c20776f726c6421 None) ] - - location: 8 (remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) [ 0x48656c6c6f2c20776f726c6421 ] - - location: 9 (remaining gas: 1039993.480 units remaining) + - location: 9 (just consumed gas: 1.457, remaining gas: 1039993.480 units remaining) [ 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722 ] - - location: 10 (remaining gas: 1039993.470 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.470 units remaining) [ (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) ] - - location: 11 (remaining gas: 1039993.460 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.460 units remaining) [ {} (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) ] - - location: 13 (remaining gas: 1039993.450 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.450 units remaining) [ (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 080c79ead283..7906d820b230 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, remaining gas: 1039991.189 units remaining) [ (Pair (Left (Pair 0 0)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Left (Pair 0 0)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 0 0) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 0 0 ] - - location: 18 (remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039991.124 units remaining) [ (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 eadda0dcf7e2..80dc9021791d 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, remaining gas: 1039991.189 units remaining) [ (Pair (Left (Pair 0 1)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Left (Pair 0 1)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 0 1) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 0 1 ] - - location: 18 (remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039991.124 units remaining) [ (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 7bd6c0a39772..f41f8885015f 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, remaining gas: 1039991.189 units remaining) [ (Pair (Left (Pair 1 2)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Left (Pair 1 2)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 1 2) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 1 2 ] - - location: 18 (remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) [ 4 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) [ 4 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) [ (Some 4) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) [ {} (Some 4) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039991.124 units remaining) [ (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 64376597a43f..5e9a4329f9b5 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, remaining gas: 1039991.189 units remaining) [ (Pair (Left (Pair 15 2)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Left (Pair 15 2)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 15 2) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 15 2 ] - - location: 18 (remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) [ 60 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) [ 60 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) [ (Some 60) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) [ {} (Some 60) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039991.124 units remaining) [ (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 906dfa5dddad..8d5432b2ed48 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, remaining gas: 1039991.189 units remaining) [ (Pair (Left (Pair 8 1)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Left (Pair 8 1)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 8 1) ] - - location: 17 (remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 8 1 ] - - location: 18 (remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) [ 16 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) [ 16 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) [ (Some 16) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) [ {} (Some 16) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039991.124 units remaining) [ (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 b44e50ba85ba..bc646d61bf46 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, remaining gas: 1039991.189 units remaining) [ (Pair (Right (Pair 0 0)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Right (Pair 0 0)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 0 0) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 0 0 ] - - location: 21 (remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039991.124 units remaining) [ (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 ea8ab4dbcb30..9c902d40515c 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, remaining gas: 1039991.189 units remaining) [ (Pair (Right (Pair 0 1)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Right (Pair 0 1)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 0 1) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 0 1 ] - - location: 21 (remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039991.124 units remaining) [ (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 08e7548d0753..4f75cf60c585 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, remaining gas: 1039991.189 units remaining) [ (Pair (Right (Pair 1 2)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Right (Pair 1 2)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 1 2) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 1 2 ] - - location: 21 (remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039991.124 units remaining) [ (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 ea508c106e31..3d1737799adc 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, remaining gas: 1039991.189 units remaining) [ (Pair (Right (Pair 15 2)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Right (Pair 15 2)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 15 2) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 15 2 ] - - location: 21 (remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) [ 3 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) [ 3 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) [ (Some 3) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) [ {} (Some 3) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039991.124 units remaining) [ (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 f6145a099794..9ece53133392 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, remaining gas: 1039991.189 units remaining) [ (Pair (Right (Pair 8 1)) None) ] - - location: 14 (remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) [ (Right (Pair 8 1)) ] - - location: 15 (remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) [ (Pair 8 1) ] - - location: 20 (remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) [ 8 1 ] - - location: 21 (remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) [ 4 ] - - location: 15 (remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) [ 4 ] - - location: 22 (remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) [ (Some 4) ] - - location: 23 (remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) [ {} (Some 4) ] - - location: 25 (remaining gas: 1039991.124 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039991.124 units remaining) [ (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 3c72a7e3dd83..f80e8b129752 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, remaining gas: 1039990.802 units remaining) [ (Pair (Pair 0 0) None) ] - - location: 10 (remaining gas: 1039990.792 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.792 units remaining) [ (Pair 0 0) None ] - - location: 11 (remaining gas: 1039990.782 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.782 units remaining) [ None (Pair 0 0) ] - - location: 13 (remaining gas: 1039990.782 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.782 units remaining) [ (Pair 0 0) ] - - location: 15 (remaining gas: 1039990.772 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.772 units remaining) [ ] - - location: 16 (remaining gas: 1039990.762 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.762 units remaining) [ None ] - - location: 13 (remaining gas: 1039990.747 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.747 units remaining) [ None ] - - location: 22 (remaining gas: 1039990.737 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.737 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039990.727 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.727 units remaining) [ (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 b63512533c8a..7ddf49803089 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, remaining gas: 1039990.658 units remaining) [ (Pair (Pair 0 0) (Some "Foo")) ] - - location: 10 (remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.648 units remaining) [ (Pair 0 0) (Some "Foo") ] - - location: 11 (remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.638 units remaining) [ (Some "Foo") (Pair 0 0) ] - - location: 13 (remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.638 units remaining) [ "Foo" (Pair 0 0) ] - - location: 19 (remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.628 units remaining) [ (Pair 0 0) "Foo" ] - - location: 20 (remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.618 units remaining) [ 0 0 "Foo" ] - - location: 21 (remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.592 units remaining) [ (Some "") ] - - location: 13 (remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.577 units remaining) [ (Some "") ] - - location: 22 (remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.567 units remaining) [ {} (Some "") ] - - location: 24 (remaining gas: 1039990.557 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.557 units remaining) [ (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 672f15aef35a..70b408034d81 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, remaining gas: 1039990.658 units remaining) [ (Pair (Pair 0 10) (Some "Foo")) ] - - location: 10 (remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.648 units remaining) [ (Pair 0 10) (Some "Foo") ] - - location: 11 (remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.638 units remaining) [ (Some "Foo") (Pair 0 10) ] - - location: 13 (remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.638 units remaining) [ "Foo" (Pair 0 10) ] - - location: 19 (remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.628 units remaining) [ (Pair 0 10) "Foo" ] - - location: 20 (remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.618 units remaining) [ 0 10 "Foo" ] - - location: 21 (remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.592 units remaining) [ None ] - - location: 13 (remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.577 units remaining) [ None ] - - location: 22 (remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.567 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039990.557 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.557 units remaining) [ (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 5a2e907c5863..0fef32afb4b2 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, remaining gas: 1039990.658 units remaining) [ (Pair (Pair 0 2) (Some "Foo")) ] - - location: 10 (remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.648 units remaining) [ (Pair 0 2) (Some "Foo") ] - - location: 11 (remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.638 units remaining) [ (Some "Foo") (Pair 0 2) ] - - location: 13 (remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.638 units remaining) [ "Foo" (Pair 0 2) ] - - location: 19 (remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.628 units remaining) [ (Pair 0 2) "Foo" ] - - location: 20 (remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.618 units remaining) [ 0 2 "Foo" ] - - location: 21 (remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.592 units remaining) [ (Some "Fo") ] - - location: 13 (remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.577 units remaining) [ (Some "Fo") ] - - location: 22 (remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.567 units remaining) [ {} (Some "Fo") ] - - location: 24 (remaining gas: 1039990.557 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.557 units remaining) [ (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 e4c6be99dc70..8ad3c2ee2eaf 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, remaining gas: 1039990.658 units remaining) [ (Pair (Pair 1 1) (Some "Foo")) ] - - location: 10 (remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.648 units remaining) [ (Pair 1 1) (Some "Foo") ] - - location: 11 (remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.638 units remaining) [ (Some "Foo") (Pair 1 1) ] - - location: 13 (remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.638 units remaining) [ "Foo" (Pair 1 1) ] - - location: 19 (remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.628 units remaining) [ (Pair 1 1) "Foo" ] - - location: 20 (remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.618 units remaining) [ 1 1 "Foo" ] - - location: 21 (remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.592 units remaining) [ (Some "o") ] - - location: 13 (remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.577 units remaining) [ (Some "o") ] - - location: 22 (remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.567 units remaining) [ {} (Some "o") ] - - location: 24 (remaining gas: 1039990.557 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.557 units remaining) [ (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 9459d60ba4df..4537dcebb375 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, remaining gas: 1039990.658 units remaining) [ (Pair (Pair 1 3) (Some "Foo")) ] - - location: 10 (remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.648 units remaining) [ (Pair 1 3) (Some "Foo") ] - - location: 11 (remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.638 units remaining) [ (Some "Foo") (Pair 1 3) ] - - location: 13 (remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.638 units remaining) [ "Foo" (Pair 1 3) ] - - location: 19 (remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.628 units remaining) [ (Pair 1 3) "Foo" ] - - location: 20 (remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.618 units remaining) [ 1 3 "Foo" ] - - location: 21 (remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.592 units remaining) [ None ] - - location: 13 (remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.577 units remaining) [ None ] - - location: 22 (remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.567 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039990.557 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.557 units remaining) [ (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 22a01a7b63ad..d0d853b53cfa 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, remaining gas: 1039990.658 units remaining) [ (Pair (Pair 10 5) (Some "Foo")) ] - - location: 10 (remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.648 units remaining) [ (Pair 10 5) (Some "Foo") ] - - location: 11 (remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.638 units remaining) [ (Some "Foo") (Pair 10 5) ] - - location: 13 (remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.638 units remaining) [ "Foo" (Pair 10 5) ] - - location: 19 (remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.628 units remaining) [ (Pair 10 5) "Foo" ] - - location: 20 (remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.618 units remaining) [ 10 5 "Foo" ] - - location: 21 (remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.592 units remaining) [ None ] - - location: 13 (remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.577 units remaining) [ None ] - - location: 22 (remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.567 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039990.557 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.557 units remaining) [ (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 af0260f1beeb..3faab8635d03 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, remaining gas: 1039930.688 units remaining) [ (Pair (Pair 1 10000) (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo")) ] - - location: 10 (remaining gas: 1039930.678 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039930.678 units remaining) [ (Pair 1 10000) (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo") ] - - location: 11 (remaining gas: 1039930.668 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039930.668 units remaining) [ (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo") (Pair 1 10000) ] - - location: 13 (remaining gas: 1039930.668 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039930.668 units remaining) [ "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" (Pair 1 10000) ] - - location: 19 (remaining gas: 1039930.658 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039930.658 units remaining) [ (Pair 1 10000) "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" ] - - location: 20 (remaining gas: 1039930.648 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039930.648 units remaining) [ 1 10000 "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" ] - - location: 21 (remaining gas: 1039927.623 units remaining) + - location: 21 (just consumed gas: 3.025, remaining gas: 1039927.623 units remaining) [ None ] - - location: 13 (remaining gas: 1039927.608 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039927.608 units remaining) [ None ] - - location: 22 (remaining gas: 1039927.598 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039927.598 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039927.588 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039927.588 units remaining) [ (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 44a725ffeac6..c1a3d1f6fbf9 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, remaining gas: 1039990.802 units remaining) [ (Pair (Pair 0 1) None) ] - - location: 10 (remaining gas: 1039990.792 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.792 units remaining) [ (Pair 0 1) None ] - - location: 11 (remaining gas: 1039990.782 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.782 units remaining) [ None (Pair 0 1) ] - - location: 13 (remaining gas: 1039990.782 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.782 units remaining) [ (Pair 0 1) ] - - location: 15 (remaining gas: 1039990.772 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.772 units remaining) [ ] - - location: 16 (remaining gas: 1039990.762 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.762 units remaining) [ None ] - - location: 13 (remaining gas: 1039990.747 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.747 units remaining) [ None ] - - location: 22 (remaining gas: 1039990.737 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.737 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039990.727 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.727 units remaining) [ (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 6d215b8c591b..d67f02b1ea28 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, remaining gas: 1039990.702 units remaining) [ (Pair (Pair 0 0) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) [ (Pair 0 0) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) [ (Some 0xaabbcc) (Pair 0 0) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) [ 0xaabbcc (Pair 0 0) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) [ (Pair 0 0) 0xaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) [ 0 0 0xaabbcc ] - - location: 21 (remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.636 units remaining) [ (Some 0x) ] - - location: 13 (remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.621 units remaining) [ (Some 0x) ] - - location: 22 (remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.611 units remaining) [ {} (Some 0x) ] - - location: 24 (remaining gas: 1039990.601 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.601 units remaining) [ (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 0c83446bdb08..8a9d656f68fa 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, remaining gas: 1039990.702 units remaining) [ (Pair (Pair 0 1) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) [ (Pair 0 1) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) [ (Some 0xaabbcc) (Pair 0 1) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) [ 0xaabbcc (Pair 0 1) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) [ (Pair 0 1) 0xaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) [ 0 1 0xaabbcc ] - - location: 21 (remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.636 units remaining) [ (Some 0xaa) ] - - location: 13 (remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.621 units remaining) [ (Some 0xaa) ] - - location: 22 (remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.611 units remaining) [ {} (Some 0xaa) ] - - location: 24 (remaining gas: 1039990.601 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.601 units remaining) [ (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 528dc27eeb96..e63513fdf3e7 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, remaining gas: 1039990.702 units remaining) [ (Pair (Pair 1 1) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) [ (Pair 1 1) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) [ (Some 0xaabbcc) (Pair 1 1) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) [ 0xaabbcc (Pair 1 1) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) [ (Pair 1 1) 0xaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) [ 1 1 0xaabbcc ] - - location: 21 (remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.636 units remaining) [ (Some 0xbb) ] - - location: 13 (remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.621 units remaining) [ (Some 0xbb) ] - - location: 22 (remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.611 units remaining) [ {} (Some 0xbb) ] - - location: 24 (remaining gas: 1039990.601 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.601 units remaining) [ (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 93ab94abc39e..b9e62bc11713 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, remaining gas: 1039990.702 units remaining) [ (Pair (Pair 1 1) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) [ (Pair 1 1) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) [ (Some 0xaabbcc) (Pair 1 1) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) [ 0xaabbcc (Pair 1 1) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) [ (Pair 1 1) 0xaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) [ 1 1 0xaabbcc ] - - location: 21 (remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.636 units remaining) [ (Some 0xbb) ] - - location: 13 (remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.621 units remaining) [ (Some 0xbb) ] - - location: 22 (remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.611 units remaining) [ {} (Some 0xbb) ] - - location: 24 (remaining gas: 1039990.601 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.601 units remaining) [ (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 6c09813d3a8d..bb41a10ab379 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, remaining gas: 1039990.702 units remaining) [ (Pair (Pair 1 2) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) [ (Pair 1 2) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) [ (Some 0xaabbcc) (Pair 1 2) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) [ 0xaabbcc (Pair 1 2) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) [ (Pair 1 2) 0xaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) [ 1 2 0xaabbcc ] - - location: 21 (remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.636 units remaining) [ (Some 0xbbcc) ] - - location: 13 (remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.621 units remaining) [ (Some 0xbbcc) ] - - location: 22 (remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.611 units remaining) [ {} (Some 0xbbcc) ] - - location: 24 (remaining gas: 1039990.601 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.601 units remaining) [ (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 32a53d01e037..4e1356bc867f 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, remaining gas: 1039990.702 units remaining) [ (Pair (Pair 1 3) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) [ (Pair 1 3) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) [ (Some 0xaabbcc) (Pair 1 3) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) [ 0xaabbcc (Pair 1 3) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) [ (Pair 1 3) 0xaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) [ 1 3 0xaabbcc ] - - location: 21 (remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.636 units remaining) [ None ] - - location: 13 (remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.621 units remaining) [ None ] - - location: 22 (remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.611 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039990.601 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039990.601 units remaining) [ (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 e41a6dcbc5e7..673aaf0c2fdc 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, remaining gas: 1039990.702 units remaining) [ (Pair (Pair 1 10000) (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc)) ] - - location: 10 (remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) [ (Pair 1 10000) (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc) ] - - location: 11 (remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) [ (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc) (Pair 1 10000) ] - - location: 13 (remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) [ 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc (Pair 1 10000) ] - - location: 19 (remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) [ (Pair 1 10000) 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc ] - - location: 20 (remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) [ 1 10000 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc ] - - location: 21 (remaining gas: 1039987.637 units remaining) + - location: 21 (just consumed gas: 3.025, remaining gas: 1039987.637 units remaining) [ None ] - - location: 13 (remaining gas: 1039987.622 units remaining) + - location: 13 (just consumed gas: 0.015, remaining gas: 1039987.622 units remaining) [ None ] - - location: 22 (remaining gas: 1039987.612 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.612 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039987.602 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039987.602 units remaining) [ (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 255c5d36a685..ffa6381af498 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, remaining gas: 1039995.436 units remaining) [ (Pair "Hello" None) ] - - location: 8 (remaining gas: 1039995.426 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.426 units remaining) [ "Hello" ] - - location: 9 (remaining gas: 1039995.416 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.416 units remaining) [ (Some "Hello") ] - - location: 10 (remaining gas: 1039995.406 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.406 units remaining) [ {} (Some "Hello") ] - - location: 12 (remaining gas: 1039995.396 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.396 units remaining) [ (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 5dff047de07a..e39c02d2ce88 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, remaining gas: 1039995.446 units remaining) [ (Pair "abcd" None) ] - - location: 8 (remaining gas: 1039995.436 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.436 units remaining) [ "abcd" ] - - location: 9 (remaining gas: 1039995.426 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.426 units remaining) [ (Some "abcd") ] - - location: 10 (remaining gas: 1039995.416 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.416 units remaining) [ {} (Some "abcd") ] - - location: 12 (remaining gas: 1039995.406 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.406 units remaining) [ (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 3da131e33e8e..19d88a168a76 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, remaining gas: 1039992.563 units remaining) [ (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, remaining gas: 1039992.553 units remaining) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 10 (remaining gas: 1039992.543 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039992.543 units remaining) [ (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, remaining gas: 1039992.533 units remaining) [ "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, remaining gas: 1039992.533 units remaining) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 14 (remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.523 units remaining) [ -100 ] - - location: 12 (remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025, remaining gas: 1039992.498 units remaining) [ "1970-01-01T00:01:40Z" -100 ] - - location: 15 (remaining gas: 1039992.463 units remaining) + - location: 15 (just consumed gas: 0.035, remaining gas: 1039992.463 units remaining) [ "1970-01-01T00:03:20Z" ] - - location: 16 (remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.453 units remaining) [ {} "1970-01-01T00:03:20Z" ] - - location: 18 (remaining gas: 1039992.443 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.443 units remaining) [ (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 edd7cbf124e2..34288141b971 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, remaining gas: 1039992.563 units remaining) [ (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, remaining gas: 1039992.553 units remaining) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 10 (remaining gas: 1039992.543 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039992.543 units remaining) [ (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, remaining gas: 1039992.533 units remaining) [ "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, remaining gas: 1039992.533 units remaining) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 14 (remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.523 units remaining) [ 100 ] - - location: 12 (remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025, remaining gas: 1039992.498 units remaining) [ "1970-01-01T00:01:40Z" 100 ] - - location: 15 (remaining gas: 1039992.463 units remaining) + - location: 15 (just consumed gas: 0.035, remaining gas: 1039992.463 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 16 (remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.453 units remaining) [ {} "1970-01-01T00:00:00Z" ] - - location: 18 (remaining gas: 1039992.443 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.443 units remaining) [ (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 5a60f031a985..c4b6ee68392a 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, remaining gas: 1039992.563 units remaining) [ (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, remaining gas: 1039992.553 units remaining) [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 10 (remaining gas: 1039992.543 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039992.543 units remaining) [ (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, remaining gas: 1039992.533 units remaining) [ "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, remaining gas: 1039992.533 units remaining) [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 14 (remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.523 units remaining) [ 2000000000000000000 ] - - location: 12 (remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025, remaining gas: 1039992.498 units remaining) [ "1970-01-01T00:01:40Z" 2000000000000000000 ] - - location: 15 (remaining gas: 1039992.459 units remaining) + - location: 15 (just consumed gas: 0.039, remaining gas: 1039992.459 units remaining) [ -1999999999999999900 ] - - location: 16 (remaining gas: 1039992.449 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.449 units remaining) [ {} -1999999999999999900 ] - - location: 18 (remaining gas: 1039992.439 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.439 units remaining) [ (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 0e6a37739eeb..fbdbea2808e7 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, remaining gas: 1039983.005 units remaining) [ (Pair (Pair 2000000 1000000) None) ] - - location: 12 (remaining gas: 1039982.995 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039982.995 units remaining) [ (Pair 2000000 1000000) ] - - location: 13 (remaining gas: 1039982.985 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039982.985 units remaining) [ (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 14 (remaining gas: 1039982.975 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039982.975 units remaining) [ (Pair 2000000 1000000) (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 15 (remaining gas: 1039982.965 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039982.965 units remaining) [ 2000000 (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 16 (remaining gas: 1039982.965 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039982.965 units remaining) [ (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 18 (remaining gas: 1039982.955 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039982.955 units remaining) [ 1000000 (Pair 2000000 1000000) ] - - location: 16 (remaining gas: 1039982.930 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039982.930 units remaining) [ 2000000 1000000 (Pair 2000000 1000000) ] - - location: 19 (remaining gas: 1039982.910 units remaining) + - location: 19 (just consumed gas: 0.020, remaining gas: 1039982.910 units remaining) [ 3000000 (Pair 2000000 1000000) ] - - location: 20 (remaining gas: 1039982.910 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039982.910 units remaining) [ (Pair 2000000 1000000) ] - - location: 22 (remaining gas: 1039982.900 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039982.900 units remaining) [ (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 23 (remaining gas: 1039982.890 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039982.890 units remaining) [ 2000000 (Pair 2000000 1000000) ] - - location: 24 (remaining gas: 1039982.890 units remaining) + - location: 24 (just consumed gas: 0, remaining gas: 1039982.890 units remaining) [ (Pair 2000000 1000000) ] - - location: 26 (remaining gas: 1039982.880 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039982.880 units remaining) [ 1000000 ] - - location: 24 (remaining gas: 1039982.855 units remaining) + - location: 24 (just consumed gas: 0.025, remaining gas: 1039982.855 units remaining) [ 2000000 1000000 ] - - location: 27 (remaining gas: 1039982.840 units remaining) + - location: 27 (just consumed gas: 0.015, remaining gas: 1039982.840 units remaining) [ (Some 1000000) ] - - location: 29 (remaining gas: 1039982.840 units remaining) + - location: 29 (just consumed gas: 0, remaining gas: 1039982.840 units remaining) [ 1000000 ] - - location: 29 (remaining gas: 1039982.825 units remaining) + - location: 29 (just consumed gas: 0.015, remaining gas: 1039982.825 units remaining) [ 1000000 ] - - location: 20 (remaining gas: 1039982.800 units remaining) + - location: 20 (just consumed gas: 0.025, remaining gas: 1039982.800 units remaining) [ 3000000 1000000 ] - - location: 35 (remaining gas: 1039982.790 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039982.790 units remaining) [ (Pair 3000000 1000000) ] - - location: 36 (remaining gas: 1039982.780 units remaining) + - location: 36 (just consumed gas: 0.010, remaining gas: 1039982.780 units remaining) [ (Some (Pair 3000000 1000000)) ] - - location: 37 (remaining gas: 1039982.770 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039982.770 units remaining) [ {} (Some (Pair 3000000 1000000)) ] - - location: 39 (remaining gas: 1039982.760 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039982.760 units remaining) [ (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 cdd376a92288..900d81d67f4c 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, remaining gas: 1039983.005 units remaining) [ (Pair (Pair 2310000 1010000) None) ] - - location: 12 (remaining gas: 1039982.995 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039982.995 units remaining) [ (Pair 2310000 1010000) ] - - location: 13 (remaining gas: 1039982.985 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039982.985 units remaining) [ (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 14 (remaining gas: 1039982.975 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039982.975 units remaining) [ (Pair 2310000 1010000) (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 15 (remaining gas: 1039982.965 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039982.965 units remaining) [ 2310000 (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 16 (remaining gas: 1039982.965 units remaining) + - location: 16 (just consumed gas: 0, remaining gas: 1039982.965 units remaining) [ (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 18 (remaining gas: 1039982.955 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039982.955 units remaining) [ 1010000 (Pair 2310000 1010000) ] - - location: 16 (remaining gas: 1039982.930 units remaining) + - location: 16 (just consumed gas: 0.025, remaining gas: 1039982.930 units remaining) [ 2310000 1010000 (Pair 2310000 1010000) ] - - location: 19 (remaining gas: 1039982.910 units remaining) + - location: 19 (just consumed gas: 0.020, remaining gas: 1039982.910 units remaining) [ 3320000 (Pair 2310000 1010000) ] - - location: 20 (remaining gas: 1039982.910 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039982.910 units remaining) [ (Pair 2310000 1010000) ] - - location: 22 (remaining gas: 1039982.900 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039982.900 units remaining) [ (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 23 (remaining gas: 1039982.890 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039982.890 units remaining) [ 2310000 (Pair 2310000 1010000) ] - - location: 24 (remaining gas: 1039982.890 units remaining) + - location: 24 (just consumed gas: 0, remaining gas: 1039982.890 units remaining) [ (Pair 2310000 1010000) ] - - location: 26 (remaining gas: 1039982.880 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039982.880 units remaining) [ 1010000 ] - - location: 24 (remaining gas: 1039982.855 units remaining) + - location: 24 (just consumed gas: 0.025, remaining gas: 1039982.855 units remaining) [ 2310000 1010000 ] - - location: 27 (remaining gas: 1039982.840 units remaining) + - location: 27 (just consumed gas: 0.015, remaining gas: 1039982.840 units remaining) [ (Some 1300000) ] - - location: 29 (remaining gas: 1039982.840 units remaining) + - location: 29 (just consumed gas: 0, remaining gas: 1039982.840 units remaining) [ 1300000 ] - - location: 29 (remaining gas: 1039982.825 units remaining) + - location: 29 (just consumed gas: 0.015, remaining gas: 1039982.825 units remaining) [ 1300000 ] - - location: 20 (remaining gas: 1039982.800 units remaining) + - location: 20 (just consumed gas: 0.025, remaining gas: 1039982.800 units remaining) [ 3320000 1300000 ] - - location: 35 (remaining gas: 1039982.790 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039982.790 units remaining) [ (Pair 3320000 1300000) ] - - location: 36 (remaining gas: 1039982.780 units remaining) + - location: 36 (just consumed gas: 0.010, remaining gas: 1039982.780 units remaining) [ (Some (Pair 3320000 1300000)) ] - - location: 37 (remaining gas: 1039982.770 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039982.770 units remaining) [ {} (Some (Pair 3320000 1300000)) ] - - location: 39 (remaining gas: 1039982.760 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039982.760 units remaining) [ (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 1e71b5f8ca50..ebde571c288f 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, remaining gas: 1039989.856 units remaining) [ (Pair (Pair 1 4 2) 0) ] - - location: 10 (remaining gas: 1039989.846 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.846 units remaining) [ (Pair 1 4 2) ] - - location: 11 (remaining gas: 1039989.809 units remaining) + - location: 11 (just consumed gas: 0.037, remaining gas: 1039989.809 units remaining) [ 1 4 2 ] - - location: 13 (remaining gas: 1039989.799 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.799 units remaining) [ 100 1 4 2 ] - - location: 16 (remaining gas: 1039989.740 units remaining) + - location: 16 (just consumed gas: 0.059, remaining gas: 1039989.740 units remaining) [ 100 4 2 ] - - location: 17 (remaining gas: 1039989.730 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.730 units remaining) [ 4 100 2 ] - - location: 18 (remaining gas: 1039989.720 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.720 units remaining) [ 10 4 100 2 ] - - location: 21 (remaining gas: 1039989.661 units remaining) + - location: 21 (just consumed gas: 0.059, remaining gas: 1039989.661 units remaining) [ 40 100 2 ] - - location: 22 (remaining gas: 1039989.626 units remaining) + - location: 22 (just consumed gas: 0.035, remaining gas: 1039989.626 units remaining) [ 140 2 ] - - location: 23 (remaining gas: 1039989.591 units remaining) + - location: 23 (just consumed gas: 0.035, remaining gas: 1039989.591 units remaining) [ 142 ] - - location: 24 (remaining gas: 1039989.581 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039989.581 units remaining) [ {} 142 ] - - location: 26 (remaining gas: 1039989.571 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039989.571 units remaining) [ (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 37880ab7c233..54edd3ff151d 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, remaining gas: 1039872.209 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039872.199 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039872.199 units remaining) [ ] - - location: 8 (remaining gas: 1039872.189 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039872.189 units remaining) [ Unit ] - - location: 9 (remaining gas: 1039872.179 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039872.179 units remaining) [ Unit Unit ] - - location: 10 (remaining gas: 1039872.169 units remaining) + - location: 10 (just consumed gas: 0.010, remaining gas: 1039872.169 units remaining) [ (Pair Unit Unit) ] - - location: 11 (remaining gas: 1039872.159 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039872.159 units remaining) [ Unit Unit ] - - location: 12 (remaining gas: 1039872.124 units remaining) + - location: 12 (just consumed gas: 0.035, remaining gas: 1039872.124 units remaining) [ ] - - location: 14 (remaining gas: 1039872.114 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039872.114 units remaining) [ Unit ] - - location: 15 (remaining gas: 1039872.104 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039872.104 units remaining) [ Unit Unit ] - - location: 16 (remaining gas: 1039872.094 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039872.094 units remaining) [ (Pair Unit Unit) ] - - location: 17 (remaining gas: 1039872.084 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039872.084 units remaining) [ Unit Unit ] - - location: 18 (remaining gas: 1039872.049 units remaining) + - location: 18 (just consumed gas: 0.035, remaining gas: 1039872.049 units remaining) [ ] - - location: 20 (remaining gas: 1039872.039 units remaining) + - location: 20 (just consumed gas: 0.010, remaining gas: 1039872.039 units remaining) [ Unit ] - - location: 21 (remaining gas: 1039872.029 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039872.029 units remaining) [ Unit Unit ] - - location: 22 (remaining gas: 1039872.019 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039872.019 units remaining) [ (Pair Unit Unit) ] - - location: 23 (remaining gas: 1039872.009 units remaining) + - location: 23 (just consumed gas: 0.010, remaining gas: 1039872.009 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 24 (remaining gas: 1039871.999 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039871.999 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 25 (remaining gas: 1039871.964 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039871.964 units remaining) [ (Pair Unit Unit) ] - - location: 27 (remaining gas: 1039871.954 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039871.954 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 28 (remaining gas: 1039871.944 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039871.944 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 29 (remaining gas: 1039871.909 units remaining) + - location: 29 (just consumed gas: 0.035, remaining gas: 1039871.909 units remaining) [ (Pair Unit Unit) ] - - location: 31 (remaining gas: 1039871.899 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039871.899 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 32 (remaining gas: 1039871.889 units remaining) + - location: 32 (just consumed gas: 0.010, remaining gas: 1039871.889 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 33 (remaining gas: 1039871.854 units remaining) + - location: 33 (just consumed gas: 0.035, remaining gas: 1039871.854 units remaining) [ (Pair Unit Unit) ] - - location: 35 (remaining gas: 1039871.844 units remaining) + - location: 35 (just consumed gas: 0.010, remaining gas: 1039871.844 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 36 (remaining gas: 1039871.834 units remaining) + - location: 36 (just consumed gas: 0.010, remaining gas: 1039871.834 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 37 (remaining gas: 1039871.799 units remaining) + - location: 37 (just consumed gas: 0.035, remaining gas: 1039871.799 units remaining) [ (Pair Unit Unit) ] - - location: 39 (remaining gas: 1039871.789 units remaining) + - location: 39 (just consumed gas: 0.010, remaining gas: 1039871.789 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 40 (remaining gas: 1039871.779 units remaining) + - location: 40 (just consumed gas: 0.010, remaining gas: 1039871.779 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 41 (remaining gas: 1039871.744 units remaining) + - location: 41 (just consumed gas: 0.035, remaining gas: 1039871.744 units remaining) [ (Pair Unit Unit) ] - - location: 43 (remaining gas: 1039871.734 units remaining) + - location: 43 (just consumed gas: 0.010, remaining gas: 1039871.734 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 44 (remaining gas: 1039871.724 units remaining) + - location: 44 (just consumed gas: 0.010, remaining gas: 1039871.724 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 45 (remaining gas: 1039871.689 units remaining) + - location: 45 (just consumed gas: 0.035, remaining gas: 1039871.689 units remaining) [ (Pair Unit Unit) ] - - location: 47 (remaining gas: 1039871.679 units remaining) + - location: 47 (just consumed gas: 0.010, remaining gas: 1039871.679 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 48 (remaining gas: 1039871.669 units remaining) + - location: 48 (just consumed gas: 0.010, remaining gas: 1039871.669 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 49 (remaining gas: 1039871.634 units remaining) + - location: 49 (just consumed gas: 0.035, remaining gas: 1039871.634 units remaining) [ (Pair Unit Unit) ] - - location: 51 (remaining gas: 1039871.624 units remaining) + - location: 51 (just consumed gas: 0.010, remaining gas: 1039871.624 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 52 (remaining gas: 1039871.614 units remaining) + - location: 52 (just consumed gas: 0.010, remaining gas: 1039871.614 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 53 (remaining gas: 1039871.579 units remaining) + - location: 53 (just consumed gas: 0.035, remaining gas: 1039871.579 units remaining) [ (Pair Unit Unit) ] - - location: 55 (remaining gas: 1039871.569 units remaining) + - location: 55 (just consumed gas: 0.010, remaining gas: 1039871.569 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 56 (remaining gas: 1039871.559 units remaining) + - location: 56 (just consumed gas: 0.010, remaining gas: 1039871.559 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 57 (remaining gas: 1039871.524 units remaining) + - location: 57 (just consumed gas: 0.035, remaining gas: 1039871.524 units remaining) [ (Pair Unit Unit) ] - - location: 59 (remaining gas: 1039871.514 units remaining) + - location: 59 (just consumed gas: 0.010, remaining gas: 1039871.514 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 60 (remaining gas: 1039871.504 units remaining) + - location: 60 (just consumed gas: 0.010, remaining gas: 1039871.504 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 61 (remaining gas: 1039871.469 units remaining) + - location: 61 (just consumed gas: 0.035, remaining gas: 1039871.469 units remaining) [ (Pair Unit Unit) ] - - location: 63 (remaining gas: 1039871.459 units remaining) + - location: 63 (just consumed gas: 0.010, remaining gas: 1039871.459 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 64 (remaining gas: 1039871.449 units remaining) + - location: 64 (just consumed gas: 0.010, remaining gas: 1039871.449 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 65 (remaining gas: 1039871.414 units remaining) + - location: 65 (just consumed gas: 0.035, remaining gas: 1039871.414 units remaining) [ (Pair Unit Unit) ] - - location: 67 (remaining gas: 1039871.404 units remaining) + - location: 67 (just consumed gas: 0.010, remaining gas: 1039871.404 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 68 (remaining gas: 1039871.394 units remaining) + - location: 68 (just consumed gas: 0.010, remaining gas: 1039871.394 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 69 (remaining gas: 1039871.359 units remaining) + - location: 69 (just consumed gas: 0.035, remaining gas: 1039871.359 units remaining) [ (Pair Unit Unit) ] - - location: 71 (remaining gas: 1039871.349 units remaining) + - location: 71 (just consumed gas: 0.010, remaining gas: 1039871.349 units remaining) [ ] - - location: 72 (remaining gas: 1039871.339 units remaining) + - location: 72 (just consumed gas: 0.010, remaining gas: 1039871.339 units remaining) [ Unit ] - - location: 73 (remaining gas: 1039871.329 units remaining) + - location: 73 (just consumed gas: 0.010, remaining gas: 1039871.329 units remaining) [ Unit Unit ] - - location: 74 (remaining gas: 1039871.319 units remaining) + - location: 74 (just consumed gas: 0.010, remaining gas: 1039871.319 units remaining) [ (Pair Unit Unit) ] - - location: 75 (remaining gas: 1039871.309 units remaining) + - location: 75 (just consumed gas: 0.010, remaining gas: 1039871.309 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 76 (remaining gas: 1039871.299 units remaining) + - location: 76 (just consumed gas: 0.010, remaining gas: 1039871.299 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 77 (remaining gas: 1039871.264 units remaining) + - location: 77 (just consumed gas: 0.035, remaining gas: 1039871.264 units remaining) [ (Pair Unit Unit) ] - - location: 79 (remaining gas: 1039871.254 units remaining) + - location: 79 (just consumed gas: 0.010, remaining gas: 1039871.254 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 80 (remaining gas: 1039871.244 units remaining) + - location: 80 (just consumed gas: 0.010, remaining gas: 1039871.244 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 81 (remaining gas: 1039871.209 units remaining) + - location: 81 (just consumed gas: 0.035, remaining gas: 1039871.209 units remaining) [ (Pair Unit Unit) ] - - location: 83 (remaining gas: 1039871.199 units remaining) + - location: 83 (just consumed gas: 0.010, remaining gas: 1039871.199 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 84 (remaining gas: 1039871.189 units remaining) + - location: 84 (just consumed gas: 0.010, remaining gas: 1039871.189 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 85 (remaining gas: 1039871.154 units remaining) + - location: 85 (just consumed gas: 0.035, remaining gas: 1039871.154 units remaining) [ (Pair Unit Unit) ] - - location: 87 (remaining gas: 1039871.144 units remaining) + - location: 87 (just consumed gas: 0.010, remaining gas: 1039871.144 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 88 (remaining gas: 1039871.134 units remaining) + - location: 88 (just consumed gas: 0.010, remaining gas: 1039871.134 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 89 (remaining gas: 1039871.099 units remaining) + - location: 89 (just consumed gas: 0.035, remaining gas: 1039871.099 units remaining) [ (Pair Unit Unit) ] - - location: 91 (remaining gas: 1039871.089 units remaining) + - location: 91 (just consumed gas: 0.010, remaining gas: 1039871.089 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 92 (remaining gas: 1039871.079 units remaining) + - location: 92 (just consumed gas: 0.010, remaining gas: 1039871.079 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 93 (remaining gas: 1039871.044 units remaining) + - location: 93 (just consumed gas: 0.035, remaining gas: 1039871.044 units remaining) [ (Pair Unit Unit) ] - - location: 95 (remaining gas: 1039871.034 units remaining) + - location: 95 (just consumed gas: 0.010, remaining gas: 1039871.034 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 96 (remaining gas: 1039871.024 units remaining) + - location: 96 (just consumed gas: 0.010, remaining gas: 1039871.024 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 97 (remaining gas: 1039870.989 units remaining) + - location: 97 (just consumed gas: 0.035, remaining gas: 1039870.989 units remaining) [ (Pair Unit Unit) ] - - location: 99 (remaining gas: 1039870.979 units remaining) + - location: 99 (just consumed gas: 0.010, remaining gas: 1039870.979 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 100 (remaining gas: 1039870.969 units remaining) + - location: 100 (just consumed gas: 0.010, remaining gas: 1039870.969 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 101 (remaining gas: 1039870.934 units remaining) + - location: 101 (just consumed gas: 0.035, remaining gas: 1039870.934 units remaining) [ (Pair Unit Unit) ] - - location: 103 (remaining gas: 1039870.924 units remaining) + - location: 103 (just consumed gas: 0.010, remaining gas: 1039870.924 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 104 (remaining gas: 1039870.914 units remaining) + - location: 104 (just consumed gas: 0.010, remaining gas: 1039870.914 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 105 (remaining gas: 1039870.879 units remaining) + - location: 105 (just consumed gas: 0.035, remaining gas: 1039870.879 units remaining) [ (Pair Unit Unit) ] - - location: 107 (remaining gas: 1039870.869 units remaining) + - location: 107 (just consumed gas: 0.010, remaining gas: 1039870.869 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 108 (remaining gas: 1039870.859 units remaining) + - location: 108 (just consumed gas: 0.010, remaining gas: 1039870.859 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 109 (remaining gas: 1039870.824 units remaining) + - location: 109 (just consumed gas: 0.035, remaining gas: 1039870.824 units remaining) [ (Pair Unit Unit) ] - - location: 111 (remaining gas: 1039870.814 units remaining) + - location: 111 (just consumed gas: 0.010, remaining gas: 1039870.814 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 112 (remaining gas: 1039870.804 units remaining) + - location: 112 (just consumed gas: 0.010, remaining gas: 1039870.804 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 113 (remaining gas: 1039870.769 units remaining) + - location: 113 (just consumed gas: 0.035, remaining gas: 1039870.769 units remaining) [ (Pair Unit Unit) ] - - location: 115 (remaining gas: 1039870.759 units remaining) + - location: 115 (just consumed gas: 0.010, remaining gas: 1039870.759 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 116 (remaining gas: 1039870.749 units remaining) + - location: 116 (just consumed gas: 0.010, remaining gas: 1039870.749 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 117 (remaining gas: 1039870.714 units remaining) + - location: 117 (just consumed gas: 0.035, remaining gas: 1039870.714 units remaining) [ (Pair Unit Unit) ] - - location: 119 (remaining gas: 1039870.704 units remaining) + - location: 119 (just consumed gas: 0.010, remaining gas: 1039870.704 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 120 (remaining gas: 1039870.694 units remaining) + - location: 120 (just consumed gas: 0.010, remaining gas: 1039870.694 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 121 (remaining gas: 1039870.659 units remaining) + - location: 121 (just consumed gas: 0.035, remaining gas: 1039870.659 units remaining) [ (Pair Unit Unit) ] - - location: 123 (remaining gas: 1039870.649 units remaining) + - location: 123 (just consumed gas: 0.010, remaining gas: 1039870.649 units remaining) [ ] - - location: 124 (remaining gas: 1039870.639 units remaining) + - location: 124 (just consumed gas: 0.010, remaining gas: 1039870.639 units remaining) [ Unit ] - - location: 125 (remaining gas: 1039870.629 units remaining) + - location: 125 (just consumed gas: 0.010, remaining gas: 1039870.629 units remaining) [ Unit Unit ] - - location: 126 (remaining gas: 1039870.619 units remaining) + - location: 126 (just consumed gas: 0.010, remaining gas: 1039870.619 units remaining) [ (Pair Unit Unit) ] - - location: 127 (remaining gas: 1039870.609 units remaining) + - location: 127 (just consumed gas: 0.010, remaining gas: 1039870.609 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 128 (remaining gas: 1039870.599 units remaining) + - location: 128 (just consumed gas: 0.010, remaining gas: 1039870.599 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 129 (remaining gas: 1039870.564 units remaining) + - location: 129 (just consumed gas: 0.035, remaining gas: 1039870.564 units remaining) [ (Pair Unit Unit) ] - - location: 131 (remaining gas: 1039870.554 units remaining) + - location: 131 (just consumed gas: 0.010, remaining gas: 1039870.554 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 132 (remaining gas: 1039870.544 units remaining) + - location: 132 (just consumed gas: 0.010, remaining gas: 1039870.544 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 133 (remaining gas: 1039870.509 units remaining) + - location: 133 (just consumed gas: 0.035, remaining gas: 1039870.509 units remaining) [ (Pair Unit Unit) ] - - location: 135 (remaining gas: 1039870.499 units remaining) + - location: 135 (just consumed gas: 0.010, remaining gas: 1039870.499 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 136 (remaining gas: 1039870.489 units remaining) + - location: 136 (just consumed gas: 0.010, remaining gas: 1039870.489 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 137 (remaining gas: 1039870.454 units remaining) + - location: 137 (just consumed gas: 0.035, remaining gas: 1039870.454 units remaining) [ (Pair Unit Unit) ] - - location: 139 (remaining gas: 1039870.444 units remaining) + - location: 139 (just consumed gas: 0.010, remaining gas: 1039870.444 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 140 (remaining gas: 1039870.434 units remaining) + - location: 140 (just consumed gas: 0.010, remaining gas: 1039870.434 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 141 (remaining gas: 1039870.399 units remaining) + - location: 141 (just consumed gas: 0.035, remaining gas: 1039870.399 units remaining) [ (Pair Unit Unit) ] - - location: 143 (remaining gas: 1039870.389 units remaining) + - location: 143 (just consumed gas: 0.010, remaining gas: 1039870.389 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 144 (remaining gas: 1039870.379 units remaining) + - location: 144 (just consumed gas: 0.010, remaining gas: 1039870.379 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 145 (remaining gas: 1039870.344 units remaining) + - location: 145 (just consumed gas: 0.035, remaining gas: 1039870.344 units remaining) [ (Pair Unit Unit) ] - - location: 147 (remaining gas: 1039870.334 units remaining) + - location: 147 (just consumed gas: 0.010, remaining gas: 1039870.334 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 148 (remaining gas: 1039870.324 units remaining) + - location: 148 (just consumed gas: 0.010, remaining gas: 1039870.324 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 149 (remaining gas: 1039870.289 units remaining) + - location: 149 (just consumed gas: 0.035, remaining gas: 1039870.289 units remaining) [ (Pair Unit Unit) ] - - location: 151 (remaining gas: 1039870.279 units remaining) + - location: 151 (just consumed gas: 0.010, remaining gas: 1039870.279 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 152 (remaining gas: 1039870.269 units remaining) + - location: 152 (just consumed gas: 0.010, remaining gas: 1039870.269 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 153 (remaining gas: 1039870.234 units remaining) + - location: 153 (just consumed gas: 0.035, remaining gas: 1039870.234 units remaining) [ (Pair Unit Unit) ] - - location: 155 (remaining gas: 1039870.224 units remaining) + - location: 155 (just consumed gas: 0.010, remaining gas: 1039870.224 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 156 (remaining gas: 1039870.214 units remaining) + - location: 156 (just consumed gas: 0.010, remaining gas: 1039870.214 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 157 (remaining gas: 1039870.179 units remaining) + - location: 157 (just consumed gas: 0.035, remaining gas: 1039870.179 units remaining) [ (Pair Unit Unit) ] - - location: 159 (remaining gas: 1039870.169 units remaining) + - location: 159 (just consumed gas: 0.010, remaining gas: 1039870.169 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 160 (remaining gas: 1039870.159 units remaining) + - location: 160 (just consumed gas: 0.010, remaining gas: 1039870.159 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 161 (remaining gas: 1039870.124 units remaining) + - location: 161 (just consumed gas: 0.035, remaining gas: 1039870.124 units remaining) [ (Pair Unit Unit) ] - - location: 163 (remaining gas: 1039870.114 units remaining) + - location: 163 (just consumed gas: 0.010, remaining gas: 1039870.114 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 164 (remaining gas: 1039870.104 units remaining) + - location: 164 (just consumed gas: 0.010, remaining gas: 1039870.104 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 165 (remaining gas: 1039870.069 units remaining) + - location: 165 (just consumed gas: 0.035, remaining gas: 1039870.069 units remaining) [ (Pair Unit Unit) ] - - location: 167 (remaining gas: 1039870.059 units remaining) + - location: 167 (just consumed gas: 0.010, remaining gas: 1039870.059 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 168 (remaining gas: 1039870.049 units remaining) + - location: 168 (just consumed gas: 0.010, remaining gas: 1039870.049 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 169 (remaining gas: 1039870.014 units remaining) + - location: 169 (just consumed gas: 0.035, remaining gas: 1039870.014 units remaining) [ (Pair Unit Unit) ] - - location: 171 (remaining gas: 1039870.004 units remaining) + - location: 171 (just consumed gas: 0.010, remaining gas: 1039870.004 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 172 (remaining gas: 1039869.994 units remaining) + - location: 172 (just consumed gas: 0.010, remaining gas: 1039869.994 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 173 (remaining gas: 1039869.959 units remaining) + - location: 173 (just consumed gas: 0.035, remaining gas: 1039869.959 units remaining) [ (Pair Unit Unit) ] - - location: 175 (remaining gas: 1039869.949 units remaining) + - location: 175 (just consumed gas: 0.010, remaining gas: 1039869.949 units remaining) [ ] - - location: 176 (remaining gas: 1039869.939 units remaining) + - location: 176 (just consumed gas: 0.010, remaining gas: 1039869.939 units remaining) [ Unit ] - - location: 177 (remaining gas: 1039869.929 units remaining) + - location: 177 (just consumed gas: 0.010, remaining gas: 1039869.929 units remaining) [ Unit Unit ] - - location: 178 (remaining gas: 1039869.919 units remaining) + - location: 178 (just consumed gas: 0.010, remaining gas: 1039869.919 units remaining) [ (Pair Unit Unit) ] - - location: 179 (remaining gas: 1039869.909 units remaining) + - location: 179 (just consumed gas: 0.010, remaining gas: 1039869.909 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 180 (remaining gas: 1039869.899 units remaining) + - location: 180 (just consumed gas: 0.010, remaining gas: 1039869.899 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 181 (remaining gas: 1039869.864 units remaining) + - location: 181 (just consumed gas: 0.035, remaining gas: 1039869.864 units remaining) [ (Pair Unit Unit) ] - - location: 183 (remaining gas: 1039869.854 units remaining) + - location: 183 (just consumed gas: 0.010, remaining gas: 1039869.854 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 184 (remaining gas: 1039869.844 units remaining) + - location: 184 (just consumed gas: 0.010, remaining gas: 1039869.844 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 185 (remaining gas: 1039869.809 units remaining) + - location: 185 (just consumed gas: 0.035, remaining gas: 1039869.809 units remaining) [ (Pair Unit Unit) ] - - location: 187 (remaining gas: 1039869.799 units remaining) + - location: 187 (just consumed gas: 0.010, remaining gas: 1039869.799 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 188 (remaining gas: 1039869.789 units remaining) + - location: 188 (just consumed gas: 0.010, remaining gas: 1039869.789 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 189 (remaining gas: 1039869.754 units remaining) + - location: 189 (just consumed gas: 0.035, remaining gas: 1039869.754 units remaining) [ (Pair Unit Unit) ] - - location: 191 (remaining gas: 1039869.744 units remaining) + - location: 191 (just consumed gas: 0.010, remaining gas: 1039869.744 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 192 (remaining gas: 1039869.734 units remaining) + - location: 192 (just consumed gas: 0.010, remaining gas: 1039869.734 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 193 (remaining gas: 1039869.699 units remaining) + - location: 193 (just consumed gas: 0.035, remaining gas: 1039869.699 units remaining) [ (Pair Unit Unit) ] - - location: 195 (remaining gas: 1039869.689 units remaining) + - location: 195 (just consumed gas: 0.010, remaining gas: 1039869.689 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 196 (remaining gas: 1039869.679 units remaining) + - location: 196 (just consumed gas: 0.010, remaining gas: 1039869.679 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 197 (remaining gas: 1039869.644 units remaining) + - location: 197 (just consumed gas: 0.035, remaining gas: 1039869.644 units remaining) [ (Pair Unit Unit) ] - - location: 199 (remaining gas: 1039869.634 units remaining) + - location: 199 (just consumed gas: 0.010, remaining gas: 1039869.634 units remaining) [ ] - - location: 200 (remaining gas: 1039869.624 units remaining) + - location: 200 (just consumed gas: 0.010, remaining gas: 1039869.624 units remaining) [ Unit ] - - location: 201 (remaining gas: 1039869.614 units remaining) + - location: 201 (just consumed gas: 0.010, remaining gas: 1039869.614 units remaining) [ Unit Unit ] - - location: 202 (remaining gas: 1039869.604 units remaining) + - location: 202 (just consumed gas: 0.010, remaining gas: 1039869.604 units remaining) [ (Pair Unit Unit) ] - - location: 203 (remaining gas: 1039869.594 units remaining) + - location: 203 (just consumed gas: 0.010, remaining gas: 1039869.594 units remaining) [ Unit Unit ] - - location: 204 (remaining gas: 1039869.559 units remaining) + - location: 204 (just consumed gas: 0.035, remaining gas: 1039869.559 units remaining) [ ] - - location: 206 (remaining gas: 1039869.549 units remaining) + - location: 206 (just consumed gas: 0.010, remaining gas: 1039869.549 units remaining) [ Unit ] - - location: 207 (remaining gas: 1039869.539 units remaining) + - location: 207 (just consumed gas: 0.010, remaining gas: 1039869.539 units remaining) [ {} Unit ] - - location: 209 (remaining gas: 1039869.529 units remaining) + - location: 209 (just consumed gas: 0.010, remaining gas: 1039869.529 units remaining) [ (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 1f48f17da168..386779edd598 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, remaining gas: 1039667.653 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" 0 0) ] - - location: 9 (remaining gas: 1039667.643 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039667.643 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" ] - - location: 10 (remaining gas: 1039667.038 units remaining) + - location: 10 (just consumed gas: 0.605, remaining gas: 1039667.038 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 11 (remaining gas: 1039446.382 units remaining) + - location: 11 (just consumed gas: 220.656, remaining gas: 1039446.382 units remaining) [ 4000000000000 ] - - location: 12 (remaining gas: 1039446.382 units remaining) + - location: 12 (just consumed gas: 0, remaining gas: 1039446.382 units remaining) [ ] - - location: 14 (remaining gas: 1039235.916 units remaining) + - location: 14 (just consumed gas: 210.466, remaining gas: 1039235.916 units remaining) [ 20000000000000 ] - - location: 12 (remaining gas: 1039235.891 units remaining) + - location: 12 (just consumed gas: 0.025, remaining gas: 1039235.891 units remaining) [ 4000000000000 20000000000000 ] - - location: 15 (remaining gas: 1039235.881 units remaining) + - location: 15 (just consumed gas: 0.010, remaining gas: 1039235.881 units remaining) [ (Pair 4000000000000 20000000000000) ] - - location: 16 (remaining gas: 1039235.871 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039235.871 units remaining) [ {} (Pair 4000000000000 20000000000000) ] - - location: 18 (remaining gas: 1039235.861 units remaining) + - location: 18 (just consumed gas: 0.010, remaining gas: 1039235.861 units remaining) [ (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 3e0a2632e014..f67e2e4d8d9e 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, remaining gas: 1039988.974 units remaining) [ (Pair (Left (Pair False False)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) [ (Left (Pair False False)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) [ (Pair False False) ] - - location: 19 (remaining gas: 1039988.954 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) [ False False ] - - location: 20 (remaining gas: 1039988.939 units remaining) + - location: 20 (just consumed gas: 0.015, remaining gas: 1039988.939 units remaining) [ False ] - - location: 21 (remaining gas: 1039988.929 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.929 units remaining) [ (Left False) ] - - location: 17 (remaining gas: 1039988.914 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.914 units remaining) [ (Left False) ] - - location: 28 (remaining gas: 1039988.904 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.904 units remaining) [ (Some (Left False)) ] - - location: 29 (remaining gas: 1039988.894 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.894 units remaining) [ {} (Some (Left False)) ] - - location: 31 (remaining gas: 1039988.884 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) [ (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 c95bbc1a4418..f38fe6762968 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, remaining gas: 1039988.974 units remaining) [ (Pair (Left (Pair False True)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) [ (Left (Pair False True)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) [ (Pair False True) ] - - location: 19 (remaining gas: 1039988.954 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) [ False True ] - - location: 20 (remaining gas: 1039988.939 units remaining) + - location: 20 (just consumed gas: 0.015, remaining gas: 1039988.939 units remaining) [ True ] - - location: 21 (remaining gas: 1039988.929 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.929 units remaining) [ (Left True) ] - - location: 17 (remaining gas: 1039988.914 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.914 units remaining) [ (Left True) ] - - location: 28 (remaining gas: 1039988.904 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.904 units remaining) [ (Some (Left True)) ] - - location: 29 (remaining gas: 1039988.894 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.894 units remaining) [ {} (Some (Left True)) ] - - location: 31 (remaining gas: 1039988.884 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) [ (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 a9cd32c74b2a..62b793a0977e 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, remaining gas: 1039988.974 units remaining) [ (Pair (Left (Pair True False)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) [ (Left (Pair True False)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) [ (Pair True False) ] - - location: 19 (remaining gas: 1039988.954 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) [ True False ] - - location: 20 (remaining gas: 1039988.939 units remaining) + - location: 20 (just consumed gas: 0.015, remaining gas: 1039988.939 units remaining) [ True ] - - location: 21 (remaining gas: 1039988.929 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.929 units remaining) [ (Left True) ] - - location: 17 (remaining gas: 1039988.914 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.914 units remaining) [ (Left True) ] - - location: 28 (remaining gas: 1039988.904 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.904 units remaining) [ (Some (Left True)) ] - - location: 29 (remaining gas: 1039988.894 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.894 units remaining) [ {} (Some (Left True)) ] - - location: 31 (remaining gas: 1039988.884 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) [ (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 3f401dee92bd..2d43111817a7 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, remaining gas: 1039988.974 units remaining) [ (Pair (Left (Pair True True)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) [ (Left (Pair True True)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) [ (Pair True True) ] - - location: 19 (remaining gas: 1039988.954 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) [ True True ] - - location: 20 (remaining gas: 1039988.939 units remaining) + - location: 20 (just consumed gas: 0.015, remaining gas: 1039988.939 units remaining) [ False ] - - location: 21 (remaining gas: 1039988.929 units remaining) + - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.929 units remaining) [ (Left False) ] - - location: 17 (remaining gas: 1039988.914 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.914 units remaining) [ (Left False) ] - - location: 28 (remaining gas: 1039988.904 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.904 units remaining) [ (Some (Left False)) ] - - location: 29 (remaining gas: 1039988.894 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.894 units remaining) [ {} (Some (Left False)) ] - - location: 31 (remaining gas: 1039988.884 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) [ (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 fbf68a96e0c3..4ce0f079fc10 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, remaining gas: 1039988.974 units remaining) [ (Pair (Right (Pair 0 0)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) [ (Right (Pair 0 0)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) [ (Pair 0 0) ] - - location: 24 (remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) [ 0 0 ] - - location: 25 (remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039988.919 units remaining) [ 0 ] - - location: 26 (remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.909 units remaining) [ (Right 0) ] - - location: 17 (remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.894 units remaining) [ (Right 0) ] - - location: 28 (remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) [ (Some (Right 0)) ] - - location: 29 (remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.874 units remaining) [ {} (Some (Right 0)) ] - - location: 31 (remaining gas: 1039988.864 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039988.864 units remaining) [ (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 9039add34345..4de73abb0b19 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, remaining gas: 1039988.974 units remaining) [ (Pair (Right (Pair 0 1)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) [ (Right (Pair 0 1)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) [ (Pair 0 1) ] - - location: 24 (remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) [ 0 1 ] - - location: 25 (remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039988.919 units remaining) [ 1 ] - - location: 26 (remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.909 units remaining) [ (Right 1) ] - - location: 17 (remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.894 units remaining) [ (Right 1) ] - - location: 28 (remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) [ (Some (Right 1)) ] - - location: 29 (remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.874 units remaining) [ {} (Some (Right 1)) ] - - location: 31 (remaining gas: 1039988.864 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039988.864 units remaining) [ (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 c24b24b30837..7d114da2dfe2 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, remaining gas: 1039988.974 units remaining) [ (Pair (Right (Pair 1 0)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) [ (Right (Pair 1 0)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) [ (Pair 1 0) ] - - location: 24 (remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) [ 1 0 ] - - location: 25 (remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039988.919 units remaining) [ 1 ] - - location: 26 (remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.909 units remaining) [ (Right 1) ] - - location: 17 (remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.894 units remaining) [ (Right 1) ] - - location: 28 (remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) [ (Some (Right 1)) ] - - location: 29 (remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.874 units remaining) [ {} (Some (Right 1)) ] - - location: 31 (remaining gas: 1039988.864 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039988.864 units remaining) [ (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 baa561e7e1fd..c6748a211161 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, remaining gas: 1039988.974 units remaining) [ (Pair (Right (Pair 1 1)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) [ (Right (Pair 1 1)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) [ (Pair 1 1) ] - - location: 24 (remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) [ 1 1 ] - - location: 25 (remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039988.919 units remaining) [ 0 ] - - location: 26 (remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.909 units remaining) [ (Right 0) ] - - location: 17 (remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.894 units remaining) [ (Right 0) ] - - location: 28 (remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) [ (Some (Right 0)) ] - - location: 29 (remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.874 units remaining) [ {} (Some (Right 0)) ] - - location: 31 (remaining gas: 1039988.864 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039988.864 units remaining) [ (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 961c9c011ad0..84d06c2e9153 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, remaining gas: 1039988.974 units remaining) [ (Pair (Right (Pair 42 21)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) [ (Right (Pair 42 21)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) [ (Pair 42 21) ] - - location: 24 (remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) [ 42 21 ] - - location: 25 (remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039988.919 units remaining) [ 63 ] - - location: 26 (remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.909 units remaining) [ (Right 63) ] - - location: 17 (remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.894 units remaining) [ (Right 63) ] - - location: 28 (remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) [ (Some (Right 63)) ] - - location: 29 (remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.874 units remaining) [ {} (Some (Right 63)) ] - - location: 31 (remaining gas: 1039988.864 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039988.864 units remaining) [ (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 56f7ca0a8959..56b83702654d 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, remaining gas: 1039988.974 units remaining) [ (Pair (Right (Pair 42 63)) None) ] - - location: 16 (remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) [ (Right (Pair 42 63)) ] - - location: 17 (remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) [ (Pair 42 63) ] - - location: 24 (remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) [ 42 63 ] - - location: 25 (remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035, remaining gas: 1039988.919 units remaining) [ 21 ] - - location: 26 (remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.909 units remaining) [ (Right 21) ] - - location: 17 (remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.894 units remaining) [ (Right 21) ] - - location: 28 (remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) [ (Some (Right 21)) ] - - location: 29 (remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.874 units remaining) [ {} (Some (Right 21)) ] - - location: 31 (remaining gas: 1039988.864 units remaining) + - location: 31 (just consumed gas: 0.010, remaining gas: 1039988.864 units remaining) [ (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 f1bc7e15e208..b8d17f2faeef 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, remaining gas: 1039993.856 units remaining) [ (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, remaining gas: 1039993.846 units remaining) [ (Pair 22220000000 "2017-12-13T04:49:00Z" 34) ] - - location: 12 (remaining gas: 1039992.516 units remaining) + - location: 12 (just consumed gas: 1.330, remaining gas: 1039992.516 units remaining) [ 0x0507070080acd2c6a501070700bcc485a30b0022 ] - - location: 13 (remaining gas: 1039992.064 units remaining) + - location: 13 (just consumed gas: 0.452, remaining gas: 1039992.064 units remaining) [ 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 14 (remaining gas: 1039992.054 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.054 units remaining) [ {} 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 16 (remaining gas: 1039992.044 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.044 units remaining) [ (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, remaining gas: 1039993.856 units remaining) [ (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, remaining gas: 1039993.846 units remaining) [ (Pair 22220000000 "2017-12-13T04:49:00Z" 34) ] - - location: 12 (remaining gas: 1039992.516 units remaining) + - location: 12 (just consumed gas: 1.330, remaining gas: 1039992.516 units remaining) [ 0x0507070080acd2c6a501070700bcc485a30b0022 ] - - location: 13 (remaining gas: 1039992.064 units remaining) + - location: 13 (just consumed gas: 0.452, remaining gas: 1039992.064 units remaining) [ 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 14 (remaining gas: 1039992.054 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.054 units remaining) [ {} 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 16 (remaining gas: 1039992.044 units remaining) + - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.044 units remaining) [ (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 3fd53e9ec357..4cfa4d5d690d 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, remaining gas: 1039995.733 units remaining) [ (Pair Unit 9999999) ] - - location: 7 (remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) [ ] - - location: 8 (remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) [ 10 ] - - location: 9 (remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) [ {} 10 ] - - location: 11 (remaining gas: 1039995.693 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.693 units remaining) [ (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 d5275ad1baa6..5d9d7fe44565 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, remaining gas: 1039982.728 units remaining) [ (Pair 15 { Elt "bar" 5 ; Elt "foo" 1 } 6) ] - - location: 11 (remaining gas: 1039982.718 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039982.718 units remaining) [ 15 (Pair { Elt "bar" 5 ; Elt "foo" 1 } 6) ] - - location: 12 (remaining gas: 1039982.708 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039982.708 units remaining) [ (Pair { Elt "bar" 5 ; Elt "foo" 1 } 6) 15 ] - - location: 13 (remaining gas: 1039982.698 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039982.698 units remaining) [ { Elt "bar" 5 ; Elt "foo" 1 } 15 ] - - location: 14 (remaining gas: 1039982.698 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039982.698 units remaining) [ ] - - location: 17 (remaining gas: 1039982.688 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039982.688 units remaining) [ 0 ] - - location: 14 (remaining gas: 1039982.663 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039982.663 units remaining) [ 15 0 ] - - location: 14 (remaining gas: 1039982.653 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039982.653 units remaining) [ { Elt "bar" 5 ; Elt "foo" 1 } 15 0 ] - - location: 14 (remaining gas: 1039982.653 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039982.653 units remaining) [ { Elt "bar" 5 ; Elt "foo" 1 } 15 0 ] - - location: 20 (remaining gas: 1039982.653 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039982.653 units remaining) [ (Pair "bar" 5) 15 0 ] - - location: 22 (remaining gas: 1039982.643 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039982.643 units remaining) [ 5 15 0 ] - - location: 23 (remaining gas: 1039982.643 units remaining) + - location: 23 (just consumed gas: 0, remaining gas: 1039982.643 units remaining) [ 15 0 ] - - location: 25 (remaining gas: 1039982.633 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039982.633 units remaining) [ 15 15 0 ] - - location: 23 (remaining gas: 1039982.608 units remaining) + - location: 23 (just consumed gas: 0.025, remaining gas: 1039982.608 units remaining) [ 5 15 15 0 ] - - location: 26 (remaining gas: 1039982.573 units remaining) + - location: 26 (just consumed gas: 0.035, remaining gas: 1039982.573 units remaining) [ 20 15 0 ] - - location: 27 (remaining gas: 1039982.563 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039982.563 units remaining) [ 20 20 15 0 ] - - location: 28 (remaining gas: 1039982.515 units remaining) + - location: 28 (just consumed gas: 0.048, remaining gas: 1039982.515 units remaining) [ 20 15 20 0 ] - - location: 30 (remaining gas: 1039982.515 units remaining) + - location: 30 (just consumed gas: 0, remaining gas: 1039982.515 units remaining) [ 20 0 ] - - location: 33 (remaining gas: 1039982.480 units remaining) + - location: 33 (just consumed gas: 0.035, remaining gas: 1039982.480 units remaining) [ 20 ] - - location: 30 (remaining gas: 1039982.455 units remaining) + - location: 30 (just consumed gas: 0.025, remaining gas: 1039982.455 units remaining) [ 15 20 ] - - location: 30 (remaining gas: 1039982.445 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039982.445 units remaining) [ 20 15 20 ] - - location: 30 (remaining gas: 1039982.445 units remaining) + - location: 30 (just consumed gas: 0, remaining gas: 1039982.445 units remaining) [ 20 15 20 ] - - location: 20 (remaining gas: 1039982.430 units remaining) + - location: 20 (just consumed gas: 0.015, remaining gas: 1039982.430 units remaining) [ (Pair "foo" 1) 15 20 ] - - location: 22 (remaining gas: 1039982.420 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039982.420 units remaining) [ 1 15 20 ] - - location: 23 (remaining gas: 1039982.420 units remaining) + - location: 23 (just consumed gas: 0, remaining gas: 1039982.420 units remaining) [ 15 20 ] - - location: 25 (remaining gas: 1039982.410 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039982.410 units remaining) [ 15 15 20 ] - - location: 23 (remaining gas: 1039982.385 units remaining) + - location: 23 (just consumed gas: 0.025, remaining gas: 1039982.385 units remaining) [ 1 15 15 20 ] - - location: 26 (remaining gas: 1039982.350 units remaining) + - location: 26 (just consumed gas: 0.035, remaining gas: 1039982.350 units remaining) [ 16 15 20 ] - - location: 27 (remaining gas: 1039982.340 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039982.340 units remaining) [ 16 16 15 20 ] - - location: 28 (remaining gas: 1039982.292 units remaining) + - location: 28 (just consumed gas: 0.048, remaining gas: 1039982.292 units remaining) [ 16 15 16 20 ] - - location: 30 (remaining gas: 1039982.292 units remaining) + - location: 30 (just consumed gas: 0, remaining gas: 1039982.292 units remaining) [ 16 20 ] - - location: 33 (remaining gas: 1039982.257 units remaining) + - location: 33 (just consumed gas: 0.035, remaining gas: 1039982.257 units remaining) [ 36 ] - - location: 30 (remaining gas: 1039982.232 units remaining) + - location: 30 (just consumed gas: 0.025, remaining gas: 1039982.232 units remaining) [ 15 36 ] - - location: 30 (remaining gas: 1039982.222 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039982.222 units remaining) [ 16 15 36 ] - - location: 30 (remaining gas: 1039982.222 units remaining) + - location: 30 (just consumed gas: 0, remaining gas: 1039982.222 units remaining) [ 16 15 36 ] - - location: 20 (remaining gas: 1039982.207 units remaining) + - location: 20 (just consumed gas: 0.015, remaining gas: 1039982.207 units remaining) [ { Elt "bar" 20 ; Elt "foo" 16 } 15 36 ] - - location: 34 (remaining gas: 1039982.207 units remaining) + - location: 34 (just consumed gas: 0, remaining gas: 1039982.207 units remaining) [ 15 36 ] - - location: 36 (remaining gas: 1039982.197 units remaining) + - location: 36 (just consumed gas: 0.010, remaining gas: 1039982.197 units remaining) [ 36 ] - - location: 34 (remaining gas: 1039982.172 units remaining) + - location: 34 (just consumed gas: 0.025, remaining gas: 1039982.172 units remaining) [ { Elt "bar" 20 ; Elt "foo" 16 } 36 ] - - location: 37 (remaining gas: 1039982.162 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039982.162 units remaining) [ (Pair { Elt "bar" 20 ; Elt "foo" 16 } 36) ] - - location: 38 (remaining gas: 1039982.152 units remaining) + - location: 38 (just consumed gas: 0.010, remaining gas: 1039982.152 units remaining) [ {} (Pair { Elt "bar" 20 ; Elt "foo" 16 } 36) ] - - location: 40 (remaining gas: 1039982.142 units remaining) + - location: 40 (just consumed gas: 0.010, remaining gas: 1039982.142 units remaining) [ (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 07c8fdd630b6..12113c70dbfa 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, remaining gas: 1039983.099 units remaining) [ (Pair 10 { Elt "foo" 1 } 1) ] - - location: 11 (remaining gas: 1039983.089 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039983.089 units remaining) [ 10 (Pair { Elt "foo" 1 } 1) ] - - location: 12 (remaining gas: 1039983.079 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039983.079 units remaining) [ (Pair { Elt "foo" 1 } 1) 10 ] - - location: 13 (remaining gas: 1039983.069 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039983.069 units remaining) [ { Elt "foo" 1 } 10 ] - - location: 14 (remaining gas: 1039983.069 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039983.069 units remaining) [ ] - - location: 17 (remaining gas: 1039983.059 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039983.059 units remaining) [ 0 ] - - location: 14 (remaining gas: 1039983.034 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039983.034 units remaining) [ 10 0 ] - - location: 14 (remaining gas: 1039983.024 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039983.024 units remaining) [ { Elt "foo" 1 } 10 0 ] - - location: 14 (remaining gas: 1039983.024 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039983.024 units remaining) [ { Elt "foo" 1 } 10 0 ] - - location: 20 (remaining gas: 1039983.024 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039983.024 units remaining) [ (Pair "foo" 1) 10 0 ] - - location: 22 (remaining gas: 1039983.014 units remaining) + - location: 22 (just consumed gas: 0.010, remaining gas: 1039983.014 units remaining) [ 1 10 0 ] - - location: 23 (remaining gas: 1039983.014 units remaining) + - location: 23 (just consumed gas: 0, remaining gas: 1039983.014 units remaining) [ 10 0 ] - - location: 25 (remaining gas: 1039983.004 units remaining) + - location: 25 (just consumed gas: 0.010, remaining gas: 1039983.004 units remaining) [ 10 10 0 ] - - location: 23 (remaining gas: 1039982.979 units remaining) + - location: 23 (just consumed gas: 0.025, remaining gas: 1039982.979 units remaining) [ 1 10 10 0 ] - - location: 26 (remaining gas: 1039982.944 units remaining) + - location: 26 (just consumed gas: 0.035, remaining gas: 1039982.944 units remaining) [ 11 10 0 ] - - location: 27 (remaining gas: 1039982.934 units remaining) + - location: 27 (just consumed gas: 0.010, remaining gas: 1039982.934 units remaining) [ 11 11 10 0 ] - - location: 28 (remaining gas: 1039982.886 units remaining) + - location: 28 (just consumed gas: 0.048, remaining gas: 1039982.886 units remaining) [ 11 10 11 0 ] - - location: 30 (remaining gas: 1039982.886 units remaining) + - location: 30 (just consumed gas: 0, remaining gas: 1039982.886 units remaining) [ 11 0 ] - - location: 33 (remaining gas: 1039982.851 units remaining) + - location: 33 (just consumed gas: 0.035, remaining gas: 1039982.851 units remaining) [ 11 ] - - location: 30 (remaining gas: 1039982.826 units remaining) + - location: 30 (just consumed gas: 0.025, remaining gas: 1039982.826 units remaining) [ 10 11 ] - - location: 30 (remaining gas: 1039982.816 units remaining) + - location: 30 (just consumed gas: 0.010, remaining gas: 1039982.816 units remaining) [ 11 10 11 ] - - location: 30 (remaining gas: 1039982.816 units remaining) + - location: 30 (just consumed gas: 0, remaining gas: 1039982.816 units remaining) [ 11 10 11 ] - - location: 20 (remaining gas: 1039982.801 units remaining) + - location: 20 (just consumed gas: 0.015, remaining gas: 1039982.801 units remaining) [ { Elt "foo" 11 } 10 11 ] - - location: 34 (remaining gas: 1039982.801 units remaining) + - location: 34 (just consumed gas: 0, remaining gas: 1039982.801 units remaining) [ 10 11 ] - - location: 36 (remaining gas: 1039982.791 units remaining) + - location: 36 (just consumed gas: 0.010, remaining gas: 1039982.791 units remaining) [ 11 ] - - location: 34 (remaining gas: 1039982.766 units remaining) + - location: 34 (just consumed gas: 0.025, remaining gas: 1039982.766 units remaining) [ { Elt "foo" 11 } 11 ] - - location: 37 (remaining gas: 1039982.756 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039982.756 units remaining) [ (Pair { Elt "foo" 11 } 11) ] - - location: 38 (remaining gas: 1039982.746 units remaining) + - location: 38 (just consumed gas: 0.010, remaining gas: 1039982.746 units remaining) [ {} (Pair { Elt "foo" 11 } 11) ] - - location: 40 (remaining gas: 1039982.736 units remaining) + - location: 40 (just consumed gas: 0.010, remaining gas: 1039982.736 units remaining) [ (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 7b31a83abe22..f1cdc31c382f 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, remaining gas: 1039983.429 units remaining) [ (Pair 10 {} 0) ] - - location: 11 (remaining gas: 1039983.419 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039983.419 units remaining) [ 10 (Pair {} 0) ] - - location: 12 (remaining gas: 1039983.409 units remaining) + - location: 12 (just consumed gas: 0.010, remaining gas: 1039983.409 units remaining) [ (Pair {} 0) 10 ] - - location: 13 (remaining gas: 1039983.399 units remaining) + - location: 13 (just consumed gas: 0.010, remaining gas: 1039983.399 units remaining) [ {} 10 ] - - location: 14 (remaining gas: 1039983.399 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039983.399 units remaining) [ ] - - location: 17 (remaining gas: 1039983.389 units remaining) + - location: 17 (just consumed gas: 0.010, remaining gas: 1039983.389 units remaining) [ 0 ] - - location: 14 (remaining gas: 1039983.364 units remaining) + - location: 14 (just consumed gas: 0.025, remaining gas: 1039983.364 units remaining) [ 10 0 ] - - location: 14 (remaining gas: 1039983.354 units remaining) + - location: 14 (just consumed gas: 0.010, remaining gas: 1039983.354 units remaining) [ {} 10 0 ] - - location: 14 (remaining gas: 1039983.354 units remaining) + - location: 14 (just consumed gas: 0, remaining gas: 1039983.354 units remaining) [ {} 10 0 ] - - location: 20 (remaining gas: 1039983.354 units remaining) + - location: 20 (just consumed gas: 0, remaining gas: 1039983.354 units remaining) [ {} 10 0 ] - - location: 34 (remaining gas: 1039983.354 units remaining) + - location: 34 (just consumed gas: 0, remaining gas: 1039983.354 units remaining) [ 10 0 ] - - location: 36 (remaining gas: 1039983.344 units remaining) + - location: 36 (just consumed gas: 0.010, remaining gas: 1039983.344 units remaining) [ 0 ] - - location: 34 (remaining gas: 1039983.319 units remaining) + - location: 34 (just consumed gas: 0.025, remaining gas: 1039983.319 units remaining) [ {} 0 ] - - location: 37 (remaining gas: 1039983.309 units remaining) + - location: 37 (just consumed gas: 0.010, remaining gas: 1039983.309 units remaining) [ (Pair {} 0) ] - - location: 38 (remaining gas: 1039983.299 units remaining) + - location: 38 (just consumed gas: 0.010, remaining gas: 1039983.299 units remaining) [ {} (Pair {} 0) ] - - location: 40 (remaining gas: 1039983.289 units remaining) + - location: 40 (just consumed gas: 0.010, remaining gas: 1039983.289 units remaining) [ (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 725d11c9a19d..250c52e1f0e4 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, remaining gas: 1039995.625 units remaining) [ (Pair Unit "2017-07-13T09:19:01Z") ] - - location: 7 (remaining gas: 1039995.615 units remaining) + - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.615 units remaining) [ ] - - location: 8 (remaining gas: 1039995.605 units remaining) + - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.605 units remaining) [ "2021-10-13T10:16:52Z" ] - - location: 9 (remaining gas: 1039995.595 units remaining) + - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.595 units remaining) [ {} "2021-10-13T10:16:52Z" ] - - location: 11 (remaining gas: 1039995.585 units remaining) + - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.585 units remaining) [ (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 4f6fb982a3d1..6093edbe610a 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, remaining gas: 1039980.231 units remaining) [ (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, remaining gas: 1039980.221 units remaining) [ (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, remaining gas: 1039980.211 units remaining) [ (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, remaining gas: 1039980.211 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 19 (remaining gas: 1039980.201 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039980.201 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 17 (remaining gas: 1039980.176 units remaining) + - location: 17 (just consumed gas: 0.025, remaining gas: 1039980.176 units remaining) [ (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, remaining gas: 1039977.369 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 23 (remaining gas: 1039977.334 units remaining) + - location: 23 (just consumed gas: 0.035, remaining gas: 1039977.334 units remaining) [ 0 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 24 (remaining gas: 1039977.324 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039977.324 units remaining) [ True 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 25 (remaining gas: 1039977.324 units remaining) + - location: 25 (just consumed gas: 0, remaining gas: 1039977.324 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 25 (remaining gas: 1039977.309 units remaining) + - location: 25 (just consumed gas: 0.015, remaining gas: 1039977.309 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 31 (remaining gas: 1039974.556 units remaining) + - location: 31 (just consumed gas: 2.753, remaining gas: 1039974.556 units remaining) [ (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, remaining gas: 1039974.556 units remaining) [ (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, remaining gas: 1039974.541 units remaining) [ (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, remaining gas: 1039974.531 units remaining) [ ] - - location: 47 (remaining gas: 1039974.521 units remaining) + - location: 47 (just consumed gas: 0.010, remaining gas: 1039974.521 units remaining) [ Unit ] - - location: 48 (remaining gas: 1039974.511 units remaining) + - location: 48 (just consumed gas: 0.010, remaining gas: 1039974.511 units remaining) [ {} Unit ] - - location: 50 (remaining gas: 1039974.501 units remaining) + - location: 50 (just consumed gas: 0.010, remaining gas: 1039974.501 units remaining) [ (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, remaining gas: 1039980.231 units remaining) [ (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, remaining gas: 1039980.221 units remaining) [ (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, remaining gas: 1039980.211 units remaining) [ (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, remaining gas: 1039980.211 units remaining) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 19 (remaining gas: 1039980.201 units remaining) + - location: 19 (just consumed gas: 0.010, remaining gas: 1039980.201 units remaining) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 17 (remaining gas: 1039980.176 units remaining) + - location: 17 (just consumed gas: 0.025, remaining gas: 1039980.176 units remaining) [ (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, remaining gas: 1039977.369 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 23 (remaining gas: 1039977.334 units remaining) + - location: 23 (just consumed gas: 0.035, remaining gas: 1039977.334 units remaining) [ -1 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 24 (remaining gas: 1039977.324 units remaining) + - location: 24 (just consumed gas: 0.010, remaining gas: 1039977.324 units remaining) [ False 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 25 (remaining gas: 1039977.324 units remaining) + - location: 25 (just consumed gas: 0, remaining gas: 1039977.324 units remaining) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 29 (remaining gas: 1039977.314 units remaining) + - location: 29 (just consumed gas: 0.010, remaining gas: 1039977.314 units remaining) [ Unit 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] Fatal error: -- GitLab From 408598d62c07d54460ee2a0076537e0a5f1774cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Cauderlier?= Date: Tue, 11 Oct 2022 22:53:56 +0200 Subject: [PATCH 3/5] Proto+Plugin+Client/Michelson: remove the "remaining gas" in execution traces This is to avoid large diffs in case of small gas regressions --- src/proto_alpha/lib_client/michelson_v1_printer.ml | 7 ++----- src/proto_alpha/lib_plugin/RPC.ml | 6 ++---- src/proto_alpha/lib_protocol/script_interpreter.ml | 3 +-- src/proto_alpha/lib_protocol/script_typed_ir.ml | 3 +-- src/proto_alpha/lib_protocol/script_typed_ir.mli | 3 +-- 5 files changed, 7 insertions(+), 15 deletions(-) diff --git a/src/proto_alpha/lib_client/michelson_v1_printer.ml b/src/proto_alpha/lib_client/michelson_v1_printer.ml index 54728b701d12..d4c0eeeeb611 100644 --- a/src/proto_alpha/lib_client/michelson_v1_printer.ml +++ b/src/proto_alpha/lib_client/michelson_v1_printer.ml @@ -54,16 +54,13 @@ let print_stack ppf = function let print_execution_trace ppf (trace : Script_typed_ir.execution_trace) = Format.pp_print_list - (fun ppf (loc, gas, remaining, stack) -> + (fun ppf (loc, gas, stack) -> Format.fprintf ppf - "- @[location: %d (just consumed gas: %a, remaining gas: %a)@,\ - [ @[%a ]@]@]" + "- @[location: %d (just consumed gas: %a)@,[ @[%a ]@]@]" loc Gas.Arith.pp gas - Gas.pp - remaining (Format.pp_print_list (fun ppf e -> Format.fprintf ppf "@[%a@]" print_expr e)) stack) diff --git a/src/proto_alpha/lib_plugin/RPC.ml b/src/proto_alpha/lib_plugin/RPC.ml index c835a186420f..d4175efb1af9 100644 --- a/src/proto_alpha/lib_plugin/RPC.ml +++ b/src/proto_alpha/lib_plugin/RPC.ml @@ -194,10 +194,9 @@ module Scripts = struct let trace_encoding : Script_typed_ir.execution_trace encoding = def "scripted.trace" @@ list - @@ obj4 + @@ obj3 (req "location" Script.location_encoding) (req "gas" Gas.Arith.z_fp_encoding) - (req "remaining_gas" Gas.encoding) (req "stack" (list Script.expr_encoding)) let trace_code_output_encoding = @@ -516,8 +515,7 @@ module Scripts = struct trace Plugin_errors.Cannot_serialize_log (unparse_stack ctxt (stack, stack_ty)) - >>=? fun stack -> - return (ctxt, (loc, consumed_gas, Gas.level ctxt, stack) :: l)) + >>=? fun stack -> return (ctxt, (loc, consumed_gas, stack) :: l)) (ctxt, []) (List.rev !log) >>=? fun (_ctxt, res) -> return (Some (List.rev res)) diff --git a/src/proto_alpha/lib_protocol/script_interpreter.ml b/src/proto_alpha/lib_protocol/script_interpreter.ml index 51afdbf31b93..a0ed820f8f8e 100644 --- a/src/proto_alpha/lib_protocol/script_interpreter.ml +++ b/src/proto_alpha/lib_protocol/script_interpreter.ml @@ -120,10 +120,9 @@ let () = let open Data_encoding in let trace_encoding : Script_typed_ir.execution_trace encoding = list - @@ obj4 + @@ obj3 (req "location" Script.location_encoding) (req "gas" Gas.Arith.z_fp_encoding) - (req "remaining_gas" Gas.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 205f6f71a5ac..aaded94994b1 100644 --- a/src/proto_alpha/lib_protocol/script_typed_ir.ml +++ b/src/proto_alpha/lib_protocol/script_typed_ir.ml @@ -1217,8 +1217,7 @@ and ('a, 's, 'b, 'f, 'c, 'u) logging_function = 'c * 'u -> unit -and execution_trace = - (Script.location * Gas.Arith.fp * 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 9136293f4ff3..5cd6815538db 100644 --- a/src/proto_alpha/lib_protocol/script_typed_ir.mli +++ b/src/proto_alpha/lib_protocol/script_typed_ir.mli @@ -1303,8 +1303,7 @@ and ('a, 's, 'b, 'f, 'c, 'u) logging_function = 'c * 'u -> unit -and execution_trace = - (Script.location * Gas.Arith.fp * 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; -- GitLab From 433433aeb7ecbcba2068980a545f034b3f632d93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Cauderlier?= Date: Tue, 11 Oct 2022 22:58:33 +0200 Subject: [PATCH 4/5] Tests/Python: reset regression traces --- ...(Some 4) {})-\"hello\"-(Pa.f6092ac5d6.out" | 18 +- ...(Some 5) { Elt \"hello\" 4.0427752f13.out" | 18 +- ...(Some 5) { Elt \"hello\" 4.0793dc66d5.out" | 18 +- ...None { Elt \"1\" 1 ; .df114499b8.out" | 18 +- ...None { Elt \"1\" 1 ; .f9bea98de9.out" | 18 +- ...None { Elt \"hello\" 4 })-.1db12cd837.out" | 18 +- ...None {})-\"hello\"-(Pair N.6fc7d0acf2.out" | 18 +- ..." \"one\" ; Elt \"2\" \"tw.524c5459f8.out" | 26 +- ...ello\" \"hi\" } None)-\"\".33eba403e7.out" | 26 +- ...hello\" \"hi\" } None)-\"h.a5cd1005c9.out" | 26 +- ...one\" ; Elt \"2\" \"two\" .6f3d35b151.out" | 18 +- ...one\" ; Elt \"2\" \"two\" .76aeaa0706.out" | 24 +- ...one\" ; Elt \"2\" \"two\" .7e7197f248.out" | 24 +- ...one\" ; Elt \"2\" \"two\" .7ef2c415a7.out" | 24 +- ...one\" ; Elt \"2\" \"two\" .b688cc94a7.out" | 24 +- ...one\" ; Elt \"2\" \"two\" .c68db221ed.out" | 24 +- ...erflow[mul_overflow.tz-Unit-Left Unit].out | 10 +- ...rflow[mul_overflow.tz-Unit-Right Unit].out | 10 +- ...ow[shifts.tz-None-(Left (Pair 1 257))].out | 8 +- ...[shifts.tz-None-(Left (Pair 123 257))].out | 8 +- ...w[shifts.tz-None-(Right (Pair 1 257))].out | 8 +- ...shifts.tz-None-(Right (Pair 123 257))].out | 8 +- ...TestContractOpcodes::test_balance[0.5].out | 10 +- ...s.TestContractOpcodes::test_balance[0].out | 10 +- ...estContractOpcodes::test_balance[1000].out | 10 +- ...s.TestContractOpcodes::test_balance[1].out | 10 +- ...stContractOpcodes::test_balance[1e-06].out | 10 +- ...s.TestContractOpcodes::test_balance[5].out | 10 +- ...Opcodes::test_balance[8000000000000.0].out | 10 +- ... \"two\" }) )-(Right (Righ.7492e8cdea.out" | 52 +- ... \"two\" }))-(Left Unit)-(.21b30dd90f.out" | 26 +- ... \"two\" }))-(Right (Left .2873ef610c.out" | 20 +- ... \"two\" }))-(Right (Left .8a6f480005.out" | 20 +- ... \"two\" }))-(Right (Right.d336ca1903.out" | 50 +- ...Pair \"foo\" \"bar\" } { P.7f2ee47600.out" | 80 +- ...tContractOpcodes::test_check_signature.out | 70 +- ...tract_input_output[abs.tz-Unit-0-Unit].out | 24 +- ....tz-Unit-12039123919239192312931-Unit].out | 24 +- ...act_input_output[abs.tz-Unit-948-Unit].out | 24 +- ...ct_input_output[add.tz-Unit-Unit-Unit].out | 136 ++-- ...r 0x00 0x00-(Some 0x0000000.3c2de60480.out | 14 +- ...r 0x01 0x00-(Some 0x0100000.12b2c1172b.out | 14 +- ...r 0x010000 0x00-(Some 0x010.0e44fc6f40.out | 14 +- ...r 0x010000 0x010000-(Some 0.7e0ed229a3.out | 14 +- ...air -100 100)-(Some \"1970.7c1b1e4e5b.out" | 22 +- ...air 0 \"1970-01-01T00:00:0.528ed42c01.out" | 22 +- ...air 100 100)-(Some \"1970-.6566111ad2.out" | 22 +- ...air \"1970-01-01T00:00:00Z.72c424f3da.out" | 22 +- ...air 100 -100)-(Some \"1970.7c4b12e9aa.out" | 22 +- ...air 100 100)-(Some \"1970-.af32743640.out" | 22 +- ...dhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" | 12 +- ...-None-(Pair False False)-(Some False)].out | 18 +- ...z-None-(Pair False True)-(Some False)].out | 18 +- ...z-None-(Pair True False)-(Some False)].out | 18 +- ....tz-None-(Pair True True)-(Some True)].out | 18 +- ...t_output[and_binary.tz-Unit-Unit-Unit].out | 74 +- ...l_1.tz-False-(Pair False False)-False].out | 12 +- ...al_1.tz-False-(Pair False True)-False].out | 12 +- ...al_1.tz-False-(Pair True False)-False].out | 12 +- ...ical_1.tz-False-(Pair True True)-True].out | 12 +- ...put[balance.tz-111-Unit-4000000000000].out | 10 +- ...lt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out | 24 +- ...lt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out | 24 +- ...lt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out | 24 +- ...lt 1 0 } None)-1-(Pair 4 (S.73700321f8.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-1.1182eca937.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-2.1eead33885.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out | 24 +- ...air {} None)-1-(Pair 4 (Some False))0].out | 24 +- ...air {} None)-1-(Pair 4 (Some False))1].out | 24 +- ... \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" | 24 +- ... \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" | 24 +- ... \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" | 24 +- ... \"foo\" 0 } None)-\"foo\".968709d39d.out" | 24 +- ... \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" | 24 +- ... None)-\"bar\"-(Pair 4 (Some False))].out" | 24 +- ...padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out | 12 +- ...e-Unit-(Some 0x100000000000.d1219ca789.out | 12 +- ...utput[bls12_381_fr_to_int.tz-0-0x00-0].out | 10 +- ...utput[bls12_381_fr_to_int.tz-0-0x01-1].out | 10 +- ...8db8e57af88d9576acd181b89f2.7a85c336ff.out | 10 +- ...9e8abf8dc324a010007addde986.b821eb26b3.out | 10 +- ...ut[bls12_381_fr_to_mutez.tz-0-0x10-16].out | 20 +- ...000000000000000000000000000.0accef5bef.out | 10 +- ...000000000000000000000000000.0ecc537252.out | 10 +- ...000000000000000000000000000.2229b767cd.out | 10 +- ...000000000000000000000000000.2ff549b46b.out | 10 +- ...000000000000000000000000000.bf8a711be6.out | 10 +- ...000000000000000000000000000.d41cbb044b.out | 10 +- ...a5ad0a633e4880d2296f08ec5c1.a50412e458.out | 10 +- ...cd0fa853810e356f1eb79721e80.f3a349c4a7.out | 10 +- ...be1766f92cd82c5e5135c374a03.1b9676e4c2.out | 10 +- ...be1766f92cd82c5e5135c374a03.e966dc6de5.out | 10 +- ...000000000000000000000000000.964835cc43.out | 10 +- ...000000000000000000000000000.b25ea709fb.out | 10 +- ...000000000000000000000000000.eae36753ea.out | 10 +- ...000000000000000000000000000.ee57dac8f7.out | 10 +- ...a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out | 10 +- ...cd0fa853810e356f1eb79721e80.bd5800f6b8.out | 10 +- ...be1766f92cd82c5e5135c374a03.00e897789a.out | 10 +- ...be1766f92cd82c5e5135c374a03.a4697eaa13.out | 10 +- ...000000000000000000000000000.0177355bbf.out | 12 +- ...000000000000000000000000000.744166c609.out | 12 +- ...000000000000000000000000000.9f3c5cdc6a.out | 12 +- ...000000000000000000000000000.a54cb341ba.out | 12 +- ...000000000000000000000000000.b0dc584c94.out | 12 +- ...000000000000000000000000000.bddcad090c.out | 12 +- ...a5ad0a633e4880d2296f08ec5c1.92c153eb47.out | 12 +- ...cd0fa853810e356f1eb79721e80.290ab49d11.out | 12 +- ...be1766f92cd82c5e5135c374a03.69f3589a06.out | 12 +- ...be1766f92cd82c5e5135c374a03.fee3c5cf43.out | 12 +- ...000000000000000000000000000.1bccc033e8.out | 12 +- ...000000000000000000000000000.40958700fe.out | 12 +- ...000000000000000000000000000.6c62b03d78.out | 12 +- ...000000000000000000000000000.d23f269341.out | 12 +- ...a5ad0a633e4880d2296f08ec5c1.927f808504.out | 12 +- ...cd0fa853810e356f1eb79721e80.0c114c956a.out | 12 +- ...be1766f92cd82c5e5135c374a03.03c4f38e68.out | 12 +- ...be1766f92cd82c5e5135c374a03.8ed19cfdd9.out | 12 +- ...input_output[car.tz-0-(Pair 34 17)-34].out | 10 +- ...input_output[cdr.tz-0-(Pair 34 17)-17].out | 10 +- ...prcVkpaWU\")-Unit-(Some \".8420090f97.out" | 12 +- ...770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" | 12 +- ...None-Unit-(Some \"NetXdQprcVkpaWU\")].out" | 12 +- ...mb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out | 82 +- ... Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" | 22 +- ...r 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out | 24 +- ...omb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out | 14 +- ...nput_output[compare.tz-Unit-Unit-Unit].out | 358 ++++----- ...; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out | 200 ++--- ...-{ \"World!\" }-{ \"Hello World!\" }].out" | 16 +- ..."test2\" }-{ \"Hello test1.c27e8c3ee6.out" | 22 +- ...input_output[concat_hello.tz-{}-{}-{}].out | 10 +- ...}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out | 22 +- ...hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out | 16 +- ...output[concat_hello_bytes.tz-{}-{}-{}].out | 10 +- ...; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" | 86 +- ...\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" | 68 +- ...t_output[concat_list.tz-\"\"-{}-\"\"].out" | 14 +- ...ns.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out | 10 +- ..._output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out | 10 +- ...act_input_output[cons.tz-{}-10-{ 10 }].out | 10 +- ...ir { \"A\" } { \"B\" })-(Some False)].out" | 100 +-- ...\"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" | 244 +++--- ...\"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" | 266 +++---- ...air { \"B\" } { \"B\" })-(Some True)].out" | 100 +-- ...ir { \"c\" } { \"B\" })-(Some False)].out" | 100 +-- ..._all.tz-None-(Pair {} {})-(Some True)].out | 38 +- ...wnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" | 18 +- ...Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" | 24 +- ...970-01-01T00:03:20Z\" \"19.90e9215d17.out" | 20 +- ...t[diff_timestamps.tz-111-(Pair 0 0)-0].out | 20 +- ...[diff_timestamps.tz-111-(Pair 0 1)--1].out | 20 +- ...t[diff_timestamps.tz-111-(Pair 1 0)-1].out | 20 +- ...r 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out | 748 +++++++++--------- ... 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out | 748 +++++++++--------- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out | 30 +- ...p.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out | 20 +- ...z-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out | 20 +- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out | 42 +- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out | 18 +- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out | 26 +- ..._input_output[dup-n.tz-Unit-Unit-Unit].out | 82 +- ... None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out | 70 +- ... None)-(Pair 10 -3)-(Pair (.3caea50555.out | 70 +- ... None)-(Pair 10 0)-(Pair No.f9448c04fb.out | 70 +- ... None)-(Pair 10 (Left 0))-(Left None)].out | 22 +- ...air 10 (Left 10))-(Left (So.f782cc1dec.out | 22 +- ...air 10 (Left 3))-(Left (Som.016b4db96c.out | 22 +- ...one)-(Pair 10 (Right 0))-(Right None)].out | 22 +- ...air 10 (Right 10))-(Right (.e705a30e07.out | 22 +- ...air 10 (Right 3))-(Right (S.44485eda6a.out | 22 +- ...air 5 (Right 10))-(Right (S.8ab987af15.out | 22 +- ...t_input_output[emit.tz-Unit-Unit-Unit].out | 30 +- ...-{}-Unit-{ Elt \"hello\" \"world\" }].out" | 18 +- ...t[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" | 28 +- ...oncat.tz-\"?\"-\"test\"-\"test_abc\"].out" | 28 +- ...tput[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out | 18 +- ...act_input_output[first.tz-111-{ 4 }-4].out | 18 +- ...me 4) {})-\"hello\"-(Pair .161d86cef6.out" | 18 +- ...me 5) { Elt \"hello\" 4 }).684ab7e326.out" | 18 +- ...me 5) { Elt \"hello\" 4 }).d49817fb83.out" | 18 +- ...e { Elt \"1\" 1 ; .6900b1da14.out" | 18 +- ...e { Elt \"1\" 1 ; .bca0ede8be.out" | 18 +- ... { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" | 18 +- ...ir None {})-\"hello\"-(Pair None {})].out" | 18 +- ... \"1\" \"one\" ; .bc4127094e.out" | 24 +- ..."hello\" \"hi\" })-\"\"-(P.0c03056487.out" | 24 +- ...\"hello\" \"hi\" })-\"hell.cc45544c66.out" | 24 +- ...nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" | 12 +- ...2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" | 12 +- ...xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" | 12 +- ...-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" | 12 +- ..._output[if.tz-None-False-(Some False)].out | 16 +- ...ut_output[if.tz-None-True-(Some True)].out | 16 +- ....tz-\"?\"-(Some \"hello\")-\"hello\"].out" | 12 +- ...ut_output[if_some.tz-\"?\"-None-\"\"].out" | 14 +- ...t_input_output[int.tz-None-0-(Some 0)].out | 12 +- ...t_input_output[int.tz-None-1-(Some 1)].out | 12 +- ...t_output[int.tz-None-9999-(Some 9999)].out | 12 +- ...c20776f726c6421-(Some 0xb6e.34c02678c9.out | 12 +- ...Left \"X\")-(Left True)-(Right True)].out" | 14 +- ...ft \"X\")-(Right \"a\")-(Left \"a\")].out" | 14 +- ...ract_input_output[level.tz-111-Unit-1].out | 10 +- ...{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" | 14 +- ...ut[list_concat.tz-\"abc\"-{}-\"abc\"].out" | 14 +- ...tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out | 14 +- ..._output[list_concat_bytes.tz-0x-{}-0x].out | 14 +- ...b-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out | 14 +- ...list_concat_bytes.tz-0xabcd-{}-0xabcd].out | 14 +- ... ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" | 8 +- ... ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 8 +- ...input_output[list_id.tz-{\"\"}-{}-{}].out" | 8 +- ... ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" | 16 +- ... ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 16 +- ...t_output[list_id_map.tz-{\"\"}-{}-{}].out" | 10 +- ...tput[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out | 26 +- ...tput[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out | 26 +- ...}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out | 92 +-- ...}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out | 92 +-- ...ut_output[list_map_block.tz-{0}-{}-{}].out | 20 +- ...ze.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out | 10 +- ...tput[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out | 10 +- ...input_output[list_size.tz-111-{ 1 }-1].out | 10 +- ...ct_input_output[list_size.tz-111-{}-0].out | 10 +- ... ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 120 +-- ...put_output[loop_left.tz-{\"\"}-{}-{}].out" | 36 +- ...0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out | 8 +- ...[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out | 8 +- ...[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out | 8 +- ... Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out | 94 +-- ...-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out | 94 +-- ...foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" | 42 +- ...lt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" | 30 +- ...ract_input_output[map_map.tz-{}-10-{}].out | 18 +- ... 1 } None)-1-(Pair { Elt 0 .7396e5f090.out | 24 +- ... 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out | 24 +- ... 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out | 24 +- ... 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out | 24 +- ... 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out | 24 +- ...air {} None)-1-(Pair {} (Some False))].out | 24 +- ...ar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" | 24 +- ...ar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" | 24 +- ...ar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" | 24 +- ...oo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" | 24 +- ...oo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" | 24 +- ...None)-\"bar\"-(Pair {} (Some False))].out" | 24 +- ... \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" | 10 +- ...\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" | 10 +- ...ut[map_size.tz-111-{ Elt \"a\" 1 }-1].out" | 10 +- ...act_input_output[map_size.tz-111-{}-0].out | 10 +- ...ct_input_output[mul.tz-Unit-Unit-Unit].out | 108 +-- ...0-257-0x0101000000000000000.be11332c7f.out | 24 +- ...2-16-0x10000000000000000000.8230fb4fac.out | 24 +- ...act_input_output[neg.tz-0-(Left -2)-2].out | 14 +- ...ract_input_output[neg.tz-0-(Left 0)-0].out | 14 +- ...act_input_output[neg.tz-0-(Left 2)--2].out | 14 +- ...act_input_output[neg.tz-0-(Right 0)-0].out | 14 +- ...ct_input_output[neg.tz-0-(Right 2)--2].out | 14 +- ...nput_output[none.tz-Some 10-Unit-None].out | 10 +- ..._output[not.tz-None-False-(Some True)].out | 12 +- ..._output[not.tz-None-True-(Some False)].out | 12 +- ...not_binary.tz-None-(Left -8)-(Some 7)].out | 16 +- ...not_binary.tz-None-(Left -9)-(Some 8)].out | 16 +- ...not_binary.tz-None-(Left 0)-(Some -1)].out | 16 +- ...not_binary.tz-None-(Left 7)-(Some -8)].out | 16 +- ...not_binary.tz-None-(Left 8)-(Some -9)].out | 16 +- ...ot_binary.tz-None-(Right 0)-(Some -1)].out | 16 +- ...ot_binary.tz-None-(Right 7)-(Some -8)].out | 16 +- ...ot_binary.tz-None-(Right 8)-(Some -9)].out | 16 +- ...-None-(Pair False False)-(Some False)].out | 20 +- ...tz-None-(Pair False True)-(Some True)].out | 20 +- ...tz-None-(Pair True False)-(Some True)].out | 20 +- ....tz-None-(Pair True True)-(Some True)].out | 20 +- ...or_binary.tz-None-(Pair 0 8)-(Some 8)].out | 14 +- ..._binary.tz-None-(Pair 14 1)-(Some 15)].out | 14 +- ..._binary.tz-None-(Pair 15 4)-(Some 15)].out | 14 +- ...r_binary.tz-None-(Pair 4 8)-(Some 12)].out | 14 +- ...or_binary.tz-None-(Pair 7 7)-(Some 7)].out | 14 +- ...or_binary.tz-None-(Pair 8 0)-(Some 8)].out | 14 +- ... (Pair 1 (Pair \"foobar\".368bdfd73a.out" | 282 +++---- ... (Pair 1 (Pair \"foobar\".735d9ae802.out" | 282 +++---- ...ir \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" | 342 ++++---- ...ir \"edpkuBknW28nW72KG6RoH.4e20b52378.out" | 342 ++++---- ...alse False)-(Some (Pair False False))].out | 10 +- ... False True)-(Some (Pair False True))].out | 10 +- ... True False)-(Some (Pair True False))].out | 10 +- ...ir True True)-(Some (Pair True True))].out | 10 +- ...ntract_input_output[pexec.tz-14-38-52].out | 28 +- ... 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out | 148 ++-- ...utput[ret_int.tz-None-Unit-(Some 300)].out | 12 +- ... ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 26 +- ...input_output[reverse.tz-{\"\"}-{}-{}].out" | 14 +- ... ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 76 +- ..._output[reverse_loop.tz-{\"\"}-{}-{}].out" | 28 +- ...tput[sapling_empty_state.tz-{}-Unit-0].out | 10 +- ...output[self_address.tz-Unit-Unit-Unit].out | 32 +- ..._default_entrypoint.tz-Unit-Unit-Unit].out | 34 +- ...entrypoint.tz-Unit-Left (Left 0)-Unit].out | 70 +- ...Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" | 28 +- ..."hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" | 28 +- ...lo\" 0)-\"world\"-(Pair \"world\" 0)].out" | 28 +- ...ir \"hello\" 0)-1-(Pair \"hello\" 1)].out" | 26 +- ... \"hello\" 500)-3-(Pair \"hello\" 3)].out" | 26 +- ..."hello\" 7)-100-(Pair \"hello\" 100)].out" | 26 +- ... ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 8 +- ...; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" | 8 +- ...tract_input_output[set_id.tz-{}-{}-{}].out | 8 +- ..._iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out | 30 +- ..._input_output[set_iter.tz-111-{ 1 }-1].out | 18 +- ...act_input_output[set_iter.tz-111-{}-0].out | 14 +- ..."World\" } None)-\"\"-(Pai.3d2044726e.out" | 36 +- ...)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" | 36 +- ... None)-\"Hi\"-(Pair {} (Some False))].out" | 36 +- ...ze.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out | 10 +- ...utput[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out | 10 +- ..._input_output[set_size.tz-111-{ 1 }-1].out | 10 +- ...act_input_output[set_size.tz-111-{}-0].out | 10 +- ...0776f726c6421-(Some 0xf345a.a07ae9dddf.out | 12 +- ...ts.tz-None-(Left (Pair 0 0))-(Some 0)].out | 18 +- ...ts.tz-None-(Left (Pair 0 1))-(Some 0)].out | 18 +- ...ts.tz-None-(Left (Pair 1 2))-(Some 4)].out | 18 +- ....tz-None-(Left (Pair 15 2))-(Some 60)].out | 18 +- ...s.tz-None-(Left (Pair 8 1))-(Some 16)].out | 18 +- ...s.tz-None-(Right (Pair 0 0))-(Some 0)].out | 18 +- ...s.tz-None-(Right (Pair 0 1))-(Some 0)].out | 18 +- ...s.tz-None-(Right (Pair 1 2))-(Some 0)].out | 18 +- ....tz-None-(Right (Pair 15 2))-(Some 3)].out | 18 +- ...s.tz-None-(Right (Pair 8 1))-(Some 4)].out | 18 +- ...ut_output[slice.tz-None-Pair 0 0-None].out | 18 +- ...tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" | 20 +- ...slice.tz-Some \"Foo\"-Pair 0 10-None].out" | 20 +- ...-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" | 20 +- ...z-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" | 20 +- ...[slice.tz-Some \"Foo\"-Pair 1 3-None].out" | 20 +- ...slice.tz-Some \"Foo\"-Pair 10 5-None].out" | 20 +- ...FooFooFooFooFooFooFooFooFo.c508d67bb0.out" | 20 +- ...put[slice_bytes.tz-None-Pair 0 1-None].out | 18 +- ...s.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out | 20 +- ...tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out | 20 +- ...z-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out | 20 +- ...z-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out | 20 +- ...-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out | 20 +- ..._bytes.tz-Some 0xaabbcc-Pair 1 3-None].out | 20 +- ...aabbccaabbccaabbccaabbccaab.df5895de85.out | 20 +- ...d.tz-None-\"Hello\"-(Some \"Hello\")].out" | 10 +- ..._id.tz-None-\"abcd\"-(Some \"abcd\")].out" | 10 +- ...r 100 -100)-\"1970-01-01T00:03:20Z\"].out" | 20 +- ...ir 100 100)-\"1970-01-01T00:00:00Z\"].out" | 20 +- ...Pair 100 200000000000000000.3db82d2c25.out | 20 +- ...00000 1000000)-(Some (Pair .b461aa042b.out | 46 +- ...10000 1010000)-(Some (Pair .1e8cf7679c.out | 46 +- ...t_output[uncomb.tz-0-(Pair 1 4 2)-142].out | 24 +- ...input_output[unpair.tz-Unit-Unit-Unit].out | 318 ++++---- ...dpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" | 20 +- ...Pair False False)-(Some (Left False))].out | 20 +- ... (Pair False True)-(Some (Left True))].out | 20 +- ... (Pair True False)-(Some (Left True))].out | 20 +- ... (Pair True True)-(Some (Left False))].out | 20 +- ...one-Right (Pair 0 0)-(Some (Right 0))].out | 20 +- ...one-Right (Pair 0 1)-(Some (Right 1))].out | 20 +- ...one-Right (Pair 1 0)-(Some (Right 1))].out | 20 +- ...one-Right (Pair 1 1)-(Some (Right 0))].out | 20 +- ...-Right (Pair 42 21)-(Some (Right 63))].out | 20 +- ...-Right (Pair 42 63)-(Some (Right 21))].out | 20 +- ...s::test_hash_consistency_michelson_cli.out | 24 +- ...pcodes.TestContractOpcodes::test_level.out | 10 +- ...bar\" 5 ; Elt \"foo\" 1 } .480b9afc63.out" | 84 +- ...\"foo\" 1 } 1)-10-(Pair { .811573b5a7.out" | 58 +- ...eeffect.tz-(Pair {} 0)-10-(Pair {} 0)].out | 32 +- ..._opcodes.TestContractOpcodes::test_now.out | 10 +- ...s.TestContractOpcodes::test_packunpack.out | 58 +- 375 files changed, 6209 insertions(+), 6209 deletions(-) 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 e620729d8982..70412b50f04e 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 (just consumed gas: 8.579, remaining gas: 1039991.421 units remaining) + - location: 13 (just consumed gas: 8.579) [ (Pair "hello" (Some 4) {}) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.411 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair (Some 4) {}) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039991.411 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair (Some 4) {}) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.401 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 4) {} ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.376 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" (Some 4) {} ] - - location: 17 (just consumed gas: 0.787, remaining gas: 1039990.589 units remaining) + - location: 17 (just consumed gas: 0.787) [ None { Elt "hello" 4 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.579 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair None { Elt "hello" 4 }) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.569 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair None { Elt "hello" 4 }) ] - - location: 21 (just consumed gas: 0.010, 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 f5e5302795b7..92edde5f43e9 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 (just consumed gas: 9.609, remaining gas: 1039990.391 units remaining) + - location: 13 (just consumed gas: 9.609) [ (Pair "hello" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039990.381 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039990.381 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.371 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039990.346 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" (Some 5) { Elt "hello" 4 } ] - - location: 17 (just consumed gas: 0.792, remaining gas: 1039989.554 units remaining) + - location: 17 (just consumed gas: 0.792) [ (Some 4) { Elt "hello" 5 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.544 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.534 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 21 (just consumed gas: 0.010, 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 921725ffbea2..19e2a7920dba 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 (just consumed gas: 9.579, remaining gas: 1039990.421 units remaining) + - location: 13 (just consumed gas: 9.579) [ (Pair "hi" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039990.411 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hi" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039990.411 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.401 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039990.376 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hi" (Some 5) { Elt "hello" 4 } ] - - location: 17 (just consumed gas: 0.759, remaining gas: 1039989.617 units remaining) + - location: 17 (just consumed gas: 0.759) [ None { Elt "hello" 4 ; Elt "hi" 5 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.607 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.597 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 21 (just consumed gas: 0.010, 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 ca582ec82eb9..0fa6ae4518c3 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 (just consumed gas: 10.367, remaining gas: 1039989.633 units remaining) + - location: 13 (just consumed gas: 10.367) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.623 units remaining) + - location: 13 (just consumed gas: 0.010) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039989.623 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.613 units remaining) + - location: 16 (just consumed gas: 0.010) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039989.588 units remaining) + - location: 14 (just consumed gas: 0.025) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (just consumed gas: 0.751, remaining gas: 1039988.837 units remaining) + - location: 17 (just consumed gas: 0.751) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.827 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.817 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (just consumed gas: 0.010, 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 7f8f1ffdbdce..1738f6e42a2e 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 (just consumed gas: 10.367, remaining gas: 1039989.633 units remaining) + - location: 13 (just consumed gas: 10.367) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.623 units remaining) + - location: 13 (just consumed gas: 0.010) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039989.623 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.613 units remaining) + - location: 16 (just consumed gas: 0.010) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039989.588 units remaining) + - location: 14 (just consumed gas: 0.025) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (just consumed gas: 0.751, remaining gas: 1039988.837 units remaining) + - location: 17 (just consumed gas: 0.751) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.827 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.817 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (just consumed gas: 0.010, 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 8912ab67c81b..00839cdb6aac 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 (just consumed gas: 9.509, remaining gas: 1039990.491 units remaining) + - location: 13 (just consumed gas: 9.509) [ (Pair "hello" None { Elt "hello" 4 }) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039990.481 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair None { Elt "hello" 4 }) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039990.481 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None { Elt "hello" 4 }) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.471 units remaining) + - location: 16 (just consumed gas: 0.010) [ None { Elt "hello" 4 } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039990.446 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" None { Elt "hello" 4 } ] - - location: 17 (just consumed gas: 0.792, remaining gas: 1039989.654 units remaining) + - location: 17 (just consumed gas: 0.792) [ (Some 4) {} ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.644 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 4) {}) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.634 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 4) {}) ] - - location: 21 (just consumed gas: 0.010, 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 ec42d069db77..22d9505efaa0 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 (just consumed gas: 8.479, remaining gas: 1039991.521 units remaining) + - location: 13 (just consumed gas: 8.479) [ (Pair "hello" None {}) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.511 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair None {}) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039991.511 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None {}) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.501 units remaining) + - location: 16 (just consumed gas: 0.010) [ None {} ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.476 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" None {} ] - - location: 17 (just consumed gas: 0.787, remaining gas: 1039990.689 units remaining) + - location: 17 (just consumed gas: 0.787) [ None {} ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.679 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair None {}) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.669 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair None {}) ] - - location: 21 (just consumed gas: 0.010, 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 d639c3c254a2..8fbc487cd3e9 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 (just consumed gas: 13.526, remaining gas: 1039986.474 units remaining) + - location: 12 (just consumed gas: 13.526) [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 12 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039986.454 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039986.444 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039986.434 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } ] - - location: 19 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.712, remaining gas: 1039985.687 units remaining) + - location: 20 (just consumed gas: 0.712) [ (Some "one") { Elt "1" "one" ; Elt "2" "two" } ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.677 units remaining) + - location: 21 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } (Some "one") ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039985.667 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039985.657 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] - - location: 25 (just consumed gas: 0.010, 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 1e07278c8607..15dcaf9c20d5 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 (just consumed gas: 12.564, remaining gas: 1039987.436 units remaining) + - location: 12 (just consumed gas: 12.564) [ (Pair "" { Elt "hello" "hi" } None) ] - - location: 12 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039987.416 units remaining) + - location: 13 (just consumed gas: 0.010) [ "" (Pair "" { Elt "hello" "hi" } None) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039987.416 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "" { Elt "hello" "hi" } None) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039987.406 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair { Elt "hello" "hi" } None) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.396 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "hello" "hi" } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.386 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039987.361 units remaining) + - location: 14 (just consumed gas: 0.025) [ "" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (just consumed gas: 0.700, remaining gas: 1039986.661 units remaining) + - location: 20 (just consumed gas: 0.700) [ None { Elt "hello" "hi" } ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039986.651 units remaining) + - location: 21 (just consumed gas: 0.010) [ { Elt "hello" "hi" } None ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039986.641 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair { Elt "hello" "hi" } None) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.631 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Pair { Elt "hello" "hi" } None) ] - - location: 25 (just consumed gas: 0.010, 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 c4d496c60740..0e764b9d31b3 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 (just consumed gas: 12.614, remaining gas: 1039987.386 units remaining) + - location: 12 (just consumed gas: 12.614) [ (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 12 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039987.366 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039987.366 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039987.356 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair { Elt "hello" "hi" } None) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.346 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "hello" "hi" } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.336 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039987.311 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (just consumed gas: 0.756, remaining gas: 1039986.555 units remaining) + - location: 20 (just consumed gas: 0.756) [ (Some "hi") { Elt "hello" "hi" } ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039986.545 units remaining) + - location: 21 (just consumed gas: 0.010) [ { Elt "hello" "hi" } (Some "hi") ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039986.535 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair { Elt "hello" "hi" } (Some "hi")) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.525 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Pair { Elt "hello" "hi" } (Some "hi")) ] - - location: 25 (just consumed gas: 0.010, 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 666f1a247457..cd6796bb26d4 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 (just consumed gas: 12.065, remaining gas: 1039987.935 units remaining) + - location: 15 (just consumed gas: 12.065) [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039987.925 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (just consumed gas: 0, remaining gas: 1039987.925 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.915 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.890 units remaining) + - location: 16 (just consumed gas: 0.025) [ {} { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (just consumed gas: 0, remaining gas: 1039987.890 units remaining) + - location: 19 (just consumed gas: 0) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039987.880 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039987.870 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 26 (just consumed gas: 0.010, 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 65194a6ba29c..2475305dd742 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 (just consumed gas: 12.515, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039987.475 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.465 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (just consumed gas: 0.025, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.727, remaining gas: 1039986.703 units remaining) + - location: 22 (just consumed gas: 0.727) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 19 (just consumed gas: 0.015, remaining gas: 1039986.688 units remaining) + - location: 19 (just consumed gas: 0.015) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.678 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039986.668 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 26 (just consumed gas: 0.010, 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 dfcd05e9b2e5..91824048cbc9 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 (just consumed gas: 12.515, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039987.475 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.465 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (just consumed gas: 0.025, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.727, remaining gas: 1039986.703 units remaining) + - location: 22 (just consumed gas: 0.727) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 19 (just consumed gas: 0.015, remaining gas: 1039986.688 units remaining) + - location: 19 (just consumed gas: 0.015) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.678 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039986.668 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 26 (just consumed gas: 0.010, 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 90ec835a29d6..60b2bdb23aef 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 (just consumed gas: 12.535, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039987.455 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.445 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (just consumed gas: 0.025, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.727, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 7fc7ba95bdf3..520d2e1dc07b 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 (just consumed gas: 12.371, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039987.619 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.609 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (just consumed gas: 0.025, 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 (just consumed gas: 0, remaining gas: 1039987.584 units remaining) + - location: 19 (just consumed gas: 0) [ (Pair "3" None) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.574 units remaining) + - location: 21 (just consumed gas: 0.010) [ "3" None { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (just consumed gas: 0.727, remaining gas: 1039986.847 units remaining) + - location: 22 (just consumed gas: 0.727) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (just consumed gas: 0.015, remaining gas: 1039986.832 units remaining) + - location: 19 (just consumed gas: 0.015) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.822 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039986.812 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 26 (just consumed gas: 0.010, 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 9c8228b0fdc2..0cdb0f0dc627 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 (just consumed gas: 12.371, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039987.619 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.609 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (just consumed gas: 0.025, 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 (just consumed gas: 0, remaining gas: 1039987.584 units remaining) + - location: 19 (just consumed gas: 0) [ (Pair "2" None) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.574 units remaining) + - location: 21 (just consumed gas: 0.010) [ "2" None { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (just consumed gas: 0.727, remaining gas: 1039986.847 units remaining) + - location: 22 (just consumed gas: 0.727) [ { Elt "1" "one" } Unit ] - - location: 19 (just consumed gas: 0.015, remaining gas: 1039986.832 units remaining) + - location: 19 (just consumed gas: 0.015) [ { Elt "1" "one" } Unit ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.822 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair { Elt "1" "one" } Unit) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039986.812 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} (Pair { Elt "1" "one" } Unit) ] - - location: 26 (just consumed gas: 0.010, 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 a0a7050def7c..cd4ed5cb8515 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 (just consumed gas: 11.246, remaining gas: 1039988.754 units remaining) + - location: 9 (just consumed gas: 11.246) [ (Pair (Left Unit) Unit) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039988.744 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Left Unit) ] - - location: 10 (just consumed gas: 0, remaining gas: 1039988.744 units remaining) + - location: 10 (just consumed gas: 0) [ Unit ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.734 units remaining) + - location: 12 (just consumed gas: 0.010) [ 922337203685477580700 Unit ] - - location: 15 (just consumed gas: 0.010, 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 d9177c8f5f3f..e7e976f15d5a 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 (just consumed gas: 11.246, remaining gas: 1039988.754 units remaining) + - location: 9 (just consumed gas: 11.246) [ (Pair (Right Unit) Unit) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039988.744 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Right Unit) ] - - location: 10 (just consumed gas: 0, remaining gas: 1039988.744 units remaining) + - location: 10 (just consumed gas: 0) [ Unit ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.734 units remaining) + - location: 21 (just consumed gas: 0.010) [ 10 Unit ] - - location: 24 (just consumed gas: 0.010, 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 a7d96b4636d6..2bc1026f9d07 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 1 257)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 1 257)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 1 257) ] - - location: 17 (just consumed gas: 0.010, 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 532a77d72294..8e58ffd1deeb 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 123 257)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 123 257)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 123 257) ] - - location: 17 (just consumed gas: 0.010, 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 aa9a0dfe964c..9b1f1920f0d2 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 1 257)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 1 257)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 1 257) ] - - location: 20 (just consumed gas: 0.010, 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 964ce3b942f6..339a289cdd2d 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 123 257)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 123 257)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 123 257) ] - - location: 20 (just consumed gas: 0.010, 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 01d73592a618..9e204047667c 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 (just consumed gas: 4.267, remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 500000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 500000 ] - - location: 11 (just consumed gas: 0.010, 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 ba8bed4794ed..1e68628dc57b 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 (just consumed gas: 4.267, remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0 ] - - location: 11 (just consumed gas: 0.010, 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 d30e4d930ab5..193b27b27559 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 (just consumed gas: 4.267, remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1000000000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 1000000000 ] - - location: 11 (just consumed gas: 0.010, 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 c8917f70d76b..f389a8fc9aec 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 (just consumed gas: 4.267, remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1000000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 1000000 ] - - location: 11 (just consumed gas: 0.010, 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 647691572b1e..a13b477ff323 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 (just consumed gas: 4.267, remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 1 ] - - location: 11 (just consumed gas: 0.010, 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 0e59b22e9477..fb59168cacea 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 (just consumed gas: 4.267, remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 5000000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 5000000 ] - - location: 11 (just consumed gas: 0.010, 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 1c37ec9f3892..de76e3c3a653 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 (just consumed gas: 4.267, remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 8000000000000000000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 8000000000000000000 ] - - location: 11 (just consumed gas: 0.010, 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 a139118566fe..1cf2965e2025 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 (just consumed gas: 63.036, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0, remaining gas: 1039936.954 units remaining) + - location: 110 (just consumed gas: 0) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 113 (just consumed gas: 0, remaining gas: 1039936.954 units remaining) + - location: 113 (just consumed gas: 0) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 113 (just consumed gas: 0.015, remaining gas: 1039936.939 units remaining) + - location: 113 (just consumed gas: 0.015) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 119 (just consumed gas: 0.010, remaining gas: 1039936.929 units remaining) + - location: 119 (just consumed gas: 0.010) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 110 (just consumed gas: 0.025, remaining gas: 1039936.904 units remaining) + - location: 110 (just consumed gas: 0.025) [ { Pair "3" "three" } { Elt "1" "one" } { Elt "2" "two" } ] - - location: 120 (just consumed gas: 0, remaining gas: 1039936.904 units remaining) + - location: 120 (just consumed gas: 0) [ (Pair "3" "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 122 (just consumed gas: 0.010, remaining gas: 1039936.894 units remaining) + - location: 122 (just consumed gas: 0.010) [ "3" "three" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 123 (just consumed gas: 0, remaining gas: 1039936.894 units remaining) + - location: 123 (just consumed gas: 0) [ "three" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 125 (just consumed gas: 0.010, remaining gas: 1039936.884 units remaining) + - location: 125 (just consumed gas: 0.010) [ (Some "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 123 (just consumed gas: 0.025, remaining gas: 1039936.859 units remaining) + - location: 123 (just consumed gas: 0.025) [ "3" (Some "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 126 (just consumed gas: 0.724, remaining gas: 1039936.135 units remaining) + - location: 126 (just consumed gas: 0.724) [ { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" } ] - - location: 120 (just consumed gas: 0.015, remaining gas: 1039936.120 units remaining) + - location: 120 (just consumed gas: 0.015) [ { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" } ] - - location: 127 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 30724e8dae3d..247b65cc3ad4 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 (just consumed gas: 62.128, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039937.862 units remaining) + - location: 44 (just consumed gas: 0) [ Unit (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 46 (just consumed gas: 0.010, remaining gas: 1039937.852 units remaining) + - location: 46 (just consumed gas: 0.010) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 48 (just consumed gas: 0, remaining gas: 1039937.852 units remaining) + - location: 48 (just consumed gas: 0) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 48 (just consumed gas: 0.015, remaining gas: 1039937.837 units remaining) + - location: 48 (just consumed gas: 0.015) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 54 (just consumed gas: 0.010, remaining gas: 1039937.827 units remaining) + - location: 54 (just consumed gas: 0.010) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039937.817 units remaining) + - location: 55 (just consumed gas: 0.010) [ { Elt "2" "two" } { Elt "1" "one" } ] - - location: 56 (just consumed gas: 0.010, remaining gas: 1039937.807 units remaining) + - location: 56 (just consumed gas: 0.010) [ (Pair { Elt "2" "two" } { Elt "1" "one" }) ] - - location: 57 (just consumed gas: 0.010, remaining gas: 1039937.797 units remaining) + - location: 57 (just consumed gas: 0.010) [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 44 (just consumed gas: 0.015, remaining gas: 1039937.782 units remaining) + - location: 44 (just consumed gas: 0.015) [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 151 (just consumed gas: 0.010, remaining gas: 1039937.772 units remaining) + - location: 151 (just consumed gas: 0.010) [ {} (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 153 (just consumed gas: 0.010, 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 50d4110d5bb1..048ca1f9c916 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 (just consumed gas: 65.416, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039934.554 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 60 (just consumed gas: 0.015, remaining gas: 1039934.539 units remaining) + - location: 60 (just consumed gas: 0.015) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 44 (just consumed gas: 0.015, remaining gas: 1039934.524 units remaining) + - location: 44 (just consumed gas: 0.015) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 151 (just consumed gas: 0.010, remaining gas: 1039934.514 units remaining) + - location: 151 (just consumed gas: 0.010) [ {} (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 153 (just consumed gas: 0.010, 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 323f89ba0595..d3fc8a4d39cb 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 (just consumed gas: 62.768, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, remaining gas: 1039937.222 units remaining) + - location: 60 (just consumed gas: 0) [ (Right Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 62 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039937.202 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Right Unit) ] - - location: 60 (just consumed gas: 0.015, remaining gas: 1039937.187 units remaining) + - location: 60 (just consumed gas: 0.015) [ (Right Unit) ] - - location: 44 (just consumed gas: 0.015, remaining gas: 1039937.172 units remaining) + - location: 44 (just consumed gas: 0.015) [ (Right Unit) ] - - location: 151 (just consumed gas: 0.010, remaining gas: 1039937.162 units remaining) + - location: 151 (just consumed gas: 0.010) [ {} (Right Unit) ] - - location: 153 (just consumed gas: 0.010, 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 4a454c7cc371..d51b9cbfb6fb 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 (just consumed gas: 62.772, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0, remaining gas: 1039937.218 units remaining) + - location: 65 (just consumed gas: 0) [ (Right { "1" }) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 108 (just consumed gas: 0, remaining gas: 1039937.218 units remaining) + - location: 108 (just consumed gas: 0) [ { "1" } (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 131 (just consumed gas: 0, remaining gas: 1039937.218 units remaining) + - location: 131 (just consumed gas: 0) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 134 (just consumed gas: 0, remaining gas: 1039937.218 units remaining) + - location: 134 (just consumed gas: 0) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 134 (just consumed gas: 0.015, remaining gas: 1039937.203 units remaining) + - location: 134 (just consumed gas: 0.015) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 140 (just consumed gas: 0.010, remaining gas: 1039937.193 units remaining) + - location: 140 (just consumed gas: 0.010) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 131 (just consumed gas: 0.025, remaining gas: 1039937.168 units remaining) + - location: 131 (just consumed gas: 0.025) [ { "1" } { Elt "1" "one" } { Elt "2" "two" } ] - - location: 141 (just consumed gas: 0, remaining gas: 1039937.168 units remaining) + - location: 141 (just consumed gas: 0) [ "1" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 143 (just consumed gas: 0, remaining gas: 1039937.168 units remaining) + - location: 143 (just consumed gas: 0) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 145 (just consumed gas: 0.010, remaining gas: 1039937.158 units remaining) + - location: 145 (just consumed gas: 0.010) [ None { Elt "1" "one" } { Elt "2" "two" } ] - - location: 143 (just consumed gas: 0.025, remaining gas: 1039937.133 units remaining) + - location: 143 (just consumed gas: 0.025) [ "1" None { Elt "1" "one" } { Elt "2" "two" } ] - - location: 147 (just consumed gas: 0.724, remaining gas: 1039936.409 units remaining) + - location: 147 (just consumed gas: 0.724) [ {} { Elt "2" "two" } ] - - location: 141 (just consumed gas: 0.015, remaining gas: 1039936.394 units remaining) + - location: 141 (just consumed gas: 0.015) [ {} { Elt "2" "two" } ] - - location: 148 (just consumed gas: 0.010, remaining gas: 1039936.384 units remaining) + - location: 148 (just consumed gas: 0.010) [ (Pair {} { Elt "2" "two" }) ] - - location: 149 (just consumed gas: 0.010, remaining gas: 1039936.374 units remaining) + - location: 149 (just consumed gas: 0.010) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 108 (just consumed gas: 0.015, remaining gas: 1039936.359 units remaining) + - location: 108 (just consumed gas: 0.015) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 65 (just consumed gas: 0.015, remaining gas: 1039936.344 units remaining) + - location: 65 (just consumed gas: 0.015) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 60 (just consumed gas: 0.015, remaining gas: 1039936.329 units remaining) + - location: 60 (just consumed gas: 0.015) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 44 (just consumed gas: 0.015, remaining gas: 1039936.314 units remaining) + - location: 44 (just consumed gas: 0.015) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 151 (just consumed gas: 0.010, remaining gas: 1039936.304 units remaining) + - location: 151 (just consumed gas: 0.010) [ {} (Left (Pair {} { Elt "2" "two" })) ] - - location: 153 (just consumed gas: 0.010, 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 0fca098be290..b3127eee2ece 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 (just consumed gas: 60.906, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, remaining gas: 1039939.084 units remaining) + - location: 60 (just consumed gas: 0) [ (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })) (Right Unit) ] - - location: 65 (just consumed gas: 0, remaining gas: 1039939.084 units remaining) + - location: 65 (just consumed gas: 0) [ (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) (Right Unit) ] - - location: 67 (just consumed gas: 0, remaining gas: 1039939.084 units remaining) + - location: 67 (just consumed gas: 0) [ (Right Unit) ] - - location: 70 (just consumed gas: 0, remaining gas: 1039939.084 units remaining) + - location: 70 (just consumed gas: 0) [ Unit ] - - location: 70 (just consumed gas: 0.015, remaining gas: 1039939.069 units remaining) + - location: 70 (just consumed gas: 0.015) [ Unit ] - - location: 76 (just consumed gas: 0.010, remaining gas: 1039939.059 units remaining) + - location: 76 (just consumed gas: 0.010) [ ] - - location: 67 (just consumed gas: 0.025, remaining gas: 1039939.034 units remaining) + - location: 67 (just consumed gas: 0.025) [ (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) ] - - location: 77 (just consumed gas: 0.010, remaining gas: 1039939.024 units remaining) + - location: 77 (just consumed gas: 0.010) [ { Pair "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 78 (just consumed gas: 0, remaining gas: 1039939.024 units remaining) + - location: 78 (just consumed gas: 0) [ { Pair "gaz" "baz" } ] - - location: 80 (just consumed gas: 0.300, remaining gas: 1039938.724 units remaining) + - location: 80 (just consumed gas: 0.300) [ {} { Pair "gaz" "baz" } ] - - location: 78 (just consumed gas: 0.025, remaining gas: 1039938.699 units remaining) + - location: 78 (just consumed gas: 0.025) [ { Pair "foo" "bar" } {} { Pair "gaz" "baz" } ] - - location: 83 (just consumed gas: 0, remaining gas: 1039938.699 units remaining) + - location: 83 (just consumed gas: 0) [ (Pair "foo" "bar") {} { Pair "gaz" "baz" } ] - - location: 85 (just consumed gas: 0.010, remaining gas: 1039938.689 units remaining) + - location: 85 (just consumed gas: 0.010) [ "foo" "bar" {} { Pair "gaz" "baz" } ] - - location: 86 (just consumed gas: 0, remaining gas: 1039938.689 units remaining) + - location: 86 (just consumed gas: 0) [ "bar" {} { Pair "gaz" "baz" } ] - - location: 88 (just consumed gas: 0.010, remaining gas: 1039938.679 units remaining) + - location: 88 (just consumed gas: 0.010) [ (Some "bar") {} { Pair "gaz" "baz" } ] - - location: 86 (just consumed gas: 0.025, remaining gas: 1039938.654 units remaining) + - location: 86 (just consumed gas: 0.025) [ "foo" (Some "bar") {} { Pair "gaz" "baz" } ] - - location: 89 (just consumed gas: 0.744, remaining gas: 1039937.910 units remaining) + - location: 89 (just consumed gas: 0.744) [ { Elt "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 83 (just consumed gas: 0.015, remaining gas: 1039937.895 units remaining) + - location: 83 (just consumed gas: 0.015) [ { Elt "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 90 (just consumed gas: 0.010, remaining gas: 1039937.885 units remaining) + - location: 90 (just consumed gas: 0.010) [ { Pair "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 91 (just consumed gas: 0, remaining gas: 1039937.885 units remaining) + - location: 91 (just consumed gas: 0) [ { Elt "foo" "bar" } ] - - location: 93 (just consumed gas: 0.300, remaining gas: 1039937.585 units remaining) + - location: 93 (just consumed gas: 0.300) [ {} { Elt "foo" "bar" } ] - - location: 91 (just consumed gas: 0.025, remaining gas: 1039937.560 units remaining) + - location: 91 (just consumed gas: 0.025) [ { Pair "gaz" "baz" } {} { Elt "foo" "bar" } ] - - location: 96 (just consumed gas: 0, remaining gas: 1039937.560 units remaining) + - location: 96 (just consumed gas: 0) [ (Pair "gaz" "baz") {} { Elt "foo" "bar" } ] - - location: 98 (just consumed gas: 0.010, remaining gas: 1039937.550 units remaining) + - location: 98 (just consumed gas: 0.010) [ "gaz" "baz" {} { Elt "foo" "bar" } ] - - location: 99 (just consumed gas: 0, remaining gas: 1039937.550 units remaining) + - location: 99 (just consumed gas: 0) [ "baz" {} { Elt "foo" "bar" } ] - - location: 101 (just consumed gas: 0.010, remaining gas: 1039937.540 units remaining) + - location: 101 (just consumed gas: 0.010) [ (Some "baz") {} { Elt "foo" "bar" } ] - - location: 99 (just consumed gas: 0.025, remaining gas: 1039937.515 units remaining) + - location: 99 (just consumed gas: 0.025) [ "gaz" (Some "baz") {} { Elt "foo" "bar" } ] - - location: 102 (just consumed gas: 0.744, remaining gas: 1039936.771 units remaining) + - location: 102 (just consumed gas: 0.744) [ { Elt "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 96 (just consumed gas: 0.015, remaining gas: 1039936.756 units remaining) + - location: 96 (just consumed gas: 0.015) [ { Elt "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 103 (just consumed gas: 0.010, remaining gas: 1039936.746 units remaining) + - location: 103 (just consumed gas: 0.010) [ { Elt "foo" "bar" } { Elt "gaz" "baz" } ] - - location: 104 (just consumed gas: 0.010, remaining gas: 1039936.736 units remaining) + - location: 104 (just consumed gas: 0.010) [ (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" }) ] - - location: 105 (just consumed gas: 0.010, remaining gas: 1039936.726 units remaining) + - location: 105 (just consumed gas: 0.010) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 65 (just consumed gas: 0.015, remaining gas: 1039936.711 units remaining) + - location: 65 (just consumed gas: 0.015) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 60 (just consumed gas: 0.015, remaining gas: 1039936.696 units remaining) + - location: 60 (just consumed gas: 0.015) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 44 (just consumed gas: 0.015, remaining gas: 1039936.681 units remaining) + - location: 44 (just consumed gas: 0.015) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 151 (just consumed gas: 0.010, remaining gas: 1039936.671 units remaining) + - location: 151 (just consumed gas: 0.010) [ {} (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 153 (just consumed gas: 0.010, 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 c5de54906763..464947516c71 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 (just consumed gas: 346.280, remaining gas: 1039653.720 units remaining) + - location: 9 (just consumed gas: 346.280) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039653.710 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 10 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039653.700 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039653.690 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 14 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039653.670 units remaining) + - location: 15 (just consumed gas: 0.010) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 16 (just consumed gas: 0, remaining gas: 1039653.670 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039653.660 units remaining) + - location: 18 (just consumed gas: 0.010) [ "hello" (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 19 (just consumed gas: 0.266, remaining gas: 1039653.394 units remaining) + - location: 19 (just consumed gas: 0.266) [ 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039653.369 units remaining) + - location: 16 (just consumed gas: 0.025) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 11 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, remaining gas: 1039653.334 units remaining) + - location: 20 (just consumed gas: 0.010) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 21 (just consumed gas: 65.812, remaining gas: 1039587.522 units remaining) + - location: 21 (just consumed gas: 65.812) [ True (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 22 (just consumed gas: 0, remaining gas: 1039587.522 units remaining) + - location: 22 (just consumed gas: 0) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 22 (just consumed gas: 0.015, remaining gas: 1039587.507 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039587.497 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039587.487 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 31 (just consumed gas: 0.010, 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 (just consumed gas: 346.270, remaining gas: 1039653.730 units remaining) + - location: 9 (just consumed gas: 346.270) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039653.720 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 10 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039653.710 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039653.700 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 14 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039653.680 units remaining) + - location: 15 (just consumed gas: 0.010) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 16 (just consumed gas: 0, remaining gas: 1039653.680 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039653.670 units remaining) + - location: 18 (just consumed gas: 0.010) [ "abcd" (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 19 (just consumed gas: 0.256, remaining gas: 1039653.414 units remaining) + - location: 19 (just consumed gas: 0.256) [ 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039653.389 units remaining) + - location: 16 (just consumed gas: 0.025) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 11 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, remaining gas: 1039653.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 21 (just consumed gas: 65.811, remaining gas: 1039587.543 units remaining) + - location: 21 (just consumed gas: 65.811) [ False (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 22 (just consumed gas: 0, remaining gas: 1039587.543 units remaining) + - location: 22 (just consumed gas: 0) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 26 (just consumed gas: 0.010, 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 ade37c675453..95238718affd 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 (just consumed gas: 10.211, remaining gas: 1039989.789 units remaining) + - location: 7 (just consumed gas: 10.211) [ (Pair 0 Unit) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.779 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.769 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0 0 ] - - location: 9 (just consumed gas: 0.025, remaining gas: 1039989.744 units remaining) + - location: 9 (just consumed gas: 0.025) [ 0 0 ] - - location: 10 (just consumed gas: 0.020, remaining gas: 1039989.724 units remaining) + - location: 10 (just consumed gas: 0.020) [ 0 0 ] - - location: 11 (just consumed gas: 0.035, remaining gas: 1039989.689 units remaining) + - location: 11 (just consumed gas: 0.035) [ 0 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.679 units remaining) + - location: 13 (just consumed gas: 0.010) [ True ] - - location: 14 (just consumed gas: 0, remaining gas: 1039989.679 units remaining) + - location: 14 (just consumed gas: 0) [ ] - - location: 14 (just consumed gas: 0.015, remaining gas: 1039989.664 units remaining) + - location: 14 (just consumed gas: 0.015) [ ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.654 units remaining) + - location: 20 (just consumed gas: 0.010) [ Unit ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.644 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} Unit ] - - location: 23 (just consumed gas: 0.010, 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 d4ece7e891cc..62ee61f538fd 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 (just consumed gas: 10.211, remaining gas: 1039989.789 units remaining) + - location: 7 (just consumed gas: 10.211) [ (Pair 12039123919239192312931 Unit) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.779 units remaining) + - location: 7 (just consumed gas: 0.010) [ 12039123919239192312931 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.769 units remaining) + - location: 8 (just consumed gas: 0.010) [ 12039123919239192312931 12039123919239192312931 ] - - location: 9 (just consumed gas: 0.030, remaining gas: 1039989.739 units remaining) + - location: 9 (just consumed gas: 0.030) [ -12039123919239192312931 12039123919239192312931 ] - - location: 10 (just consumed gas: 0.025, remaining gas: 1039989.714 units remaining) + - location: 10 (just consumed gas: 0.025) [ 12039123919239192312931 12039123919239192312931 ] - - location: 11 (just consumed gas: 0.035, remaining gas: 1039989.679 units remaining) + - location: 11 (just consumed gas: 0.035) [ 0 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.669 units remaining) + - location: 13 (just consumed gas: 0.010) [ True ] - - location: 14 (just consumed gas: 0, remaining gas: 1039989.669 units remaining) + - location: 14 (just consumed gas: 0) [ ] - - location: 14 (just consumed gas: 0.015, remaining gas: 1039989.654 units remaining) + - location: 14 (just consumed gas: 0.015) [ ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.644 units remaining) + - location: 20 (just consumed gas: 0.010) [ Unit ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.634 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} Unit ] - - location: 23 (just consumed gas: 0.010, 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 0fb7e7609199..ac2db4d4e4df 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 (just consumed gas: 10.211, remaining gas: 1039989.789 units remaining) + - location: 7 (just consumed gas: 10.211) [ (Pair 948 Unit) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.779 units remaining) + - location: 7 (just consumed gas: 0.010) [ 948 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.769 units remaining) + - location: 8 (just consumed gas: 0.010) [ 948 948 ] - - location: 9 (just consumed gas: 0.026, remaining gas: 1039989.743 units remaining) + - location: 9 (just consumed gas: 0.026) [ -948 948 ] - - location: 10 (just consumed gas: 0.021, remaining gas: 1039989.722 units remaining) + - location: 10 (just consumed gas: 0.021) [ 948 948 ] - - location: 11 (just consumed gas: 0.035, remaining gas: 1039989.687 units remaining) + - location: 11 (just consumed gas: 0.035) [ 0 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.677 units remaining) + - location: 13 (just consumed gas: 0.010) [ True ] - - location: 14 (just consumed gas: 0, remaining gas: 1039989.677 units remaining) + - location: 14 (just consumed gas: 0) [ ] - - location: 14 (just consumed gas: 0.015, remaining gas: 1039989.662 units remaining) + - location: 14 (just consumed gas: 0.015) [ ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.652 units remaining) + - location: 20 (just consumed gas: 0.010) [ Unit ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.642 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} Unit ] - - location: 23 (just consumed gas: 0.010, 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 52d689f5c568..a21a88f70d68 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 (just consumed gas: 68.449, remaining gas: 1039931.551 units remaining) + - location: 7 (just consumed gas: 68.449) [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039931.541 units remaining) + - location: 7 (just consumed gas: 0.010) [ Unit ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039931.531 units remaining) + - location: 8 (just consumed gas: 0.010) [ 2 Unit ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039931.521 units remaining) + - location: 11 (just consumed gas: 0.010) [ 2 2 Unit ] - - location: 14 (just consumed gas: 0.035, remaining gas: 1039931.486 units remaining) + - location: 14 (just consumed gas: 0.035) [ 4 Unit ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039931.476 units remaining) + - location: 15 (just consumed gas: 0.010) [ 4 4 Unit ] - - location: 20 (just consumed gas: 0.035, remaining gas: 1039931.441 units remaining) + - location: 20 (just consumed gas: 0.035) [ 0 Unit ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039931.431 units remaining) + - location: 21 (just consumed gas: 0.010) [ True Unit ] - - location: 22 (just consumed gas: 0, remaining gas: 1039931.431 units remaining) + - location: 22 (just consumed gas: 0) [ Unit ] - - location: 22 (just consumed gas: 0.015, remaining gas: 1039931.416 units remaining) + - location: 22 (just consumed gas: 0.015) [ Unit ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039931.406 units remaining) + - location: 28 (just consumed gas: 0.010) [ 2 Unit ] - - location: 31 (just consumed gas: 0.010, remaining gas: 1039931.396 units remaining) + - location: 31 (just consumed gas: 0.010) [ 2 2 Unit ] - - location: 34 (just consumed gas: 0.035, remaining gas: 1039931.361 units remaining) + - location: 34 (just consumed gas: 0.035) [ 4 Unit ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039931.351 units remaining) + - location: 35 (just consumed gas: 0.010) [ 4 4 Unit ] - - location: 40 (just consumed gas: 0.035, remaining gas: 1039931.316 units remaining) + - location: 40 (just consumed gas: 0.035) [ 0 Unit ] - - location: 41 (just consumed gas: 0.010, remaining gas: 1039931.306 units remaining) + - location: 41 (just consumed gas: 0.010) [ True Unit ] - - location: 42 (just consumed gas: 0, remaining gas: 1039931.306 units remaining) + - location: 42 (just consumed gas: 0) [ Unit ] - - location: 42 (just consumed gas: 0.015, remaining gas: 1039931.291 units remaining) + - location: 42 (just consumed gas: 0.015) [ Unit ] - - location: 48 (just consumed gas: 0.010, remaining gas: 1039931.281 units remaining) + - location: 48 (just consumed gas: 0.010) [ 2 Unit ] - - location: 51 (just consumed gas: 0.010, remaining gas: 1039931.271 units remaining) + - location: 51 (just consumed gas: 0.010) [ 2 2 Unit ] - - location: 54 (just consumed gas: 0.035, remaining gas: 1039931.236 units remaining) + - location: 54 (just consumed gas: 0.035) [ 4 Unit ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039931.226 units remaining) + - location: 55 (just consumed gas: 0.010) [ 4 4 Unit ] - - location: 60 (just consumed gas: 0.035, remaining gas: 1039931.191 units remaining) + - location: 60 (just consumed gas: 0.035) [ 0 Unit ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039931.181 units remaining) + - location: 61 (just consumed gas: 0.010) [ True Unit ] - - location: 62 (just consumed gas: 0, remaining gas: 1039931.181 units remaining) + - location: 62 (just consumed gas: 0) [ Unit ] - - location: 62 (just consumed gas: 0.015, remaining gas: 1039931.166 units remaining) + - location: 62 (just consumed gas: 0.015) [ Unit ] - - location: 68 (just consumed gas: 0.010, remaining gas: 1039931.156 units remaining) + - location: 68 (just consumed gas: 0.010) [ 2 Unit ] - - location: 71 (just consumed gas: 0.010, remaining gas: 1039931.146 units remaining) + - location: 71 (just consumed gas: 0.010) [ 2 2 Unit ] - - location: 74 (just consumed gas: 0.035, remaining gas: 1039931.111 units remaining) + - location: 74 (just consumed gas: 0.035) [ 4 Unit ] - - location: 75 (just consumed gas: 0.010, remaining gas: 1039931.101 units remaining) + - location: 75 (just consumed gas: 0.010) [ 4 4 Unit ] - - location: 80 (just consumed gas: 0.035, remaining gas: 1039931.066 units remaining) + - location: 80 (just consumed gas: 0.035) [ 0 Unit ] - - location: 81 (just consumed gas: 0.010, remaining gas: 1039931.056 units remaining) + - location: 81 (just consumed gas: 0.010) [ True Unit ] - - location: 82 (just consumed gas: 0, remaining gas: 1039931.056 units remaining) + - location: 82 (just consumed gas: 0) [ Unit ] - - location: 82 (just consumed gas: 0.015, remaining gas: 1039931.041 units remaining) + - location: 82 (just consumed gas: 0.015) [ Unit ] - - location: 88 (just consumed gas: 0.010, remaining gas: 1039931.031 units remaining) + - location: 88 (just consumed gas: 0.010) [ 2 Unit ] - - location: 91 (just consumed gas: 0.010, remaining gas: 1039931.021 units remaining) + - location: 91 (just consumed gas: 0.010) [ 2 2 Unit ] - - location: 94 (just consumed gas: 0.035, remaining gas: 1039930.986 units remaining) + - location: 94 (just consumed gas: 0.035) [ 4 Unit ] - - location: 95 (just consumed gas: 0.010, remaining gas: 1039930.976 units remaining) + - location: 95 (just consumed gas: 0.010) [ 4 4 Unit ] - - location: 100 (just consumed gas: 0.035, remaining gas: 1039930.941 units remaining) + - location: 100 (just consumed gas: 0.035) [ 0 Unit ] - - location: 101 (just consumed gas: 0.010, remaining gas: 1039930.931 units remaining) + - location: 101 (just consumed gas: 0.010) [ True Unit ] - - location: 102 (just consumed gas: 0, remaining gas: 1039930.931 units remaining) + - location: 102 (just consumed gas: 0) [ Unit ] - - location: 102 (just consumed gas: 0.015, remaining gas: 1039930.916 units remaining) + - location: 102 (just consumed gas: 0.015) [ Unit ] - - location: 108 (just consumed gas: 0.010, remaining gas: 1039930.906 units remaining) + - location: 108 (just consumed gas: 0.010) [ 60 Unit ] - - location: 111 (just consumed gas: 0.010, remaining gas: 1039930.896 units remaining) + - location: 111 (just consumed gas: 0.010) [ "2019-09-09T12:08:37Z" 60 Unit ] - - location: 114 (just consumed gas: 0.037, remaining gas: 1039930.859 units remaining) + - location: 114 (just consumed gas: 0.037) [ "2019-09-09T12:09:37Z" Unit ] - - location: 115 (just consumed gas: 0.010, 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 (just consumed gas: 0.035, remaining gas: 1039930.814 units remaining) + - location: 120 (just consumed gas: 0.035) [ 0 Unit ] - - location: 121 (just consumed gas: 0.010, remaining gas: 1039930.804 units remaining) + - location: 121 (just consumed gas: 0.010) [ True Unit ] - - location: 122 (just consumed gas: 0, remaining gas: 1039930.804 units remaining) + - location: 122 (just consumed gas: 0) [ Unit ] - - location: 122 (just consumed gas: 0.015, remaining gas: 1039930.789 units remaining) + - location: 122 (just consumed gas: 0.015) [ Unit ] - - location: 128 (just consumed gas: 0.010, remaining gas: 1039930.779 units remaining) + - location: 128 (just consumed gas: 0.010) [ "2019-09-09T12:08:37Z" Unit ] - - location: 131 (just consumed gas: 0.010, remaining gas: 1039930.769 units remaining) + - location: 131 (just consumed gas: 0.010) [ 60 "2019-09-09T12:08:37Z" Unit ] - - location: 134 (just consumed gas: 0.037, remaining gas: 1039930.732 units remaining) + - location: 134 (just consumed gas: 0.037) [ "2019-09-09T12:09:37Z" Unit ] - - location: 135 (just consumed gas: 0.010, 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 (just consumed gas: 0.035, remaining gas: 1039930.687 units remaining) + - location: 140 (just consumed gas: 0.035) [ 0 Unit ] - - location: 141 (just consumed gas: 0.010, remaining gas: 1039930.677 units remaining) + - location: 141 (just consumed gas: 0.010) [ True Unit ] - - location: 142 (just consumed gas: 0, remaining gas: 1039930.677 units remaining) + - location: 142 (just consumed gas: 0) [ Unit ] - - location: 142 (just consumed gas: 0.015, remaining gas: 1039930.662 units remaining) + - location: 142 (just consumed gas: 0.015) [ Unit ] - - location: 148 (just consumed gas: 0.010, remaining gas: 1039930.652 units remaining) + - location: 148 (just consumed gas: 0.010) [ 1000 Unit ] - - location: 151 (just consumed gas: 0.010, remaining gas: 1039930.642 units remaining) + - location: 151 (just consumed gas: 0.010) [ 1000 1000 Unit ] - - location: 154 (just consumed gas: 0.020, remaining gas: 1039930.622 units remaining) + - location: 154 (just consumed gas: 0.020) [ 2000 Unit ] - - location: 155 (just consumed gas: 0.010, remaining gas: 1039930.612 units remaining) + - location: 155 (just consumed gas: 0.010) [ 2000 2000 Unit ] - - location: 160 (just consumed gas: 0.035, remaining gas: 1039930.577 units remaining) + - location: 160 (just consumed gas: 0.035) [ 0 Unit ] - - location: 161 (just consumed gas: 0.010, remaining gas: 1039930.567 units remaining) + - location: 161 (just consumed gas: 0.010) [ True Unit ] - - location: 162 (just consumed gas: 0, remaining gas: 1039930.567 units remaining) + - location: 162 (just consumed gas: 0) [ Unit ] - - location: 162 (just consumed gas: 0.015, remaining gas: 1039930.552 units remaining) + - location: 162 (just consumed gas: 0.015) [ Unit ] - - location: 168 (just consumed gas: 0.010, remaining gas: 1039930.542 units remaining) + - location: 168 (just consumed gas: 0.010) [ {} Unit ] - - location: 170 (just consumed gas: 0.010, 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 5ac099df841a..8954a5b7287d 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 (just consumed gas: 6.381, remaining gas: 1039993.619 units remaining) + - location: 10 (just consumed gas: 6.381) [ (Pair (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.609 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.599 units remaining) + - location: 11 (just consumed gas: 0.010) [ 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.030, remaining gas: 1039993.569 units remaining) + - location: 12 (just consumed gas: 0.030) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.559 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.549 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (just consumed gas: 0.010, 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 4caee87aa81a..4675a4e119f8 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 (just consumed gas: 6.381, remaining gas: 1039993.619 units remaining) + - location: 10 (just consumed gas: 6.381) [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.609 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.599 units remaining) + - location: 11 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.030, remaining gas: 1039993.569 units remaining) + - location: 12 (just consumed gas: 0.030) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.559 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.549 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (just consumed gas: 0.010, 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 6bc753451e54..0afb2615edfa 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 (just consumed gas: 6.381, remaining gas: 1039993.619 units remaining) + - location: 10 (just consumed gas: 6.381) [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.609 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.599 units remaining) + - location: 11 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.030, remaining gas: 1039993.569 units remaining) + - location: 12 (just consumed gas: 0.030) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.559 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.549 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (just consumed gas: 0.010, 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 bfb170dff27d..9bd6a5ada09a 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 (just consumed gas: 6.381, remaining gas: 1039993.619 units remaining) + - location: 10 (just consumed gas: 6.381) [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.609 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.599 units remaining) + - location: 11 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.030, remaining gas: 1039993.569 units remaining) + - location: 12 (just consumed gas: 0.030) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.559 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.549 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (just consumed gas: 0.010, 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 1a37b9b83db0..21c1fc5b214a 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 (just consumed gas: 8.232, remaining gas: 1039991.768 units remaining) + - location: 10 (just consumed gas: 8.232) [ (Pair (Pair -100 "1970-01-01T00:01:40Z") None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.758 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 11 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039991.738 units remaining) + - location: 12 (just consumed gas: 0.010) [ -100 (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 13 (just consumed gas: 0, remaining gas: 1039991.738 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.728 units remaining) + - location: 15 (just consumed gas: 0.010) [ "1970-01-01T00:01:40Z" ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039991.703 units remaining) + - location: 13 (just consumed gas: 0.025) [ -100 "1970-01-01T00:01:40Z" ] - - location: 16 (just consumed gas: 0.035, remaining gas: 1039991.668 units remaining) + - location: 16 (just consumed gas: 0.035) [ "1970-01-01T00:00:00Z" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.658 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.648 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (just consumed gas: 0.010, 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 1394f6a34e12..742a94ce6552 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 (just consumed gas: 8.340, remaining gas: 1039991.660 units remaining) + - location: 10 (just consumed gas: 8.340) [ (Pair (Pair 0 "1970-01-01T00:00:00Z") None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.650 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 11 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039991.630 units remaining) + - location: 12 (just consumed gas: 0.010) [ 0 (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 13 (just consumed gas: 0, remaining gas: 1039991.630 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.620 units remaining) + - location: 15 (just consumed gas: 0.010) [ "1970-01-01T00:00:00Z" ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039991.595 units remaining) + - location: 13 (just consumed gas: 0.025) [ 0 "1970-01-01T00:00:00Z" ] - - location: 16 (just consumed gas: 0.035, remaining gas: 1039991.560 units remaining) + - location: 16 (just consumed gas: 0.035) [ "1970-01-01T00:00:00Z" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.550 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.540 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (just consumed gas: 0.010, 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 26bb226a4152..1af6f59929d8 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 (just consumed gas: 8.232, remaining gas: 1039991.768 units remaining) + - location: 10 (just consumed gas: 8.232) [ (Pair (Pair 100 "1970-01-01T00:01:40Z") None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.758 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 11 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039991.738 units remaining) + - location: 12 (just consumed gas: 0.010) [ 100 (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 13 (just consumed gas: 0, remaining gas: 1039991.738 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.728 units remaining) + - location: 15 (just consumed gas: 0.010) [ "1970-01-01T00:01:40Z" ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039991.703 units remaining) + - location: 13 (just consumed gas: 0.025) [ 100 "1970-01-01T00:01:40Z" ] - - location: 16 (just consumed gas: 0.035, remaining gas: 1039991.668 units remaining) + - location: 16 (just consumed gas: 0.035) [ "1970-01-01T00:03:20Z" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.658 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Some "1970-01-01T00:03:20Z") ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.648 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Some "1970-01-01T00:03:20Z") ] - - location: 20 (just consumed gas: 0.010, 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 ebdcb4200a3f..41d3b0068a97 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 (just consumed gas: 8.340, remaining gas: 1039991.660 units remaining) + - location: 10 (just consumed gas: 8.340) [ (Pair (Pair "1970-01-01T00:00:00Z" 0) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.650 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 11 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039991.630 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.620 units remaining) + - location: 15 (just consumed gas: 0.010) [ 0 ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039991.595 units remaining) + - location: 13 (just consumed gas: 0.025) [ "1970-01-01T00:00:00Z" 0 ] - - location: 16 (just consumed gas: 0.035, remaining gas: 1039991.560 units remaining) + - location: 16 (just consumed gas: 0.035) [ "1970-01-01T00:00:00Z" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.550 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.540 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (just consumed gas: 0.010, 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 1342b856cc6a..8b98f73afed8 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 (just consumed gas: 8.232, remaining gas: 1039991.768 units remaining) + - location: 10 (just consumed gas: 8.232) [ (Pair (Pair "1970-01-01T00:01:40Z" -100) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.758 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 11 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039991.738 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.728 units remaining) + - location: 15 (just consumed gas: 0.010) [ -100 ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039991.703 units remaining) + - location: 13 (just consumed gas: 0.025) [ "1970-01-01T00:01:40Z" -100 ] - - location: 16 (just consumed gas: 0.035, remaining gas: 1039991.668 units remaining) + - location: 16 (just consumed gas: 0.035) [ "1970-01-01T00:00:00Z" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.658 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.648 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (just consumed gas: 0.010, 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 4cd77b9b6086..1ee2dabba484 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 (just consumed gas: 8.232, remaining gas: 1039991.768 units remaining) + - location: 10 (just consumed gas: 8.232) [ (Pair (Pair "1970-01-01T00:01:40Z" 100) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.758 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 11 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039991.738 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.728 units remaining) + - location: 15 (just consumed gas: 0.010) [ 100 ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039991.703 units remaining) + - location: 13 (just consumed gas: 0.025) [ "1970-01-01T00:01:40Z" 100 ] - - location: 16 (just consumed gas: 0.035, remaining gas: 1039991.668 units remaining) + - location: 16 (just consumed gas: 0.035) [ "1970-01-01T00:03:20Z" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.658 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Some "1970-01-01T00:03:20Z") ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.648 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Some "1970-01-01T00:03:20Z") ] - - location: 20 (just consumed gas: 0.010, 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 0f7d656eccb2..d78696c7a080 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 (just consumed gas: 8.761, remaining gas: 1039991.239 units remaining) + - location: 9 (just consumed gas: 8.761) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" None) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039991.229 units remaining) + - location: 9 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.219 units remaining) + - location: 10 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.209 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039991.199 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 14 (just consumed gas: 0.010, 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 b5a3936c123d..f405a01164b4 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 (just consumed gas: 7.572, remaining gas: 1039992.428 units remaining) + - location: 10 (just consumed gas: 7.572) [ (Pair (Pair False False) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039992.418 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair False False) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.408 units remaining) + - location: 11 (just consumed gas: 0.010) [ False False ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.398 units remaining) + - location: 12 (just consumed gas: 0.010) [ False ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.388 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some False) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.378 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.368 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.358 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 18 (just consumed gas: 0.010, 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 a6fa1f750ef7..46db7c3ad300 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 (just consumed gas: 7.572, remaining gas: 1039992.428 units remaining) + - location: 10 (just consumed gas: 7.572) [ (Pair (Pair False True) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039992.418 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair False True) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.408 units remaining) + - location: 11 (just consumed gas: 0.010) [ False True ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.398 units remaining) + - location: 12 (just consumed gas: 0.010) [ False ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.388 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some False) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.378 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.368 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.358 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 18 (just consumed gas: 0.010, 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 cbc08af9e52f..d70c055468e8 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 (just consumed gas: 7.572, remaining gas: 1039992.428 units remaining) + - location: 10 (just consumed gas: 7.572) [ (Pair (Pair True False) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039992.418 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair True False) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.408 units remaining) + - location: 11 (just consumed gas: 0.010) [ True False ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.398 units remaining) + - location: 12 (just consumed gas: 0.010) [ False ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.388 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some False) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.378 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.368 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.358 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 18 (just consumed gas: 0.010, 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 156a9a6961ea..7a48277dce3b 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 (just consumed gas: 7.572, remaining gas: 1039992.428 units remaining) + - location: 10 (just consumed gas: 7.572) [ (Pair (Pair True True) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039992.418 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair True True) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.408 units remaining) + - location: 11 (just consumed gas: 0.010) [ True True ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.398 units remaining) + - location: 12 (just consumed gas: 0.010) [ True ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.388 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some True) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.378 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.368 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair {} (Some True)) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.358 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 18 (just consumed gas: 0.010, 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 d1afb996d586..032abe0ace5f 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 (just consumed gas: 36.249, remaining gas: 1039963.751 units remaining) + - location: 7 (just consumed gas: 36.249) [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039963.741 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039963.731 units remaining) + - location: 8 (just consumed gas: 0.010) [ 5 ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039963.721 units remaining) + - location: 11 (just consumed gas: 0.010) [ 6 5 ] - - location: 14 (just consumed gas: 0.035, remaining gas: 1039963.686 units remaining) + - location: 14 (just consumed gas: 0.035) [ 4 ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039963.676 units remaining) + - location: 15 (just consumed gas: 0.010) [ 4 4 ] - - location: 20 (just consumed gas: 0.035, remaining gas: 1039963.641 units remaining) + - location: 20 (just consumed gas: 0.035) [ 0 ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039963.631 units remaining) + - location: 21 (just consumed gas: 0.010) [ True ] - - location: 22 (just consumed gas: 0, remaining gas: 1039963.631 units remaining) + - location: 22 (just consumed gas: 0) [ ] - - location: 22 (just consumed gas: 0.015, remaining gas: 1039963.616 units remaining) + - location: 22 (just consumed gas: 0.015) [ ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039963.606 units remaining) + - location: 28 (just consumed gas: 0.010) [ 6 ] - - location: 31 (just consumed gas: 0.010, remaining gas: 1039963.596 units remaining) + - location: 31 (just consumed gas: 0.010) [ 5 6 ] - - location: 34 (just consumed gas: 0.035, remaining gas: 1039963.561 units remaining) + - location: 34 (just consumed gas: 0.035) [ 4 ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039963.551 units remaining) + - location: 35 (just consumed gas: 0.010) [ 4 4 ] - - location: 40 (just consumed gas: 0.035, remaining gas: 1039963.516 units remaining) + - location: 40 (just consumed gas: 0.035) [ 0 ] - - location: 41 (just consumed gas: 0.010, remaining gas: 1039963.506 units remaining) + - location: 41 (just consumed gas: 0.010) [ True ] - - location: 42 (just consumed gas: 0, remaining gas: 1039963.506 units remaining) + - location: 42 (just consumed gas: 0) [ ] - - location: 42 (just consumed gas: 0.015, remaining gas: 1039963.491 units remaining) + - location: 42 (just consumed gas: 0.015) [ ] - - location: 48 (just consumed gas: 0.010, remaining gas: 1039963.481 units remaining) + - location: 48 (just consumed gas: 0.010) [ 12 ] - - location: 51 (just consumed gas: 0.010, remaining gas: 1039963.471 units remaining) + - location: 51 (just consumed gas: 0.010) [ -1 12 ] - - location: 54 (just consumed gas: 0.035, remaining gas: 1039963.436 units remaining) + - location: 54 (just consumed gas: 0.035) [ 12 ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039963.426 units remaining) + - location: 55 (just consumed gas: 0.010) [ 12 12 ] - - location: 60 (just consumed gas: 0.035, remaining gas: 1039963.391 units remaining) + - location: 60 (just consumed gas: 0.035) [ 0 ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039963.381 units remaining) + - location: 61 (just consumed gas: 0.010) [ True ] - - location: 62 (just consumed gas: 0, remaining gas: 1039963.381 units remaining) + - location: 62 (just consumed gas: 0) [ ] - - location: 62 (just consumed gas: 0.015, remaining gas: 1039963.366 units remaining) + - location: 62 (just consumed gas: 0.015) [ ] - - location: 68 (just consumed gas: 0.010, remaining gas: 1039963.356 units remaining) + - location: 68 (just consumed gas: 0.010) [ 12 ] - - location: 71 (just consumed gas: 0.010, remaining gas: 1039963.346 units remaining) + - location: 71 (just consumed gas: 0.010) [ -5 12 ] - - location: 74 (just consumed gas: 0.035, remaining gas: 1039963.311 units remaining) + - location: 74 (just consumed gas: 0.035) [ 8 ] - - location: 75 (just consumed gas: 0.010, remaining gas: 1039963.301 units remaining) + - location: 75 (just consumed gas: 0.010) [ 8 8 ] - - location: 80 (just consumed gas: 0.035, remaining gas: 1039963.266 units remaining) + - location: 80 (just consumed gas: 0.035) [ 0 ] - - location: 81 (just consumed gas: 0.010, remaining gas: 1039963.256 units remaining) + - location: 81 (just consumed gas: 0.010) [ True ] - - location: 82 (just consumed gas: 0, remaining gas: 1039963.256 units remaining) + - location: 82 (just consumed gas: 0) [ ] - - location: 82 (just consumed gas: 0.015, remaining gas: 1039963.241 units remaining) + - location: 82 (just consumed gas: 0.015) [ ] - - location: 88 (just consumed gas: 0.010, remaining gas: 1039963.231 units remaining) + - location: 88 (just consumed gas: 0.010) [ Unit ] - - location: 89 (just consumed gas: 0.010, remaining gas: 1039963.221 units remaining) + - location: 89 (just consumed gas: 0.010) [ {} Unit ] - - location: 91 (just consumed gas: 0.010, 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 52408b63dc49..bacede7152f6 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 (just consumed gas: 5.366, remaining gas: 1039994.634 units remaining) + - location: 9 (just consumed gas: 5.366) [ (Pair (Pair False False) False) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.624 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair False False) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.614 units remaining) + - location: 10 (just consumed gas: 0.010) [ False False ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.604 units remaining) + - location: 11 (just consumed gas: 0.010) [ False ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.594 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} False ] - - location: 14 (just consumed gas: 0.010, 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 2c0eb5686a68..07c9978de81a 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 (just consumed gas: 5.366, remaining gas: 1039994.634 units remaining) + - location: 9 (just consumed gas: 5.366) [ (Pair (Pair False True) False) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.624 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair False True) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.614 units remaining) + - location: 10 (just consumed gas: 0.010) [ False True ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.604 units remaining) + - location: 11 (just consumed gas: 0.010) [ False ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.594 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} False ] - - location: 14 (just consumed gas: 0.010, 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 78bd9ae30ee9..518c11a1f058 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 (just consumed gas: 5.366, remaining gas: 1039994.634 units remaining) + - location: 9 (just consumed gas: 5.366) [ (Pair (Pair True False) False) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.624 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair True False) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.614 units remaining) + - location: 10 (just consumed gas: 0.010) [ True False ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.604 units remaining) + - location: 11 (just consumed gas: 0.010) [ False ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.594 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} False ] - - location: 14 (just consumed gas: 0.010, 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 a94c14a46a71..792ba132f61f 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 (just consumed gas: 5.366, remaining gas: 1039994.634 units remaining) + - location: 9 (just consumed gas: 5.366) [ (Pair (Pair True True) False) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.624 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair True True) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.614 units remaining) + - location: 10 (just consumed gas: 0.010) [ True True ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.604 units remaining) + - location: 11 (just consumed gas: 0.010) [ True ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.594 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} True ] - - location: 14 (just consumed gas: 0.010, 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 f8f989ce3e86..5ae671691235 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 (just consumed gas: 4.267, remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 111) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 4000000000000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 4000000000000 ] - - location: 11 (just consumed gas: 0.010, 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 957d76334e62..467e607fdf57 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 (just consumed gas: 10.843, remaining gas: 1039989.157 units remaining) + - location: 12 (just consumed gas: 10.843) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.147 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.147 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 0 1 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.137 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 0 1 } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.127 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039989.102 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (just consumed gas: 0.722, remaining gas: 1039988.380 units remaining) + - location: 17 (just consumed gas: 0.722) [ False { Elt 0 1 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.370 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt 0 1 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.360 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 0 1 } (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.350 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.340 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 996526b5b02c..5b5c8f060e33 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 (just consumed gas: 10.843, remaining gas: 1039989.157 units remaining) + - location: 12 (just consumed gas: 10.843) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.147 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.147 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 0 1 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.137 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 0 1 } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.127 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039989.102 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (just consumed gas: 0.722, remaining gas: 1039988.380 units remaining) + - location: 17 (just consumed gas: 0.722) [ False { Elt 0 1 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.370 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt 0 1 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.360 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 0 1 } (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.350 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.340 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 13942358ae15..6dc945441fc9 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 (just consumed gas: 10.868, remaining gas: 1039989.132 units remaining) + - location: 12 (just consumed gas: 10.868) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.122 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.122 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 0 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.112 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 0 } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.102 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039989.077 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (just consumed gas: 0.722, remaining gas: 1039988.355 units remaining) + - location: 17 (just consumed gas: 0.722) [ True { Elt 1 0 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.345 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 0 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.335 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 0 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.325 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.315 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 4a39434b5687..ffa283d5db7f 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 (just consumed gas: 10.868, remaining gas: 1039989.132 units remaining) + - location: 12 (just consumed gas: 10.868) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.122 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.122 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 0 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.112 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 0 } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.102 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039989.077 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (just consumed gas: 0.722, remaining gas: 1039988.355 units remaining) + - location: 17 (just consumed gas: 0.722) [ True { Elt 1 0 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.345 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 0 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.335 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 0 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.325 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.315 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 9c162097ac95..85bd38c08f77 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 (just consumed gas: 11.838, remaining gas: 1039988.162 units remaining) + - location: 12 (just consumed gas: 11.838) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.723, remaining gas: 1039987.384 units remaining) + - location: 17 (just consumed gas: 0.723) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 0674e87a4324..7a4a24be9f6d 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 (just consumed gas: 11.838, remaining gas: 1039988.162 units remaining) + - location: 12 (just consumed gas: 11.838) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.723, remaining gas: 1039987.384 units remaining) + - location: 17 (just consumed gas: 0.723) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 86ae657d20ee..f7462e05df60 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 (just consumed gas: 11.838, remaining gas: 1039988.162 units remaining) + - location: 12 (just consumed gas: 11.838) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.723, remaining gas: 1039987.384 units remaining) + - location: 17 (just consumed gas: 0.723) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 57c057d8ea90..b720741dce7c 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 (just consumed gas: 11.838, remaining gas: 1039988.162 units remaining) + - location: 12 (just consumed gas: 11.838) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.723, remaining gas: 1039987.384 units remaining) + - location: 17 (just consumed gas: 0.723) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 4927cee2acc2..4231f0ee0bc8 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 (just consumed gas: 11.838, remaining gas: 1039988.162 units remaining) + - location: 12 (just consumed gas: 11.838) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.723, remaining gas: 1039987.384 units remaining) + - location: 17 (just consumed gas: 0.723) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 cab5ee4edacf..1b5227762a8e 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 (just consumed gas: 11.838, remaining gas: 1039988.162 units remaining) + - location: 12 (just consumed gas: 11.838) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.152 units remaining) + - location: 12 (just consumed gas: 0.010) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039988.152 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.142 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.723, remaining gas: 1039987.384 units remaining) + - location: 17 (just consumed gas: 0.723) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.374 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.364 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.354 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.344 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 a90ac4f1e1f1..cdd814b0e06c 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 (just consumed gas: 9.936, remaining gas: 1039990.064 units remaining) + - location: 12 (just consumed gas: 9.936) [ (Pair 1 {} None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.054 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair {} None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.054 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair {} None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.044 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.034 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.009 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 {} {} ] - - location: 17 (just consumed gas: 0.720, remaining gas: 1039989.289 units remaining) + - location: 17 (just consumed gas: 0.720) [ False {} ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.279 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) {} ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.269 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.259 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.249 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair {} (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 02d1f1d8a18a..a344f92e4e59 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 (just consumed gas: 9.936, remaining gas: 1039990.064 units remaining) + - location: 12 (just consumed gas: 9.936) [ (Pair 1 {} None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.054 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair {} None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.054 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair {} None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.044 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.034 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.009 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 {} {} ] - - location: 17 (just consumed gas: 0.720, remaining gas: 1039989.289 units remaining) + - location: 17 (just consumed gas: 0.720) [ False {} ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.279 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) {} ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.269 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.259 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.249 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair {} (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 d83737fd59f6..3b07868ba2af 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 (just consumed gas: 11.994, remaining gas: 1039988.006 units remaining) + - location: 12 (just consumed gas: 11.994) [ (Pair "baz" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039987.996 units remaining) + - location: 12 (just consumed gas: 0.010) [ "baz" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039987.996 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039987.986 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.735, remaining gas: 1039987.216 units remaining) + - location: 17 (just consumed gas: 0.735) [ False { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.206 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.196 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.186 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.176 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 c9aa1e09c425..997b2a2b55ef 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 (just consumed gas: 11.994, remaining gas: 1039988.006 units remaining) + - location: 12 (just consumed gas: 11.994) [ (Pair "foo" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039987.996 units remaining) + - location: 12 (just consumed gas: 0.010) [ "foo" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039987.996 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039987.986 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.735, remaining gas: 1039987.216 units remaining) + - location: 17 (just consumed gas: 0.735) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.206 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.196 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.186 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.176 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 671a55efe0d4..c20f651b0db7 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 (just consumed gas: 11.994, remaining gas: 1039988.006 units remaining) + - location: 12 (just consumed gas: 11.994) [ (Pair "bar" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039987.996 units remaining) + - location: 12 (just consumed gas: 0.010) [ "bar" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039987.996 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039987.986 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.735, remaining gas: 1039987.216 units remaining) + - location: 17 (just consumed gas: 0.735) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.206 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.196 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039987.186 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039987.176 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 15c74611979a..3023287a1522 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 (just consumed gas: 10.968, remaining gas: 1039989.032 units remaining) + - location: 12 (just consumed gas: 10.968) [ (Pair "foo" { Elt "foo" 0 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.022 units remaining) + - location: 12 (just consumed gas: 0.010) [ "foo" (Pair { Elt "foo" 0 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.022 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "foo" 0 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.012 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "foo" 0 } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.002 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039988.977 units remaining) + - location: 13 (just consumed gas: 0.025) [ "foo" { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 17 (just consumed gas: 0.734, remaining gas: 1039988.243 units remaining) + - location: 17 (just consumed gas: 0.734) [ True { Elt "foo" 0 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.233 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt "foo" 0 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.223 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "foo" 0 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.213 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "foo" 0 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.203 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "foo" 0 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 153538cd9854..f20922674a0e 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 (just consumed gas: 10.968, remaining gas: 1039989.032 units remaining) + - location: 12 (just consumed gas: 10.968) [ (Pair "bar" { Elt "foo" 1 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.022 units remaining) + - location: 12 (just consumed gas: 0.010) [ "bar" (Pair { Elt "foo" 1 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.022 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "foo" 1 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.012 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "foo" 1 } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.002 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039988.977 units remaining) + - location: 13 (just consumed gas: 0.025) [ "bar" { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 17 (just consumed gas: 0.734, remaining gas: 1039988.243 units remaining) + - location: 17 (just consumed gas: 0.734) [ False { Elt "foo" 1 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.233 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt "foo" 1 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.223 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "foo" 1 } (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.213 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "foo" 1 } (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.203 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "foo" 1 } (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 9ee94556ae50..4c2cef2f5ece 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 (just consumed gas: 9.980, remaining gas: 1039990.020 units remaining) + - location: 12 (just consumed gas: 9.980) [ (Pair "bar" {} None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.010 units remaining) + - location: 12 (just consumed gas: 0.010) [ "bar" (Pair {} None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.010 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair {} None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039990 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.990 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039989.965 units remaining) + - location: 13 (just consumed gas: 0.025) [ "bar" {} {} ] - - location: 17 (just consumed gas: 0.732, remaining gas: 1039989.233 units remaining) + - location: 17 (just consumed gas: 0.732) [ False {} ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.223 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) {} ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.213 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.203 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.193 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair {} (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 b49e37a5bbe9..86879c7d6275 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 (just consumed gas: 5.634, remaining gas: 1039994.366 units remaining) + - location: 8 (just consumed gas: 5.634) [ (Pair Unit None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.356 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.346 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.336 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.326 units remaining) + - location: 13 (just consumed gas: 0.010) [ {} (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 15 (just consumed gas: 0.010, 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 98c63725d59b..0c65df761a63 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 (just consumed gas: 5.634, remaining gas: 1039994.366 units remaining) + - location: 8 (just consumed gas: 5.634) [ (Pair Unit None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.356 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.346 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.336 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Some 0x1000000000000000000000000000000000000000000000000000000000000000) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.326 units remaining) + - location: 13 (just consumed gas: 0.010) [ {} (Some 0x1000000000000000000000000000000000000000000000000000000000000000) ] - - location: 15 (just consumed gas: 0.010, 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 c99cb67b3b33..9e3ca24d98ef 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.115, remaining gas: 1039995.488 units remaining) + - location: 8 (just consumed gas: 0.115) [ 0 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.478 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0 ] - - location: 11 (just consumed gas: 0.010, 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 fa2b7aac3a82..4e5e6d4b71f6 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.115, remaining gas: 1039995.488 units remaining) + - location: 8 (just consumed gas: 0.115) [ 1 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.478 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 1 ] - - location: 11 (just consumed gas: 0.010, 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 0cb8d4928ad4..9bcf9eb13bf8 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 0) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 ] - - location: 8 (just consumed gas: 0.115, remaining gas: 1039995.488 units remaining) + - location: 8 (just consumed gas: 0.115) [ 17832688077013577776524784494464728518213913213412866604053735695200962927400 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.478 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 17832688077013577776524784494464728518213913213412866604053735695200962927400 ] - - location: 11 (just consumed gas: 0.010, 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 c9a03d4289c3..2ab059933415 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 0) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 ] - - location: 8 (just consumed gas: 0.115, remaining gas: 1039995.488 units remaining) + - location: 8 (just consumed gas: 0.115) [ 11320265829256585830781521966149529460476767408210445238902869222031333517497 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.478 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 11320265829256585830781521966149529460476767408210445238902869222031333517497 ] - - location: 11 (just consumed gas: 0.010, 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 cacc17759ac6..9f72f388396d 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 (just consumed gas: 9.316, remaining gas: 1039990.684 units remaining) + - location: 7 (just consumed gas: 9.316) [ (Pair 0x1000000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039990.674 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.115, remaining gas: 1039990.559 units remaining) + - location: 8 (just consumed gas: 0.115) [ 16 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039990.549 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Some 16) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039990.549 units remaining) + - location: 11 (just consumed gas: 0) [ 16 ] - - location: 11 (just consumed gas: 0.015, remaining gas: 1039990.534 units remaining) + - location: 11 (just consumed gas: 0.015) [ 16 ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039990.524 units remaining) + - location: 17 (just consumed gas: 0.010) [ 1 16 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039990.524 units remaining) + - location: 20 (just consumed gas: 0) [ 16 ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.514 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} 16 ] - - location: 23 (just consumed gas: 0.010, 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 cff106943b84..2bd4fc384062 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair -42 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ -42 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.266, remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 11 (just consumed gas: 0.010, 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 033d91572532..5eeb4e1ec0e2 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.266, remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010, 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 e3ea49f1973e..0ef52aa60e32 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair -1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ -1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.266, remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 11 (just consumed gas: 0.010, 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 7d47dcdae8fa..a35a4fb56bf7 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.265, remaining gas: 1039995.338 units remaining) + - location: 8 (just consumed gas: 0.265) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.328 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010, 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 73cb0104bc17..67990b777180 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010, 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 152f31f8e841..91803770756d 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.266, remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010, 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 fb23a9bba912..1a4f9b1e117a 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 11 (just consumed gas: 0.010, 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 2140aeb04cf9..61203f95b8f2 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 11 (just consumed gas: 0.010, 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 9fee5c0341d3..4621d967ca25 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (just consumed gas: 0.010, 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 d3809403bdee..bd3e1605ab1b 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (just consumed gas: 0.010, 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 54e711c58d85..1cddfcc40673 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.266, remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010, 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 bf45a38aa708..94a8b66bf09d 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.265, remaining gas: 1039995.338 units remaining) + - location: 8 (just consumed gas: 0.265) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.328 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010, 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 962961c98fd8..f573677f4d8b 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010, 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 844cfe09df39..fdd5fb3c1e35 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.266, remaining gas: 1039995.337 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.327 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010, 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 08ff7fd414cb..9d54a1e1090b 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 11 (just consumed gas: 0.010, 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 074d99c965e6..31ae8bd3cf0f 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 11 (just consumed gas: 0.010, 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 b57cd2d60d79..08a5c05fff49 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (just consumed gas: 0.010, 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 13e3fe7b4a73..a19ba2ed05d1 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 (just consumed gas: 4.387, remaining gas: 1039995.613 units remaining) + - location: 7 (just consumed gas: 4.387) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.603 units remaining) + - location: 7 (just consumed gas: 0.010) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.299, remaining gas: 1039995.304 units remaining) + - location: 8 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.294 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (just consumed gas: 0.010, 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 3274e5507af4..f69dafc0450e 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 2 ] - - location: 9 (just consumed gas: 0.266, remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010, 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 e5f0c828643f..8bd4a8a3783a 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair -1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ -1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 -1 ] - - location: 9 (just consumed gas: 0.266, remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266) [ 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 12 (just consumed gas: 0.010, 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 98b308ffccca..387b38db6591 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0 ] - - location: 9 (just consumed gas: 0.265, remaining gas: 1039994.775 units remaining) + - location: 9 (just consumed gas: 0.265) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.765 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010, 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 97c02e3b4351..87d397137842 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair -42 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ -42 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 -42 ] - - location: 9 (just consumed gas: 0.266, remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266) [ 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 12 (just consumed gas: 0.010, 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 d949cbb6d91c..b0f816e32a01 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 1 ] - - location: 9 (just consumed gas: 0.266, remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010, 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 7d307e69f540..c7233d23a650 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 52435875175126190479447740508185965837690552500527637822603658699938581184514 ] - - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010, 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 a32e82354803..c7f9ac7c8b0a 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f 22620284817922784902564672469917992996328211127984472897491698543785655336309 ] - - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 12 (just consumed gas: 0.010, 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 168ab89a7266..1229afe72810 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f 33644916630334844239120348434626468649534186770809802792596996408934105684394 ] - - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 12 (just consumed gas: 0.010, 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 79998e979a7d..2e9133e25eb1 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 17180093072794558806177035834397932205917577288483739652510482486858834123369 ] - - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (just consumed gas: 0.010, 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 7e75104802b6..2e52c1e0df54 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 69615968247920749285624776342583898043608129789011377475114141186797415307882 ] - - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (just consumed gas: 0.010, 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 852ce0c1184e..1d5ffefc397f 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 52435875175126190479447740508185965837690552500527637822603658699938581184514 ] - - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010, 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 44384ec33c0f..c0076a725b93 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0 ] - - location: 9 (just consumed gas: 0.265, remaining gas: 1039994.775 units remaining) + - location: 9 (just consumed gas: 0.265) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.765 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010, 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 4cc03eebb8c0..c0fc1b05d824 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 1 ] - - location: 9 (just consumed gas: 0.266, remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010, 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 6c8a62f4a295..babd726d2786 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 2 ] - - location: 9 (just consumed gas: 0.266, remaining gas: 1039994.774 units remaining) + - location: 9 (just consumed gas: 0.266) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010, 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 344c811b5917..55dd8a46e57c 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f 22620284817922784902564672469917992996328211127984472897491698543785655336309 ] - - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 12 (just consumed gas: 0.010, 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 33ee2f91206f..6edb34c0007e 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f 33644916630334844239120348434626468649534186770809802792596996408934105684394 ] - - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 12 (just consumed gas: 0.010, 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 54407af575b0..86a9e398d8da 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 69615968247920749285624776342583898043608129789011377475114141186797415307882 ] - - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (just consumed gas: 0.010, 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 375d5893b0e6..ad7781847508 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 (just consumed gas: 4.940, remaining gas: 1039995.060 units remaining) + - location: 7 (just consumed gas: 4.940) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.050 units remaining) + - location: 7 (just consumed gas: 0.010) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 17180093072794558806177035834397932205917577288483739652510482486858834123369 ] - - location: 9 (just consumed gas: 0.299, remaining gas: 1039994.741 units remaining) + - location: 9 (just consumed gas: 0.299) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.731 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (just consumed gas: 0.010, 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 6fb8e4d7930c..f658bd43481f 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 (just consumed gas: 4.723, remaining gas: 1039995.277 units remaining) + - location: 9 (just consumed gas: 4.723) [ (Pair (Pair 34 17) 0) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.267 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair 34 17) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.257 units remaining) + - location: 10 (just consumed gas: 0.010) [ 34 ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.247 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} 34 ] - - location: 13 (just consumed gas: 0.010, 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 2655e8edf7f3..dea4dd9def49 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 (just consumed gas: 4.723, remaining gas: 1039995.277 units remaining) + - location: 9 (just consumed gas: 4.723) [ (Pair (Pair 34 17) 0) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.267 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair 34 17) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.257 units remaining) + - location: 10 (just consumed gas: 0.010) [ 17 ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.247 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} 17 ] - - location: 13 (just consumed gas: 0.010, 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 f12c9bfb6f42..92f1ab7e29b3 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 (just consumed gas: 6.753, remaining gas: 1039993.247 units remaining) + - location: 8 (just consumed gas: 6.753) [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039993.237 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (just consumed gas: 0.015, remaining gas: 1039993.222 units remaining) + - location: 9 (just consumed gas: 0.015) [ "NetXdQprcVkpaWU" ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.212 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.202 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some "NetXdQprcVkpaWU") ] - - location: 13 (just consumed gas: 0.010, 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 d35f137c2f5f..2b800175f19e 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 (just consumed gas: 5.203, remaining gas: 1039994.797 units remaining) + - location: 8 (just consumed gas: 5.203) [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.787 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (just consumed gas: 0.015, remaining gas: 1039994.772 units remaining) + - location: 9 (just consumed gas: 0.015) [ "NetXdQprcVkpaWU" ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.762 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.752 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some "NetXdQprcVkpaWU") ] - - location: 13 (just consumed gas: 0.010, 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 a04dd0ede5c0..1cf1feb7d2d5 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 (just consumed gas: 5.053, remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair Unit None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (just consumed gas: 0.015, remaining gas: 1039994.922 units remaining) + - location: 9 (just consumed gas: 0.015) [ "NetXdQprcVkpaWU" ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.912 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.902 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some "NetXdQprcVkpaWU") ] - - location: 13 (just consumed gas: 0.010, 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 b3371a8d49ce..e1fe883c478b 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 (just consumed gas: 43.348, remaining gas: 1039956.652 units remaining) + - location: 11 (just consumed gas: 43.348) [ (Pair (Pair 1 4 2 Unit) Unit) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039956.642 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 1 4 2 Unit) ] - - location: 12 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039956.622 units remaining) + - location: 13 (just consumed gas: 0.010) [ 1 (Pair 1 4 2 Unit) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039956.612 units remaining) + - location: 14 (just consumed gas: 0.010) [ 1 1 (Pair 1 4 2 Unit) ] - - location: 19 (just consumed gas: 0.035, remaining gas: 1039956.577 units remaining) + - location: 19 (just consumed gas: 0.035) [ 0 (Pair 1 4 2 Unit) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039956.567 units remaining) + - location: 20 (just consumed gas: 0.010) [ True (Pair 1 4 2 Unit) ] - - location: 21 (just consumed gas: 0, remaining gas: 1039956.567 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair 1 4 2 Unit) ] - - location: 21 (just consumed gas: 0.015, remaining gas: 1039956.552 units remaining) + - location: 21 (just consumed gas: 0.015) [ (Pair 1 4 2 Unit) ] - - location: 27 (just consumed gas: 0.010, 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 (just consumed gas: 0.020, remaining gas: 1039956.522 units remaining) + - location: 28 (just consumed gas: 0.020) [ 1 (Pair 1 4 2 Unit) ] - - location: 30 (just consumed gas: 0.010, remaining gas: 1039956.512 units remaining) + - location: 30 (just consumed gas: 0.010) [ 1 1 (Pair 1 4 2 Unit) ] - - location: 35 (just consumed gas: 0.035, remaining gas: 1039956.477 units remaining) + - location: 35 (just consumed gas: 0.035) [ 0 (Pair 1 4 2 Unit) ] - - location: 36 (just consumed gas: 0.010, remaining gas: 1039956.467 units remaining) + - location: 36 (just consumed gas: 0.010) [ True (Pair 1 4 2 Unit) ] - - location: 37 (just consumed gas: 0, remaining gas: 1039956.467 units remaining) + - location: 37 (just consumed gas: 0) [ (Pair 1 4 2 Unit) ] - - location: 37 (just consumed gas: 0.015, remaining gas: 1039956.452 units remaining) + - location: 37 (just consumed gas: 0.015) [ (Pair 1 4 2 Unit) ] - - location: 43 (just consumed gas: 0.010, 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 (just consumed gas: 0.021, remaining gas: 1039956.421 units remaining) + - location: 44 (just consumed gas: 0.021) [ 4 (Pair 1 4 2 Unit) ] - - location: 46 (just consumed gas: 0.010, remaining gas: 1039956.411 units remaining) + - location: 46 (just consumed gas: 0.010) [ 4 4 (Pair 1 4 2 Unit) ] - - location: 51 (just consumed gas: 0.035, remaining gas: 1039956.376 units remaining) + - location: 51 (just consumed gas: 0.035) [ 0 (Pair 1 4 2 Unit) ] - - location: 52 (just consumed gas: 0.010, remaining gas: 1039956.366 units remaining) + - location: 52 (just consumed gas: 0.010) [ True (Pair 1 4 2 Unit) ] - - location: 53 (just consumed gas: 0, remaining gas: 1039956.366 units remaining) + - location: 53 (just consumed gas: 0) [ (Pair 1 4 2 Unit) ] - - location: 53 (just consumed gas: 0.015, remaining gas: 1039956.351 units remaining) + - location: 53 (just consumed gas: 0.015) [ (Pair 1 4 2 Unit) ] - - location: 59 (just consumed gas: 0.010, 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 (just consumed gas: 0.022, remaining gas: 1039956.319 units remaining) + - location: 60 (just consumed gas: 0.022) [ 2 (Pair 1 4 2 Unit) ] - - location: 62 (just consumed gas: 0.010, remaining gas: 1039956.309 units remaining) + - location: 62 (just consumed gas: 0.010) [ 2 2 (Pair 1 4 2 Unit) ] - - location: 67 (just consumed gas: 0.035, remaining gas: 1039956.274 units remaining) + - location: 67 (just consumed gas: 0.035) [ 0 (Pair 1 4 2 Unit) ] - - location: 68 (just consumed gas: 0.010, remaining gas: 1039956.264 units remaining) + - location: 68 (just consumed gas: 0.010) [ True (Pair 1 4 2 Unit) ] - - location: 69 (just consumed gas: 0, remaining gas: 1039956.264 units remaining) + - location: 69 (just consumed gas: 0) [ (Pair 1 4 2 Unit) ] - - location: 69 (just consumed gas: 0.015, remaining gas: 1039956.249 units remaining) + - location: 69 (just consumed gas: 0.015) [ (Pair 1 4 2 Unit) ] - - location: 75 (just consumed gas: 0.010, 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 (just consumed gas: 0.023, remaining gas: 1039956.216 units remaining) + - location: 76 (just consumed gas: 0.023) [ Unit (Pair 1 4 2 Unit) ] - - location: 78 (just consumed gas: 0.010, remaining gas: 1039956.206 units remaining) + - location: 78 (just consumed gas: 0.010) [ Unit Unit (Pair 1 4 2 Unit) ] - - location: 81 (just consumed gas: 0.010, remaining gas: 1039956.196 units remaining) + - location: 81 (just consumed gas: 0.010) [ 0 (Pair 1 4 2 Unit) ] - - location: 82 (just consumed gas: 0.010, remaining gas: 1039956.186 units remaining) + - location: 82 (just consumed gas: 0.010) [ True (Pair 1 4 2 Unit) ] - - location: 83 (just consumed gas: 0, remaining gas: 1039956.186 units remaining) + - location: 83 (just consumed gas: 0) [ (Pair 1 4 2 Unit) ] - - location: 83 (just consumed gas: 0.015, remaining gas: 1039956.171 units remaining) + - location: 83 (just consumed gas: 0.015) [ (Pair 1 4 2 Unit) ] - - location: 89 (just consumed gas: 0.010, remaining gas: 1039956.161 units remaining) + - location: 89 (just consumed gas: 0.010) [ ] - - location: 90 (just consumed gas: 0.010, remaining gas: 1039956.151 units remaining) + - location: 90 (just consumed gas: 0.010) [ Unit ] - - location: 91 (just consumed gas: 0.010, remaining gas: 1039956.141 units remaining) + - location: 91 (just consumed gas: 0.010) [ {} Unit ] - - location: 93 (just consumed gas: 0.010, 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 70202c5ecde0..5779d01f47f1 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 (just consumed gas: 12.844, remaining gas: 1039987.156 units remaining) + - location: 16 (just consumed gas: 12.844) [ (Pair (Pair 1 4 2 Unit) None) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039987.146 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 1 4 2 Unit) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039987.136 units remaining) + - location: 17 (just consumed gas: 0.010) [ 2 (Pair 1 4 2 Unit) ] - - location: 20 (just consumed gas: 0.021, remaining gas: 1039987.115 units remaining) + - location: 20 (just consumed gas: 0.021) [ (Pair 2 4 2 Unit) ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.105 units remaining) + - location: 22 (just consumed gas: 0.010) [ "toto" (Pair 2 4 2 Unit) ] - - location: 25 (just consumed gas: 0.026, remaining gas: 1039987.079 units remaining) + - location: 25 (just consumed gas: 0.026) [ (Pair 2 4 "toto" Unit) ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039987.069 units remaining) + - location: 27 (just consumed gas: 0.010) [ 0x01 (Pair 2 4 "toto" Unit) ] - - location: 30 (just consumed gas: 0.027, remaining gas: 1039987.042 units remaining) + - location: 30 (just consumed gas: 0.027) [ (Pair 2 4 "toto" 0x01) ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039987.032 units remaining) + - location: 32 (just consumed gas: 0.010) [ (Some (Pair 2 4 "toto" 0x01)) ] - - location: 33 (just consumed gas: 0.010, remaining gas: 1039987.022 units remaining) + - location: 33 (just consumed gas: 0.010) [ {} (Some (Pair 2 4 "toto" 0x01)) ] - - location: 35 (just consumed gas: 0.010, 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 7cb50b6be378..8d50977139a8 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 (just consumed gas: 12.667, remaining gas: 1039987.333 units remaining) + - location: 11 (just consumed gas: 12.667) [ (Pair Unit 1 4 2 Unit) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039987.323 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 1 4 2 Unit) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039987.313 units remaining) + - location: 12 (just consumed gas: 0.010) [ 2 (Pair 1 4 2 Unit) ] - - location: 15 (just consumed gas: 0.021, remaining gas: 1039987.292 units remaining) + - location: 15 (just consumed gas: 0.021) [ (Pair 2 4 2 Unit) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039987.282 units remaining) + - location: 17 (just consumed gas: 0.010) [ 12 (Pair 2 4 2 Unit) ] - - location: 20 (just consumed gas: 0.023, remaining gas: 1039987.259 units remaining) + - location: 20 (just consumed gas: 0.023) [ (Pair 2 12 2 Unit) ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.249 units remaining) + - location: 22 (just consumed gas: 0.010) [ 8 (Pair 2 12 2 Unit) ] - - location: 25 (just consumed gas: 0.026, remaining gas: 1039987.223 units remaining) + - location: 25 (just consumed gas: 0.026) [ (Pair 2 12 8 Unit) ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039987.213 units remaining) + - location: 27 (just consumed gas: 0.010) [ Unit (Pair 2 12 8 Unit) ] - - location: 28 (just consumed gas: 0.027, remaining gas: 1039987.186 units remaining) + - location: 28 (just consumed gas: 0.027) [ (Pair 2 12 8 Unit) ] - - location: 30 (just consumed gas: 0.010, remaining gas: 1039987.176 units remaining) + - location: 30 (just consumed gas: 0.010) [ {} (Pair 2 12 8 Unit) ] - - location: 32 (just consumed gas: 0.010, 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 7f3eee9daedd..43980b7c18bc 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 (just consumed gas: 8.221, remaining gas: 1039991.779 units remaining) + - location: 10 (just consumed gas: 8.221) [ (Pair Unit 0 0 0) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.769 units remaining) + - location: 10 (just consumed gas: 0.010) [ ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.759 units remaining) + - location: 11 (just consumed gas: 0.010) [ 3 ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.749 units remaining) + - location: 14 (just consumed gas: 0.010) [ 2 3 ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.739 units remaining) + - location: 17 (just consumed gas: 0.010) [ 1 2 3 ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.729 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} 1 2 3 ] - - location: 22 (just consumed gas: 0.014, 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 c7cac00afc64..95fc00a5decd 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 (just consumed gas: 198.972, remaining gas: 1039801.028 units remaining) + - location: 7 (just consumed gas: 198.972) [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039801.018 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039801.008 units remaining) + - location: 8 (just consumed gas: 0.010) [ True ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039800.998 units remaining) + - location: 11 (just consumed gas: 0.010) [ True True ] - - location: 12 (just consumed gas: 0.035, remaining gas: 1039800.963 units remaining) + - location: 12 (just consumed gas: 0.035) [ 0 ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039800.953 units remaining) + - location: 14 (just consumed gas: 0.010) [ True ] - - location: 15 (just consumed gas: 0, remaining gas: 1039800.953 units remaining) + - location: 15 (just consumed gas: 0) [ ] - - location: 15 (just consumed gas: 0.015, remaining gas: 1039800.938 units remaining) + - location: 15 (just consumed gas: 0.015) [ ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039800.928 units remaining) + - location: 21 (just consumed gas: 0.010) [ False ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039800.918 units remaining) + - location: 24 (just consumed gas: 0.010) [ False False ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039800.883 units remaining) + - location: 25 (just consumed gas: 0.035) [ 0 ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039800.873 units remaining) + - location: 27 (just consumed gas: 0.010) [ True ] - - location: 28 (just consumed gas: 0, remaining gas: 1039800.873 units remaining) + - location: 28 (just consumed gas: 0) [ ] - - location: 28 (just consumed gas: 0.015, remaining gas: 1039800.858 units remaining) + - location: 28 (just consumed gas: 0.015) [ ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039800.848 units remaining) + - location: 34 (just consumed gas: 0.010) [ False ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039800.838 units remaining) + - location: 37 (just consumed gas: 0.010) [ True False ] - - location: 40 (just consumed gas: 0.035, remaining gas: 1039800.803 units remaining) + - location: 40 (just consumed gas: 0.035) [ 1 ] - - location: 42 (just consumed gas: 0.010, remaining gas: 1039800.793 units remaining) + - location: 42 (just consumed gas: 0.010) [ True ] - - location: 43 (just consumed gas: 0, remaining gas: 1039800.793 units remaining) + - location: 43 (just consumed gas: 0) [ ] - - location: 43 (just consumed gas: 0.015, remaining gas: 1039800.778 units remaining) + - location: 43 (just consumed gas: 0.015) [ ] - - location: 49 (just consumed gas: 0.010, remaining gas: 1039800.768 units remaining) + - location: 49 (just consumed gas: 0.010) [ True ] - - location: 52 (just consumed gas: 0.010, remaining gas: 1039800.758 units remaining) + - location: 52 (just consumed gas: 0.010) [ False True ] - - location: 55 (just consumed gas: 0.035, remaining gas: 1039800.723 units remaining) + - location: 55 (just consumed gas: 0.035) [ -1 ] - - location: 57 (just consumed gas: 0.010, remaining gas: 1039800.713 units remaining) + - location: 57 (just consumed gas: 0.010) [ True ] - - location: 58 (just consumed gas: 0, remaining gas: 1039800.713 units remaining) + - location: 58 (just consumed gas: 0) [ ] - - location: 58 (just consumed gas: 0.015, remaining gas: 1039800.698 units remaining) + - location: 58 (just consumed gas: 0.015) [ ] - - location: 64 (just consumed gas: 0.010, remaining gas: 1039800.688 units remaining) + - location: 64 (just consumed gas: 0.010) [ 0xaabbcc ] - - location: 67 (just consumed gas: 0.010, remaining gas: 1039800.678 units remaining) + - location: 67 (just consumed gas: 0.010) [ 0xaabbcc 0xaabbcc ] - - location: 68 (just consumed gas: 0.035, remaining gas: 1039800.643 units remaining) + - location: 68 (just consumed gas: 0.035) [ 0 ] - - location: 70 (just consumed gas: 0.010, remaining gas: 1039800.633 units remaining) + - location: 70 (just consumed gas: 0.010) [ True ] - - location: 71 (just consumed gas: 0, remaining gas: 1039800.633 units remaining) + - location: 71 (just consumed gas: 0) [ ] - - location: 71 (just consumed gas: 0.015, remaining gas: 1039800.618 units remaining) + - location: 71 (just consumed gas: 0.015) [ ] - - location: 77 (just consumed gas: 0.010, remaining gas: 1039800.608 units remaining) + - location: 77 (just consumed gas: 0.010) [ 0x ] - - location: 80 (just consumed gas: 0.010, remaining gas: 1039800.598 units remaining) + - location: 80 (just consumed gas: 0.010) [ 0x 0x ] - - location: 83 (just consumed gas: 0.035, remaining gas: 1039800.563 units remaining) + - location: 83 (just consumed gas: 0.035) [ 0 ] - - location: 85 (just consumed gas: 0.010, remaining gas: 1039800.553 units remaining) + - location: 85 (just consumed gas: 0.010) [ True ] - - location: 86 (just consumed gas: 0, remaining gas: 1039800.553 units remaining) + - location: 86 (just consumed gas: 0) [ ] - - location: 86 (just consumed gas: 0.015, remaining gas: 1039800.538 units remaining) + - location: 86 (just consumed gas: 0.015) [ ] - - location: 92 (just consumed gas: 0.010, remaining gas: 1039800.528 units remaining) + - location: 92 (just consumed gas: 0.010) [ 0x ] - - location: 95 (just consumed gas: 0.010, remaining gas: 1039800.518 units remaining) + - location: 95 (just consumed gas: 0.010) [ 0x01 0x ] - - location: 98 (just consumed gas: 0.035, remaining gas: 1039800.483 units remaining) + - location: 98 (just consumed gas: 0.035) [ 1 ] - - location: 100 (just consumed gas: 0.010, remaining gas: 1039800.473 units remaining) + - location: 100 (just consumed gas: 0.010) [ True ] - - location: 101 (just consumed gas: 0, remaining gas: 1039800.473 units remaining) + - location: 101 (just consumed gas: 0) [ ] - - location: 101 (just consumed gas: 0.015, remaining gas: 1039800.458 units remaining) + - location: 101 (just consumed gas: 0.015) [ ] - - location: 107 (just consumed gas: 0.010, remaining gas: 1039800.448 units remaining) + - location: 107 (just consumed gas: 0.010) [ 0x01 ] - - location: 110 (just consumed gas: 0.010, remaining gas: 1039800.438 units remaining) + - location: 110 (just consumed gas: 0.010) [ 0x02 0x01 ] - - location: 113 (just consumed gas: 0.035, remaining gas: 1039800.403 units remaining) + - location: 113 (just consumed gas: 0.035) [ 1 ] - - location: 115 (just consumed gas: 0.010, remaining gas: 1039800.393 units remaining) + - location: 115 (just consumed gas: 0.010) [ True ] - - location: 116 (just consumed gas: 0, remaining gas: 1039800.393 units remaining) + - location: 116 (just consumed gas: 0) [ ] - - location: 116 (just consumed gas: 0.015, remaining gas: 1039800.378 units remaining) + - location: 116 (just consumed gas: 0.015) [ ] - - location: 122 (just consumed gas: 0.010, remaining gas: 1039800.368 units remaining) + - location: 122 (just consumed gas: 0.010) [ 0x02 ] - - location: 125 (just consumed gas: 0.010, remaining gas: 1039800.358 units remaining) + - location: 125 (just consumed gas: 0.010) [ 0x01 0x02 ] - - location: 128 (just consumed gas: 0.035, remaining gas: 1039800.323 units remaining) + - location: 128 (just consumed gas: 0.035) [ -1 ] - - location: 130 (just consumed gas: 0.010, remaining gas: 1039800.313 units remaining) + - location: 130 (just consumed gas: 0.010) [ True ] - - location: 131 (just consumed gas: 0, remaining gas: 1039800.313 units remaining) + - location: 131 (just consumed gas: 0) [ ] - - location: 131 (just consumed gas: 0.015, remaining gas: 1039800.298 units remaining) + - location: 131 (just consumed gas: 0.015) [ ] - - location: 137 (just consumed gas: 0.010, remaining gas: 1039800.288 units remaining) + - location: 137 (just consumed gas: 0.010) [ 1 ] - - location: 140 (just consumed gas: 0.010, remaining gas: 1039800.278 units remaining) + - location: 140 (just consumed gas: 0.010) [ 1 1 ] - - location: 141 (just consumed gas: 0.035, remaining gas: 1039800.243 units remaining) + - location: 141 (just consumed gas: 0.035) [ 0 ] - - location: 143 (just consumed gas: 0.010, remaining gas: 1039800.233 units remaining) + - location: 143 (just consumed gas: 0.010) [ True ] - - location: 144 (just consumed gas: 0, remaining gas: 1039800.233 units remaining) + - location: 144 (just consumed gas: 0) [ ] - - location: 144 (just consumed gas: 0.015, remaining gas: 1039800.218 units remaining) + - location: 144 (just consumed gas: 0.015) [ ] - - location: 150 (just consumed gas: 0.010, remaining gas: 1039800.208 units remaining) + - location: 150 (just consumed gas: 0.010) [ 10 ] - - location: 153 (just consumed gas: 0.010, remaining gas: 1039800.198 units remaining) + - location: 153 (just consumed gas: 0.010) [ 5 10 ] - - location: 156 (just consumed gas: 0.035, remaining gas: 1039800.163 units remaining) + - location: 156 (just consumed gas: 0.035) [ -1 ] - - location: 158 (just consumed gas: 0.010, remaining gas: 1039800.153 units remaining) + - location: 158 (just consumed gas: 0.010) [ True ] - - location: 159 (just consumed gas: 0, remaining gas: 1039800.153 units remaining) + - location: 159 (just consumed gas: 0) [ ] - - location: 159 (just consumed gas: 0.015, remaining gas: 1039800.138 units remaining) + - location: 159 (just consumed gas: 0.015) [ ] - - location: 165 (just consumed gas: 0.010, remaining gas: 1039800.128 units remaining) + - location: 165 (just consumed gas: 0.010) [ -4 ] - - location: 168 (just consumed gas: 0.010, remaining gas: 1039800.118 units remaining) + - location: 168 (just consumed gas: 0.010) [ 1923 -4 ] - - location: 171 (just consumed gas: 0.035, remaining gas: 1039800.083 units remaining) + - location: 171 (just consumed gas: 0.035) [ 1 ] - - location: 173 (just consumed gas: 0.010, remaining gas: 1039800.073 units remaining) + - location: 173 (just consumed gas: 0.010) [ True ] - - location: 174 (just consumed gas: 0, remaining gas: 1039800.073 units remaining) + - location: 174 (just consumed gas: 0) [ ] - - location: 174 (just consumed gas: 0.015, remaining gas: 1039800.058 units remaining) + - location: 174 (just consumed gas: 0.015) [ ] - - location: 180 (just consumed gas: 0.010, remaining gas: 1039800.048 units remaining) + - location: 180 (just consumed gas: 0.010) [ 1 ] - - location: 183 (just consumed gas: 0.010, remaining gas: 1039800.038 units remaining) + - location: 183 (just consumed gas: 0.010) [ 1 1 ] - - location: 184 (just consumed gas: 0.035, remaining gas: 1039800.003 units remaining) + - location: 184 (just consumed gas: 0.035) [ 0 ] - - location: 186 (just consumed gas: 0.010, remaining gas: 1039799.993 units remaining) + - location: 186 (just consumed gas: 0.010) [ True ] - - location: 187 (just consumed gas: 0, remaining gas: 1039799.993 units remaining) + - location: 187 (just consumed gas: 0) [ ] - - location: 187 (just consumed gas: 0.015, remaining gas: 1039799.978 units remaining) + - location: 187 (just consumed gas: 0.015) [ ] - - location: 193 (just consumed gas: 0.010, remaining gas: 1039799.968 units remaining) + - location: 193 (just consumed gas: 0.010) [ 10 ] - - location: 196 (just consumed gas: 0.010, remaining gas: 1039799.958 units remaining) + - location: 196 (just consumed gas: 0.010) [ 5 10 ] - - location: 199 (just consumed gas: 0.035, remaining gas: 1039799.923 units remaining) + - location: 199 (just consumed gas: 0.035) [ -1 ] - - location: 201 (just consumed gas: 0.010, remaining gas: 1039799.913 units remaining) + - location: 201 (just consumed gas: 0.010) [ True ] - - location: 202 (just consumed gas: 0, remaining gas: 1039799.913 units remaining) + - location: 202 (just consumed gas: 0) [ ] - - location: 202 (just consumed gas: 0.015, remaining gas: 1039799.898 units remaining) + - location: 202 (just consumed gas: 0.015) [ ] - - location: 208 (just consumed gas: 0.010, remaining gas: 1039799.888 units remaining) + - location: 208 (just consumed gas: 0.010) [ 4 ] - - location: 211 (just consumed gas: 0.010, remaining gas: 1039799.878 units remaining) + - location: 211 (just consumed gas: 0.010) [ 1923 4 ] - - location: 214 (just consumed gas: 0.035, remaining gas: 1039799.843 units remaining) + - location: 214 (just consumed gas: 0.035) [ 1 ] - - location: 216 (just consumed gas: 0.010, remaining gas: 1039799.833 units remaining) + - location: 216 (just consumed gas: 0.010) [ True ] - - location: 217 (just consumed gas: 0, remaining gas: 1039799.833 units remaining) + - location: 217 (just consumed gas: 0) [ ] - - location: 217 (just consumed gas: 0.015, remaining gas: 1039799.818 units remaining) + - location: 217 (just consumed gas: 0.015) [ ] - - location: 223 (just consumed gas: 0.010, remaining gas: 1039799.808 units remaining) + - location: 223 (just consumed gas: 0.010) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 226 (just consumed gas: 0.010, remaining gas: 1039799.798 units remaining) + - location: 226 (just consumed gas: 0.010) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 227 (just consumed gas: 0.036, remaining gas: 1039799.762 units remaining) + - location: 227 (just consumed gas: 0.036) [ 0 ] - - location: 229 (just consumed gas: 0.010, remaining gas: 1039799.752 units remaining) + - location: 229 (just consumed gas: 0.010) [ True ] - - location: 230 (just consumed gas: 0, remaining gas: 1039799.752 units remaining) + - location: 230 (just consumed gas: 0) [ ] - - location: 230 (just consumed gas: 0.015, remaining gas: 1039799.737 units remaining) + - location: 230 (just consumed gas: 0.015) [ ] - - location: 236 (just consumed gas: 0.010, remaining gas: 1039799.727 units remaining) + - location: 236 (just consumed gas: 0.010) [ "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" ] - - location: 239 (just consumed gas: 0.010, remaining gas: 1039799.717 units remaining) + - location: 239 (just consumed gas: 0.010) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" ] - - location: 242 (just consumed gas: 0.036, remaining gas: 1039799.681 units remaining) + - location: 242 (just consumed gas: 0.036) [ -1 ] - - location: 244 (just consumed gas: 0.010, remaining gas: 1039799.671 units remaining) + - location: 244 (just consumed gas: 0.010) [ True ] - - location: 245 (just consumed gas: 0, remaining gas: 1039799.671 units remaining) + - location: 245 (just consumed gas: 0) [ ] - - location: 245 (just consumed gas: 0.015, remaining gas: 1039799.656 units remaining) + - location: 245 (just consumed gas: 0.015) [ ] - - location: 251 (just consumed gas: 0.010, remaining gas: 1039799.646 units remaining) + - location: 251 (just consumed gas: 0.010) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 254 (just consumed gas: 0.010, remaining gas: 1039799.636 units remaining) + - location: 254 (just consumed gas: 0.010) [ "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 257 (just consumed gas: 0.036, remaining gas: 1039799.600 units remaining) + - location: 257 (just consumed gas: 0.036) [ 1 ] - - location: 259 (just consumed gas: 0.010, remaining gas: 1039799.590 units remaining) + - location: 259 (just consumed gas: 0.010) [ True ] - - location: 260 (just consumed gas: 0, remaining gas: 1039799.590 units remaining) + - location: 260 (just consumed gas: 0) [ ] - - location: 260 (just consumed gas: 0.015, remaining gas: 1039799.575 units remaining) + - location: 260 (just consumed gas: 0.015) [ ] - - location: 266 (just consumed gas: 0.010, remaining gas: 1039799.565 units remaining) + - location: 266 (just consumed gas: 0.010) [ 1 ] - - location: 269 (just consumed gas: 0.010, remaining gas: 1039799.555 units remaining) + - location: 269 (just consumed gas: 0.010) [ 1 1 ] - - location: 270 (just consumed gas: 0.035, remaining gas: 1039799.520 units remaining) + - location: 270 (just consumed gas: 0.035) [ 0 ] - - location: 272 (just consumed gas: 0.010, remaining gas: 1039799.510 units remaining) + - location: 272 (just consumed gas: 0.010) [ True ] - - location: 273 (just consumed gas: 0, remaining gas: 1039799.510 units remaining) + - location: 273 (just consumed gas: 0) [ ] - - location: 273 (just consumed gas: 0.015, remaining gas: 1039799.495 units remaining) + - location: 273 (just consumed gas: 0.015) [ ] - - location: 279 (just consumed gas: 0.010, remaining gas: 1039799.485 units remaining) + - location: 279 (just consumed gas: 0.010) [ 10 ] - - location: 282 (just consumed gas: 0.010, remaining gas: 1039799.475 units remaining) + - location: 282 (just consumed gas: 0.010) [ 5 10 ] - - location: 285 (just consumed gas: 0.035, remaining gas: 1039799.440 units remaining) + - location: 285 (just consumed gas: 0.035) [ -1 ] - - location: 287 (just consumed gas: 0.010, remaining gas: 1039799.430 units remaining) + - location: 287 (just consumed gas: 0.010) [ True ] - - location: 288 (just consumed gas: 0, remaining gas: 1039799.430 units remaining) + - location: 288 (just consumed gas: 0) [ ] - - location: 288 (just consumed gas: 0.015, remaining gas: 1039799.415 units remaining) + - location: 288 (just consumed gas: 0.015) [ ] - - location: 294 (just consumed gas: 0.010, remaining gas: 1039799.405 units remaining) + - location: 294 (just consumed gas: 0.010) [ 4 ] - - location: 297 (just consumed gas: 0.010, remaining gas: 1039799.395 units remaining) + - location: 297 (just consumed gas: 0.010) [ 1923 4 ] - - location: 300 (just consumed gas: 0.035, remaining gas: 1039799.360 units remaining) + - location: 300 (just consumed gas: 0.035) [ 1 ] - - location: 302 (just consumed gas: 0.010, remaining gas: 1039799.350 units remaining) + - location: 302 (just consumed gas: 0.010) [ True ] - - location: 303 (just consumed gas: 0, remaining gas: 1039799.350 units remaining) + - location: 303 (just consumed gas: 0) [ ] - - location: 303 (just consumed gas: 0.015, remaining gas: 1039799.335 units remaining) + - location: 303 (just consumed gas: 0.015) [ ] - - location: 309 (just consumed gas: 0.010, remaining gas: 1039799.325 units remaining) + - location: 309 (just consumed gas: 0.010) [ "AABBCC" ] - - location: 312 (just consumed gas: 0.010, remaining gas: 1039799.315 units remaining) + - location: 312 (just consumed gas: 0.010) [ "AABBCC" "AABBCC" ] - - location: 313 (just consumed gas: 0.035, remaining gas: 1039799.280 units remaining) + - location: 313 (just consumed gas: 0.035) [ 0 ] - - location: 315 (just consumed gas: 0.010, remaining gas: 1039799.270 units remaining) + - location: 315 (just consumed gas: 0.010) [ True ] - - location: 316 (just consumed gas: 0, remaining gas: 1039799.270 units remaining) + - location: 316 (just consumed gas: 0) [ ] - - location: 316 (just consumed gas: 0.015, remaining gas: 1039799.255 units remaining) + - location: 316 (just consumed gas: 0.015) [ ] - - location: 322 (just consumed gas: 0.010, remaining gas: 1039799.245 units remaining) + - location: 322 (just consumed gas: 0.010) [ "" ] - - location: 325 (just consumed gas: 0.010, remaining gas: 1039799.235 units remaining) + - location: 325 (just consumed gas: 0.010) [ "" "" ] - - location: 328 (just consumed gas: 0.035, remaining gas: 1039799.200 units remaining) + - location: 328 (just consumed gas: 0.035) [ 0 ] - - location: 330 (just consumed gas: 0.010, remaining gas: 1039799.190 units remaining) + - location: 330 (just consumed gas: 0.010) [ True ] - - location: 331 (just consumed gas: 0, remaining gas: 1039799.190 units remaining) + - location: 331 (just consumed gas: 0) [ ] - - location: 331 (just consumed gas: 0.015, remaining gas: 1039799.175 units remaining) + - location: 331 (just consumed gas: 0.015) [ ] - - location: 337 (just consumed gas: 0.010, remaining gas: 1039799.165 units remaining) + - location: 337 (just consumed gas: 0.010) [ "" ] - - location: 340 (just consumed gas: 0.010, remaining gas: 1039799.155 units remaining) + - location: 340 (just consumed gas: 0.010) [ "a" "" ] - - location: 343 (just consumed gas: 0.035, remaining gas: 1039799.120 units remaining) + - location: 343 (just consumed gas: 0.035) [ 1 ] - - location: 345 (just consumed gas: 0.010, remaining gas: 1039799.110 units remaining) + - location: 345 (just consumed gas: 0.010) [ True ] - - location: 346 (just consumed gas: 0, remaining gas: 1039799.110 units remaining) + - location: 346 (just consumed gas: 0) [ ] - - location: 346 (just consumed gas: 0.015, remaining gas: 1039799.095 units remaining) + - location: 346 (just consumed gas: 0.015) [ ] - - location: 352 (just consumed gas: 0.010, remaining gas: 1039799.085 units remaining) + - location: 352 (just consumed gas: 0.010) [ "a" ] - - location: 355 (just consumed gas: 0.010, remaining gas: 1039799.075 units remaining) + - location: 355 (just consumed gas: 0.010) [ "b" "a" ] - - location: 358 (just consumed gas: 0.035, remaining gas: 1039799.040 units remaining) + - location: 358 (just consumed gas: 0.035) [ 1 ] - - location: 360 (just consumed gas: 0.010, remaining gas: 1039799.030 units remaining) + - location: 360 (just consumed gas: 0.010) [ True ] - - location: 361 (just consumed gas: 0, remaining gas: 1039799.030 units remaining) + - location: 361 (just consumed gas: 0) [ ] - - location: 361 (just consumed gas: 0.015, remaining gas: 1039799.015 units remaining) + - location: 361 (just consumed gas: 0.015) [ ] - - location: 367 (just consumed gas: 0.010, remaining gas: 1039799.005 units remaining) + - location: 367 (just consumed gas: 0.010) [ "b" ] - - location: 370 (just consumed gas: 0.010, remaining gas: 1039798.995 units remaining) + - location: 370 (just consumed gas: 0.010) [ "a" "b" ] - - location: 373 (just consumed gas: 0.035, remaining gas: 1039798.960 units remaining) + - location: 373 (just consumed gas: 0.035) [ -1 ] - - location: 375 (just consumed gas: 0.010, remaining gas: 1039798.950 units remaining) + - location: 375 (just consumed gas: 0.010) [ True ] - - location: 376 (just consumed gas: 0, remaining gas: 1039798.950 units remaining) + - location: 376 (just consumed gas: 0) [ ] - - location: 376 (just consumed gas: 0.015, remaining gas: 1039798.935 units remaining) + - location: 376 (just consumed gas: 0.015) [ ] - - location: 382 (just consumed gas: 0.010, remaining gas: 1039798.925 units remaining) + - location: 382 (just consumed gas: 0.010) [ "2019-09-16T08:38:05Z" ] - - location: 385 (just consumed gas: 0.010, 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 (just consumed gas: 0.035, remaining gas: 1039798.880 units remaining) + - location: 386 (just consumed gas: 0.035) [ 0 ] - - location: 388 (just consumed gas: 0.010, remaining gas: 1039798.870 units remaining) + - location: 388 (just consumed gas: 0.010) [ True ] - - location: 389 (just consumed gas: 0, remaining gas: 1039798.870 units remaining) + - location: 389 (just consumed gas: 0) [ ] - - location: 389 (just consumed gas: 0.015, remaining gas: 1039798.855 units remaining) + - location: 389 (just consumed gas: 0.015) [ ] - - location: 395 (just consumed gas: 0.010, remaining gas: 1039798.845 units remaining) + - location: 395 (just consumed gas: 0.010) [ "2017-09-16T08:38:04Z" ] - - location: 398 (just consumed gas: 0.010, 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 (just consumed gas: 0.035, remaining gas: 1039798.800 units remaining) + - location: 401 (just consumed gas: 0.035) [ 1 ] - - location: 403 (just consumed gas: 0.010, remaining gas: 1039798.790 units remaining) + - location: 403 (just consumed gas: 0.010) [ True ] - - location: 404 (just consumed gas: 0, remaining gas: 1039798.790 units remaining) + - location: 404 (just consumed gas: 0) [ ] - - location: 404 (just consumed gas: 0.015, remaining gas: 1039798.775 units remaining) + - location: 404 (just consumed gas: 0.015) [ ] - - location: 410 (just consumed gas: 0.010, remaining gas: 1039798.765 units remaining) + - location: 410 (just consumed gas: 0.010) [ "2019-09-16T08:38:05Z" ] - - location: 413 (just consumed gas: 0.010, 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 (just consumed gas: 0.035, remaining gas: 1039798.720 units remaining) + - location: 416 (just consumed gas: 0.035) [ -1 ] - - location: 418 (just consumed gas: 0.010, remaining gas: 1039798.710 units remaining) + - location: 418 (just consumed gas: 0.010) [ True ] - - location: 419 (just consumed gas: 0, remaining gas: 1039798.710 units remaining) + - location: 419 (just consumed gas: 0) [ ] - - location: 419 (just consumed gas: 0.015, remaining gas: 1039798.695 units remaining) + - location: 419 (just consumed gas: 0.015) [ ] - - location: 425 (just consumed gas: 0.010, remaining gas: 1039798.685 units remaining) + - location: 425 (just consumed gas: 0.010) [ Unit ] - - location: 426 (just consumed gas: 0.010, remaining gas: 1039798.675 units remaining) + - location: 426 (just consumed gas: 0.010) [ {} Unit ] - - location: 428 (just consumed gas: 0.010, 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 3834dd947743..3445f9d423cb 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 (just consumed gas: 29.633, remaining gas: 1039970.367 units remaining) + - location: 10 (just consumed gas: 29.633) [ (Pair { -9999999 ; -1 ; 0 ; 1 ; 9999999 } {}) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039970.357 units remaining) + - location: 10 (just consumed gas: 0.010) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039970.347 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 14 (just consumed gas: 0, remaining gas: 1039970.347 units remaining) + - location: 14 (just consumed gas: 0) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039970.337 units remaining) + - location: 17 (just consumed gas: 0) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039970.327 units remaining) + - location: 19 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039970.312 units remaining) + - location: 17 (just consumed gas: 0.015) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039970.302 units remaining) + - location: 19 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039970.287 units remaining) + - location: 17 (just consumed gas: 0.015) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039970.277 units remaining) + - location: 19 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039970.262 units remaining) + - location: 17 (just consumed gas: 0.015) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039970.252 units remaining) + - location: 19 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039970.237 units remaining) + - location: 17 (just consumed gas: 0.015) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039970.227 units remaining) + - location: 19 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (just consumed gas: 0.015, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039970.167 units remaining) + - location: 22 (just consumed gas: 0) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 24 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039970.157 units remaining) + - location: 25 (just consumed gas: 0) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039970.147 units remaining) + - location: 27 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (just consumed gas: 0.015, remaining gas: 1039970.132 units remaining) + - location: 25 (just consumed gas: 0.015) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039970.122 units remaining) + - location: 27 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (just consumed gas: 0.015, remaining gas: 1039970.107 units remaining) + - location: 25 (just consumed gas: 0.015) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039970.097 units remaining) + - location: 27 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (just consumed gas: 0.015, remaining gas: 1039970.082 units remaining) + - location: 25 (just consumed gas: 0.015) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039970.072 units remaining) + - location: 27 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (just consumed gas: 0.015, remaining gas: 1039970.057 units remaining) + - location: 25 (just consumed gas: 0.015) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039970.047 units remaining) + - location: 27 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (just consumed gas: 0.015, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039969.987 units remaining) + - location: 30 (just consumed gas: 0) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 32 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039969.977 units remaining) + - location: 33 (just consumed gas: 0) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039969.967 units remaining) + - location: 35 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (just consumed gas: 0.015, remaining gas: 1039969.952 units remaining) + - location: 33 (just consumed gas: 0.015) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039969.942 units remaining) + - location: 35 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (just consumed gas: 0.015, remaining gas: 1039969.927 units remaining) + - location: 33 (just consumed gas: 0.015) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039969.917 units remaining) + - location: 35 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (just consumed gas: 0.015, remaining gas: 1039969.902 units remaining) + - location: 33 (just consumed gas: 0.015) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039969.892 units remaining) + - location: 35 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (just consumed gas: 0.015, remaining gas: 1039969.877 units remaining) + - location: 33 (just consumed gas: 0.015) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039969.867 units remaining) + - location: 35 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (just consumed gas: 0.015, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039969.807 units remaining) + - location: 38 (just consumed gas: 0) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 40 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039969.797 units remaining) + - location: 41 (just consumed gas: 0) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (just consumed gas: 0.010, remaining gas: 1039969.787 units remaining) + - location: 43 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (just consumed gas: 0.015, remaining gas: 1039969.772 units remaining) + - location: 41 (just consumed gas: 0.015) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (just consumed gas: 0.010, remaining gas: 1039969.762 units remaining) + - location: 43 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (just consumed gas: 0.015, remaining gas: 1039969.747 units remaining) + - location: 41 (just consumed gas: 0.015) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (just consumed gas: 0.010, remaining gas: 1039969.737 units remaining) + - location: 43 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (just consumed gas: 0.015, remaining gas: 1039969.722 units remaining) + - location: 41 (just consumed gas: 0.015) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (just consumed gas: 0.010, remaining gas: 1039969.712 units remaining) + - location: 43 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (just consumed gas: 0.015, remaining gas: 1039969.697 units remaining) + - location: 41 (just consumed gas: 0.015) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (just consumed gas: 0.010, remaining gas: 1039969.687 units remaining) + - location: 43 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (just consumed gas: 0.015, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039969.627 units remaining) + - location: 46 (just consumed gas: 0) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 48 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039969.617 units remaining) + - location: 49 (just consumed gas: 0) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (just consumed gas: 0.010, remaining gas: 1039969.607 units remaining) + - location: 51 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (just consumed gas: 0.015, remaining gas: 1039969.592 units remaining) + - location: 49 (just consumed gas: 0.015) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (just consumed gas: 0.010, remaining gas: 1039969.582 units remaining) + - location: 51 (just consumed gas: 0.010) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (just consumed gas: 0.015, remaining gas: 1039969.567 units remaining) + - location: 49 (just consumed gas: 0.015) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (just consumed gas: 0.010, remaining gas: 1039969.557 units remaining) + - location: 51 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (just consumed gas: 0.015, remaining gas: 1039969.542 units remaining) + - location: 49 (just consumed gas: 0.015) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (just consumed gas: 0.010, remaining gas: 1039969.532 units remaining) + - location: 51 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (just consumed gas: 0.015, remaining gas: 1039969.517 units remaining) + - location: 49 (just consumed gas: 0.015) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (just consumed gas: 0.010, remaining gas: 1039969.507 units remaining) + - location: 51 (just consumed gas: 0.010) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (just consumed gas: 0.015, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039969.447 units remaining) + - location: 54 (just consumed gas: 0) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 56 (just consumed gas: 0, remaining gas: 1039969.447 units remaining) + - location: 56 (just consumed gas: 0) [ -9999999 ] - - location: 58 (just consumed gas: 0.010, remaining gas: 1039969.437 units remaining) + - location: 58 (just consumed gas: 0.010) [ False ] - - location: 56 (just consumed gas: 0.015, remaining gas: 1039969.422 units remaining) + - location: 56 (just consumed gas: 0.015) [ -1 ] - - location: 58 (just consumed gas: 0.010, remaining gas: 1039969.412 units remaining) + - location: 58 (just consumed gas: 0.010) [ False ] - - location: 56 (just consumed gas: 0.015, remaining gas: 1039969.397 units remaining) + - location: 56 (just consumed gas: 0.015) [ 0 ] - - location: 58 (just consumed gas: 0.010, remaining gas: 1039969.387 units remaining) + - location: 58 (just consumed gas: 0.010) [ False ] - - location: 56 (just consumed gas: 0.015, remaining gas: 1039969.372 units remaining) + - location: 56 (just consumed gas: 0.015) [ 1 ] - - location: 58 (just consumed gas: 0.010, remaining gas: 1039969.362 units remaining) + - location: 58 (just consumed gas: 0.010) [ True ] - - location: 56 (just consumed gas: 0.015, remaining gas: 1039969.347 units remaining) + - location: 56 (just consumed gas: 0.015) [ 9999999 ] - - location: 58 (just consumed gas: 0.010, remaining gas: 1039969.337 units remaining) + - location: 58 (just consumed gas: 0.010) [ True ] - - location: 56 (just consumed gas: 0.015, remaining gas: 1039969.322 units remaining) + - location: 56 (just consumed gas: 0.015) [ { False ; False ; False ; True ; True } ] - - location: 54 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 2cab28e920fb..1eba9a39c8f7 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 (just consumed gas: 6.615, remaining gas: 1039993.385 units remaining) + - location: 9 (just consumed gas: 6.615) [ (Pair { "World!" } {}) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.375 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "World!" } ] - - location: 10 (just consumed gas: 0, remaining gas: 1039993.375 units remaining) + - location: 10 (just consumed gas: 0) [ "World!" ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.365 units remaining) + - location: 12 (just consumed gas: 0.010) [ "Hello " "World!" ] - - location: 15 (just consumed gas: 0.051, remaining gas: 1039993.314 units remaining) + - location: 15 (just consumed gas: 0.051) [ "Hello World!" ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.299 units remaining) + - location: 10 (just consumed gas: 0.015) [ { "Hello World!" } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.289 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} { "Hello World!" } ] - - location: 18 (just consumed gas: 0.010, 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 f11adca5550e..ee43f43d076f 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 (just consumed gas: 6.769, remaining gas: 1039993.231 units remaining) + - location: 9 (just consumed gas: 6.769) [ (Pair { "test1" ; "test2" } {}) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.221 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "test1" ; "test2" } ] - - location: 10 (just consumed gas: 0, remaining gas: 1039993.221 units remaining) + - location: 10 (just consumed gas: 0) [ "test1" ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.211 units remaining) + - location: 12 (just consumed gas: 0.010) [ "Hello " "test1" ] - - location: 15 (just consumed gas: 0.050, remaining gas: 1039993.161 units remaining) + - location: 15 (just consumed gas: 0.050) [ "Hello test1" ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.146 units remaining) + - location: 10 (just consumed gas: 0.015) [ "test2" ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.136 units remaining) + - location: 12 (just consumed gas: 0.010) [ "Hello " "test2" ] - - location: 15 (just consumed gas: 0.050, remaining gas: 1039993.086 units remaining) + - location: 15 (just consumed gas: 0.050) [ "Hello test2" ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.071 units remaining) + - location: 10 (just consumed gas: 0.015) [ { "Hello test1" ; "Hello test2" } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.061 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} { "Hello test1" ; "Hello test2" } ] - - location: 18 (just consumed gas: 0.010, 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 70e22dd4f843..bc60b8bd203a 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 (just consumed gas: 6.441, remaining gas: 1039993.559 units remaining) + - location: 9 (just consumed gas: 6.441) [ (Pair {} {}) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.549 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (just consumed gas: 0, remaining gas: 1039993.549 units remaining) + - location: 10 (just consumed gas: 0) [ {} ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.539 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 18 (just consumed gas: 0.010, 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 b59af74950ab..147bd1ee5569 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 (just consumed gas: 6.522, remaining gas: 1039993.478 units remaining) + - location: 9 (just consumed gas: 6.522) [ (Pair { 0xab ; 0xcd } {}) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.468 units remaining) + - location: 9 (just consumed gas: 0.010) [ { 0xab ; 0xcd } ] - - location: 10 (just consumed gas: 0, remaining gas: 1039993.468 units remaining) + - location: 10 (just consumed gas: 0) [ 0xab ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.458 units remaining) + - location: 12 (just consumed gas: 0.010) [ 0xff 0xab ] - - location: 15 (just consumed gas: 0.046, remaining gas: 1039993.412 units remaining) + - location: 15 (just consumed gas: 0.046) [ 0xffab ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.397 units remaining) + - location: 10 (just consumed gas: 0.015) [ 0xcd ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.387 units remaining) + - location: 12 (just consumed gas: 0.010) [ 0xff 0xcd ] - - location: 15 (just consumed gas: 0.046, remaining gas: 1039993.341 units remaining) + - location: 15 (just consumed gas: 0.046) [ 0xffcd ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.326 units remaining) + - location: 10 (just consumed gas: 0.015) [ { 0xffab ; 0xffcd } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.316 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} { 0xffab ; 0xffcd } ] - - location: 18 (just consumed gas: 0.010, 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 6f8dfc3a1fb0..d89a534f3583 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 (just consumed gas: 6.422, remaining gas: 1039993.578 units remaining) + - location: 9 (just consumed gas: 6.422) [ (Pair { 0xcd } {}) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.568 units remaining) + - location: 9 (just consumed gas: 0.010) [ { 0xcd } ] - - location: 10 (just consumed gas: 0, remaining gas: 1039993.568 units remaining) + - location: 10 (just consumed gas: 0) [ 0xcd ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.558 units remaining) + - location: 12 (just consumed gas: 0.010) [ 0xff 0xcd ] - - location: 15 (just consumed gas: 0.046, remaining gas: 1039993.512 units remaining) + - location: 15 (just consumed gas: 0.046) [ 0xffcd ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.497 units remaining) + - location: 10 (just consumed gas: 0.015) [ { 0xffcd } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.487 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} { 0xffcd } ] - - location: 18 (just consumed gas: 0.010, 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 903590740f4d..321b2a968804 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 (just consumed gas: 6.322, remaining gas: 1039993.678 units remaining) + - location: 9 (just consumed gas: 6.322) [ (Pair {} {}) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.668 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (just consumed gas: 0, remaining gas: 1039993.668 units remaining) + - location: 10 (just consumed gas: 0) [ {} ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.658 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 18 (just consumed gas: 0.010, 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 eed6e2c357b5..856b6ea73af6 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 (just consumed gas: 11.068, remaining gas: 1039988.932 units remaining) + - location: 8 (just consumed gas: 11.068) [ (Pair { "Hello" ; " " ; "World" ; "!" } "") ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039988.922 units remaining) + - location: 8 (just consumed gas: 0.010) [ { "Hello" ; " " ; "World" ; "!" } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039988.912 units remaining) + - location: 9 (just consumed gas: 0.010) [ "" { "Hello" ; " " ; "World" ; "!" } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039988.902 units remaining) + - location: 12 (just consumed gas: 0.010) [ { "Hello" ; " " ; "World" ; "!" } "" ] - - location: 13 (just consumed gas: 0, remaining gas: 1039988.902 units remaining) + - location: 13 (just consumed gas: 0) [ "Hello" "" ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.892 units remaining) + - location: 15 (just consumed gas: 0.010) [ "" "Hello" ] - - location: 16 (just consumed gas: 0, remaining gas: 1039988.892 units remaining) + - location: 16 (just consumed gas: 0) [ "Hello" ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.882 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} "Hello" ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.872 units remaining) + - location: 20 (just consumed gas: 0.010) [ "Hello" {} ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.862 units remaining) + - location: 21 (just consumed gas: 0.010) [ { "Hello" } ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039988.837 units remaining) + - location: 16 (just consumed gas: 0.025) [ "" { "Hello" } ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.827 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "" ; "Hello" } ] - - location: 23 (just consumed gas: 0.122, remaining gas: 1039988.705 units remaining) + - location: 23 (just consumed gas: 0.122) [ "Hello" ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.690 units remaining) + - location: 13 (just consumed gas: 0.015) [ " " "Hello" ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.680 units remaining) + - location: 15 (just consumed gas: 0.010) [ "Hello" " " ] - - location: 16 (just consumed gas: 0, remaining gas: 1039988.680 units remaining) + - location: 16 (just consumed gas: 0) [ " " ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.670 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} " " ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.660 units remaining) + - location: 20 (just consumed gas: 0.010) [ " " {} ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.650 units remaining) + - location: 21 (just consumed gas: 0.010) [ { " " } ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039988.625 units remaining) + - location: 16 (just consumed gas: 0.025) [ "Hello" { " " } ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.615 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "Hello" ; " " } ] - - location: 23 (just consumed gas: 0.123, remaining gas: 1039988.492 units remaining) + - location: 23 (just consumed gas: 0.123) [ "Hello " ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.477 units remaining) + - location: 13 (just consumed gas: 0.015) [ "World" "Hello " ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.467 units remaining) + - location: 15 (just consumed gas: 0.010) [ "Hello " "World" ] - - location: 16 (just consumed gas: 0, remaining gas: 1039988.467 units remaining) + - location: 16 (just consumed gas: 0) [ "World" ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.457 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} "World" ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.447 units remaining) + - location: 20 (just consumed gas: 0.010) [ "World" {} ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.437 units remaining) + - location: 21 (just consumed gas: 0.010) [ { "World" } ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039988.412 units remaining) + - location: 16 (just consumed gas: 0.025) [ "Hello " { "World" } ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.402 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "Hello " ; "World" } ] - - location: 23 (just consumed gas: 0.125, remaining gas: 1039988.277 units remaining) + - location: 23 (just consumed gas: 0.125) [ "Hello World" ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.262 units remaining) + - location: 13 (just consumed gas: 0.015) [ "!" "Hello World" ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.252 units remaining) + - location: 15 (just consumed gas: 0.010) [ "Hello World" "!" ] - - location: 16 (just consumed gas: 0, remaining gas: 1039988.252 units remaining) + - location: 16 (just consumed gas: 0) [ "!" ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.242 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} "!" ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.232 units remaining) + - location: 20 (just consumed gas: 0.010) [ "!" {} ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.222 units remaining) + - location: 21 (just consumed gas: 0.010) [ { "!" } ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039988.197 units remaining) + - location: 16 (just consumed gas: 0.025) [ "Hello World" { "!" } ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.187 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "Hello World" ; "!" } ] - - location: 23 (just consumed gas: 0.126, remaining gas: 1039988.061 units remaining) + - location: 23 (just consumed gas: 0.126) [ "Hello World!" ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.046 units remaining) + - location: 13 (just consumed gas: 0.015) [ "Hello World!" ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.036 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} "Hello World!" ] - - location: 26 (just consumed gas: 0.010, 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 9ad4657c3c50..560f54049518 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 (just consumed gas: 10.864, remaining gas: 1039989.136 units remaining) + - location: 8 (just consumed gas: 10.864) [ (Pair { "a" ; "b" ; "c" } "") ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.126 units remaining) + - location: 8 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.116 units remaining) + - location: 9 (just consumed gas: 0.010) [ "" { "a" ; "b" ; "c" } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.106 units remaining) + - location: 12 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } "" ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.106 units remaining) + - location: 13 (just consumed gas: 0) [ "a" "" ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.096 units remaining) + - location: 15 (just consumed gas: 0.010) [ "" "a" ] - - location: 16 (just consumed gas: 0, remaining gas: 1039989.096 units remaining) + - location: 16 (just consumed gas: 0) [ "a" ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.086 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} "a" ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.076 units remaining) + - location: 20 (just consumed gas: 0.010) [ "a" {} ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.066 units remaining) + - location: 21 (just consumed gas: 0.010) [ { "a" } ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039989.041 units remaining) + - location: 16 (just consumed gas: 0.025) [ "" { "a" } ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039989.031 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "" ; "a" } ] - - location: 23 (just consumed gas: 0.120, remaining gas: 1039988.911 units remaining) + - location: 23 (just consumed gas: 0.120) [ "a" ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.896 units remaining) + - location: 13 (just consumed gas: 0.015) [ "b" "a" ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.886 units remaining) + - location: 15 (just consumed gas: 0.010) [ "a" "b" ] - - location: 16 (just consumed gas: 0, remaining gas: 1039988.886 units remaining) + - location: 16 (just consumed gas: 0) [ "b" ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.876 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} "b" ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.866 units remaining) + - location: 20 (just consumed gas: 0.010) [ "b" {} ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.856 units remaining) + - location: 21 (just consumed gas: 0.010) [ { "b" } ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039988.831 units remaining) + - location: 16 (just consumed gas: 0.025) [ "a" { "b" } ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.821 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "a" ; "b" } ] - - location: 23 (just consumed gas: 0.121, remaining gas: 1039988.700 units remaining) + - location: 23 (just consumed gas: 0.121) [ "ab" ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.685 units remaining) + - location: 13 (just consumed gas: 0.015) [ "c" "ab" ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.675 units remaining) + - location: 15 (just consumed gas: 0.010) [ "ab" "c" ] - - location: 16 (just consumed gas: 0, remaining gas: 1039988.675 units remaining) + - location: 16 (just consumed gas: 0) [ "c" ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.665 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} "c" ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.655 units remaining) + - location: 20 (just consumed gas: 0.010) [ "c" {} ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.645 units remaining) + - location: 21 (just consumed gas: 0.010) [ { "c" } ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039988.620 units remaining) + - location: 16 (just consumed gas: 0.025) [ "ab" { "c" } ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.610 units remaining) + - location: 22 (just consumed gas: 0.010) [ { "ab" ; "c" } ] - - location: 23 (just consumed gas: 0.121, remaining gas: 1039988.489 units remaining) + - location: 23 (just consumed gas: 0.121) [ "abc" ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039988.474 units remaining) + - location: 13 (just consumed gas: 0.015) [ "abc" ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.464 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} "abc" ] - - location: 26 (just consumed gas: 0.010, 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 e19ad967c791..3b021c432236 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 (just consumed gas: 10.492, remaining gas: 1039989.508 units remaining) + - location: 8 (just consumed gas: 10.492) [ (Pair {} "") ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.498 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.488 units remaining) + - location: 9 (just consumed gas: 0.010) [ "" {} ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.478 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} "" ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.478 units remaining) + - location: 13 (just consumed gas: 0) [ "" ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039989.468 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} "" ] - - location: 26 (just consumed gas: 0.010, 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 dc62e3235b23..873fb9e7520f 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 (just consumed gas: 4.760, remaining gas: 1039995.240 units remaining) + - location: 8 (just consumed gas: 4.760) [ (Pair 99 { -5 ; 10 }) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.230 units remaining) + - location: 8 (just consumed gas: 0.010) [ 99 { -5 ; 10 } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.220 units remaining) + - location: 9 (just consumed gas: 0.010) [ { 99 ; -5 ; 10 } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.210 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { 99 ; -5 ; 10 } ] - - location: 12 (just consumed gas: 0.010, 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 b836ffb16be4..c7bb49bdee3b 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 (just consumed gas: 4.660, remaining gas: 1039995.340 units remaining) + - location: 8 (just consumed gas: 4.660) [ (Pair -5 { 10 }) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.330 units remaining) + - location: 8 (just consumed gas: 0.010) [ -5 { 10 } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.320 units remaining) + - location: 9 (just consumed gas: 0.010) [ { -5 ; 10 } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.310 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { -5 ; 10 } ] - - location: 12 (just consumed gas: 0.010, 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 8ac70d445bf7..a18c521fe67e 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 (just consumed gas: 4.560, remaining gas: 1039995.440 units remaining) + - location: 8 (just consumed gas: 4.560) [ (Pair 10 {}) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.430 units remaining) + - location: 8 (just consumed gas: 0.010) [ 10 {} ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.420 units remaining) + - location: 9 (just consumed gas: 0.010) [ { 10 } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.410 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { 10 } ] - - location: 12 (just consumed gas: 0.010, 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 4dc426a34eab..c90b4914660a 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 (just consumed gas: 32.251, remaining gas: 1039967.749 units remaining) + - location: 12 (just consumed gas: 32.251) [ (Pair (Pair { "A" } { "B" }) None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039967.739 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { "A" } { "B" }) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039967.729 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair { "A" } { "B" }) (Pair { "A" } { "B" }) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039967.719 units remaining) + - location: 14 (just consumed gas: 0.010) [ { "A" } (Pair { "A" } { "B" }) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039967.719 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair { "A" } { "B" }) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039967.709 units remaining) + - location: 17 (just consumed gas: 0.010) [ { "B" } ] - - location: 15 (just consumed gas: 0.025, remaining gas: 1039967.684 units remaining) + - location: 15 (just consumed gas: 0.025) [ { "A" } { "B" } ] - - location: 18 (just consumed gas: 0.300, remaining gas: 1039967.384 units remaining) + - location: 18 (just consumed gas: 0.300) [ {} { "A" } { "B" } ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039967.374 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "A" } {} { "B" } ] - - location: 21 (just consumed gas: 0, remaining gas: 1039967.374 units remaining) + - location: 21 (just consumed gas: 0) [ "A" {} { "B" } ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039967.364 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "A" {}) { "B" } ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039967.354 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "A" {}) (Pair "A" {}) { "B" } ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039967.344 units remaining) + - location: 25 (just consumed gas: 0.010) [ "A" (Pair "A" {}) { "B" } ] - - location: 26 (just consumed gas: 0, remaining gas: 1039967.344 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "A" {}) { "B" } ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039967.334 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} { "B" } ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039967.309 units remaining) + - location: 26 (just consumed gas: 0.025) [ "A" {} { "B" } ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039967.299 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "A" {} { "B" } ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039967.289 units remaining) + - location: 32 (just consumed gas: 0.010) [ "A" True {} { "B" } ] - - location: 33 (just consumed gas: 0.132, remaining gas: 1039967.157 units remaining) + - location: 33 (just consumed gas: 0.132) [ { "A" } { "B" } ] - - location: 21 (just consumed gas: 0.015, remaining gas: 1039967.142 units remaining) + - location: 21 (just consumed gas: 0.015) [ { "A" } { "B" } ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039967.132 units remaining) + - location: 34 (just consumed gas: 0.010) [ True { "A" } { "B" } ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039967.122 units remaining) + - location: 37 (just consumed gas: 0.010) [ { "A" } True { "B" } ] - - location: 38 (just consumed gas: 0.010, remaining gas: 1039967.112 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair { "A" } True) { "B" } ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039967.102 units remaining) + - location: 39 (just consumed gas: 0.010) [ { "B" } (Pair { "A" } True) ] - - location: 40 (just consumed gas: 0, remaining gas: 1039967.102 units remaining) + - location: 40 (just consumed gas: 0) [ "B" (Pair { "A" } True) ] - - location: 42 (just consumed gas: 0.010, remaining gas: 1039967.092 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "B" { "A" } True) ] - - location: 43 (just consumed gas: 0.010, remaining gas: 1039967.082 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 44 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039967.062 units remaining) + - location: 45 (just consumed gas: 0.010) [ "B" (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 46 (just consumed gas: 0, remaining gas: 1039967.062 units remaining) + - location: 46 (just consumed gas: 0) [ (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 49 (just consumed gas: 0.010, remaining gas: 1039967.052 units remaining) + - location: 49 (just consumed gas: 0.010) [ (Pair { "A" } True) (Pair "B" { "A" } True) ] - - location: 50 (just consumed gas: 0.010, remaining gas: 1039967.042 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "A" } (Pair "B" { "A" } True) ] - - location: 51 (just consumed gas: 0, remaining gas: 1039967.042 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "B" { "A" } True) ] - - location: 54 (just consumed gas: 0.010, remaining gas: 1039967.032 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "A" } True) ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039967.022 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (just consumed gas: 0.025, remaining gas: 1039966.997 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "A" } True ] - - location: 56 (just consumed gas: 0.010, remaining gas: 1039966.987 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "A" } { "A" } True ] - - location: 46 (just consumed gas: 0.025, remaining gas: 1039966.962 units remaining) + - location: 46 (just consumed gas: 0.025) [ "B" { "A" } { "A" } True ] - - location: 57 (just consumed gas: 0.117, remaining gas: 1039966.845 units remaining) + - location: 57 (just consumed gas: 0.117) [ False { "A" } True ] - - location: 58 (just consumed gas: 0, remaining gas: 1039966.845 units remaining) + - location: 58 (just consumed gas: 0) [ { "A" } True ] - - location: 60 (just consumed gas: 0.010, remaining gas: 1039966.835 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "A" } ] - - location: 58 (just consumed gas: 0.025, remaining gas: 1039966.810 units remaining) + - location: 58 (just consumed gas: 0.025) [ False True { "A" } ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039966.800 units remaining) + - location: 61 (just consumed gas: 0.010) [ False { "A" } ] - - location: 62 (just consumed gas: 0.010, remaining gas: 1039966.790 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "A" } False ] - - location: 63 (just consumed gas: 0.010, remaining gas: 1039966.780 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "A" } False) ] - - location: 40 (just consumed gas: 0.015, remaining gas: 1039966.765 units remaining) + - location: 40 (just consumed gas: 0.015) [ (Pair { "A" } False) ] - - location: 64 (just consumed gas: 0.010, remaining gas: 1039966.755 units remaining) + - location: 64 (just consumed gas: 0.010) [ False ] - - location: 65 (just consumed gas: 0.010, remaining gas: 1039966.745 units remaining) + - location: 65 (just consumed gas: 0.010) [ (Some False) ] - - location: 66 (just consumed gas: 0.010, remaining gas: 1039966.735 units remaining) + - location: 66 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 68 (just consumed gas: 0.010, 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 d782cb8917a2..9e0bcb533598 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 (just consumed gas: 32.931, 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 (just consumed gas: 0.010, remaining gas: 1039967.059 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 13 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039967.039 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039967.029 units remaining) + - location: 17 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } ] - - location: 15 (just consumed gas: 0.025, remaining gas: 1039967.004 units remaining) + - location: 15 (just consumed gas: 0.025) [ { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" } ] - - location: 18 (just consumed gas: 0.300, remaining gas: 1039966.704 units remaining) + - location: 18 (just consumed gas: 0.300) [ {} { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" } ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039966.694 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "B" ; "B" ; "asdf" ; "C" } {} { "B" ; "C" ; "asdf" } ] - - location: 21 (just consumed gas: 0, remaining gas: 1039966.694 units remaining) + - location: 21 (just consumed gas: 0) [ "B" {} { "B" ; "C" ; "asdf" } ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039966.684 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039966.674 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "B" {}) (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039966.664 units remaining) + - location: 25 (just consumed gas: 0.010) [ "B" (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0, remaining gas: 1039966.664 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039966.654 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039966.629 units remaining) + - location: 26 (just consumed gas: 0.025) [ "B" {} { "B" ; "C" ; "asdf" } ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039966.619 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "B" {} { "B" ; "C" ; "asdf" } ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039966.609 units remaining) + - location: 32 (just consumed gas: 0.010) [ "B" True {} { "B" ; "C" ; "asdf" } ] - - location: 33 (just consumed gas: 0.132, remaining gas: 1039966.477 units remaining) + - location: 33 (just consumed gas: 0.132) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 21 (just consumed gas: 0.015, remaining gas: 1039966.462 units remaining) + - location: 21 (just consumed gas: 0.015) [ "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039966.452 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039966.442 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "B" { "B" }) (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039966.432 units remaining) + - location: 25 (just consumed gas: 0.010) [ "B" (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0, remaining gas: 1039966.432 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039966.422 units remaining) + - location: 28 (just consumed gas: 0.010) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039966.397 units remaining) + - location: 26 (just consumed gas: 0.025) [ "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039966.387 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039966.377 units remaining) + - location: 32 (just consumed gas: 0.010) [ "B" True { "B" } { "B" ; "C" ; "asdf" } ] - - location: 33 (just consumed gas: 0.134, remaining gas: 1039966.243 units remaining) + - location: 33 (just consumed gas: 0.134) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 21 (just consumed gas: 0.015, remaining gas: 1039966.228 units remaining) + - location: 21 (just consumed gas: 0.015) [ "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039966.218 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039966.208 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "asdf" { "B" }) (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039966.198 units remaining) + - location: 25 (just consumed gas: 0.010) [ "asdf" (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0, remaining gas: 1039966.198 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039966.188 units remaining) + - location: 28 (just consumed gas: 0.010) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039966.163 units remaining) + - location: 26 (just consumed gas: 0.025) [ "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039966.153 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039966.143 units remaining) + - location: 32 (just consumed gas: 0.010) [ "asdf" True { "B" } { "B" ; "C" ; "asdf" } ] - - location: 33 (just consumed gas: 0.146, remaining gas: 1039965.997 units remaining) + - location: 33 (just consumed gas: 0.146) [ { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 21 (just consumed gas: 0.015, remaining gas: 1039965.982 units remaining) + - location: 21 (just consumed gas: 0.015) [ "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039965.972 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039965.952 units remaining) + - location: 25 (just consumed gas: 0.010) [ "C" (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0, remaining gas: 1039965.952 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039965.942 units remaining) + - location: 28 (just consumed gas: 0.010) [ { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039965.917 units remaining) + - location: 26 (just consumed gas: 0.025) [ "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039965.907 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039965.897 units remaining) + - location: 32 (just consumed gas: 0.010) [ "C" True { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 33 (just consumed gas: 0.136, remaining gas: 1039965.761 units remaining) + - location: 33 (just consumed gas: 0.136) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 21 (just consumed gas: 0.015, remaining gas: 1039965.746 units remaining) + - location: 21 (just consumed gas: 0.015) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039965.736 units remaining) + - location: 34 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039965.726 units remaining) + - location: 37 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True { "B" ; "C" ; "asdf" } ] - - location: 38 (just consumed gas: 0.010, remaining gas: 1039965.716 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) { "B" ; "C" ; "asdf" } ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039965.706 units remaining) + - location: 39 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0, remaining gas: 1039965.706 units remaining) + - location: 40 (just consumed gas: 0) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010, remaining gas: 1039965.696 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039965.646 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0, remaining gas: 1039965.646 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010, remaining gas: 1039965.636 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039965.626 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (just consumed gas: 0.025, remaining gas: 1039965.601 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (just consumed gas: 0.010, remaining gas: 1039965.591 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (just consumed gas: 0.025, remaining gas: 1039965.566 units remaining) + - location: 46 (just consumed gas: 0.025) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (just consumed gas: 0.118, remaining gas: 1039965.448 units remaining) + - location: 57 (just consumed gas: 0.118) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (just consumed gas: 0, remaining gas: 1039965.448 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (just consumed gas: 0.010, remaining gas: 1039965.438 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025, remaining gas: 1039965.413 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039965.403 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010, remaining gas: 1039965.393 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (just consumed gas: 0.010, remaining gas: 1039965.383 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015, remaining gas: 1039965.368 units remaining) + - location: 40 (just consumed gas: 0.015) [ "C" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010, remaining gas: 1039965.358 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039965.308 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0, remaining gas: 1039965.308 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010, remaining gas: 1039965.298 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039965.288 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (just consumed gas: 0.025, remaining gas: 1039965.263 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (just consumed gas: 0.010, remaining gas: 1039965.253 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (just consumed gas: 0.025, remaining gas: 1039965.228 units remaining) + - location: 46 (just consumed gas: 0.025) [ "C" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (just consumed gas: 0.118, remaining gas: 1039965.110 units remaining) + - location: 57 (just consumed gas: 0.118) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (just consumed gas: 0, remaining gas: 1039965.110 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (just consumed gas: 0.010, remaining gas: 1039965.100 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025, remaining gas: 1039965.075 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039965.065 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010, remaining gas: 1039965.055 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (just consumed gas: 0.010, remaining gas: 1039965.045 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015, remaining gas: 1039965.030 units remaining) + - location: 40 (just consumed gas: 0.015) [ "asdf" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010, remaining gas: 1039965.020 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039964.970 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0, remaining gas: 1039964.970 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010, remaining gas: 1039964.960 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039964.950 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (just consumed gas: 0.025, remaining gas: 1039964.925 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (just consumed gas: 0.010, remaining gas: 1039964.915 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (just consumed gas: 0.025, remaining gas: 1039964.890 units remaining) + - location: 46 (just consumed gas: 0.025) [ "asdf" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (just consumed gas: 0.127, remaining gas: 1039964.763 units remaining) + - location: 57 (just consumed gas: 0.127) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (just consumed gas: 0, remaining gas: 1039964.763 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (just consumed gas: 0.010, remaining gas: 1039964.753 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025, remaining gas: 1039964.728 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039964.718 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010, remaining gas: 1039964.708 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (just consumed gas: 0.010, remaining gas: 1039964.698 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015, remaining gas: 1039964.683 units remaining) + - location: 40 (just consumed gas: 0.015) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 64 (just consumed gas: 0.010, remaining gas: 1039964.673 units remaining) + - location: 64 (just consumed gas: 0.010) [ True ] - - location: 65 (just consumed gas: 0.010, remaining gas: 1039964.663 units remaining) + - location: 65 (just consumed gas: 0.010) [ (Some True) ] - - location: 66 (just consumed gas: 0.010, remaining gas: 1039964.653 units remaining) + - location: 66 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 68 (just consumed gas: 0.010, 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 a88970a9063d..3af7c97ea44a 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 (just consumed gas: 32.931, 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 (just consumed gas: 0.010, remaining gas: 1039967.059 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 13 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039967.039 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039967.029 units remaining) + - location: 17 (just consumed gas: 0.010) [ { "B" ; "B" ; "asdf" ; "C" } ] - - location: 15 (just consumed gas: 0.025, remaining gas: 1039967.004 units remaining) + - location: 15 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 18 (just consumed gas: 0.300, remaining gas: 1039966.704 units remaining) + - location: 18 (just consumed gas: 0.300) [ {} { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039966.694 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (just consumed gas: 0, remaining gas: 1039966.694 units remaining) + - location: 21 (just consumed gas: 0) [ "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039966.684 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039966.674 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "B" {}) (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039966.664 units remaining) + - location: 25 (just consumed gas: 0.010) [ "B" (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (just consumed gas: 0, remaining gas: 1039966.664 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039966.654 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039966.629 units remaining) + - location: 26 (just consumed gas: 0.025) [ "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039966.619 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039966.609 units remaining) + - location: 32 (just consumed gas: 0.010) [ "B" True {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (just consumed gas: 0.132, remaining gas: 1039966.477 units remaining) + - location: 33 (just consumed gas: 0.132) [ { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (just consumed gas: 0.015, remaining gas: 1039966.462 units remaining) + - location: 21 (just consumed gas: 0.015) [ "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039966.452 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039966.432 units remaining) + - location: 25 (just consumed gas: 0.010) [ "C" (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (just consumed gas: 0, remaining gas: 1039966.432 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039966.422 units remaining) + - location: 28 (just consumed gas: 0.010) [ { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039966.397 units remaining) + - location: 26 (just consumed gas: 0.025) [ "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039966.387 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039966.377 units remaining) + - location: 32 (just consumed gas: 0.010) [ "C" True { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (just consumed gas: 0.134, remaining gas: 1039966.243 units remaining) + - location: 33 (just consumed gas: 0.134) [ { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (just consumed gas: 0.015, remaining gas: 1039966.228 units remaining) + - location: 21 (just consumed gas: 0.015) [ "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039966.218 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039966.198 units remaining) + - location: 25 (just consumed gas: 0.010) [ "asdf" (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (just consumed gas: 0, remaining gas: 1039966.198 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039966.188 units remaining) + - location: 28 (just consumed gas: 0.010) [ { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039966.163 units remaining) + - location: 26 (just consumed gas: 0.025) [ "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039966.153 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039966.143 units remaining) + - location: 32 (just consumed gas: 0.010) [ "asdf" True { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (just consumed gas: 0.154, remaining gas: 1039965.989 units remaining) + - location: 33 (just consumed gas: 0.154) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (just consumed gas: 0.015, remaining gas: 1039965.974 units remaining) + - location: 21 (just consumed gas: 0.015) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039965.964 units remaining) + - location: 34 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039965.954 units remaining) + - location: 37 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True { "B" ; "B" ; "asdf" ; "C" } ] - - location: 38 (just consumed gas: 0.010, remaining gas: 1039965.944 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039965.934 units remaining) + - location: 39 (just consumed gas: 0.010) [ { "B" ; "B" ; "asdf" ; "C" } (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0, remaining gas: 1039965.934 units remaining) + - location: 40 (just consumed gas: 0) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010, remaining gas: 1039965.924 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039965.874 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0, remaining gas: 1039965.874 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010, remaining gas: 1039965.864 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039965.854 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (just consumed gas: 0.025, remaining gas: 1039965.829 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (just consumed gas: 0.010, remaining gas: 1039965.819 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (just consumed gas: 0.025, remaining gas: 1039965.794 units remaining) + - location: 46 (just consumed gas: 0.025) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (just consumed gas: 0.118, remaining gas: 1039965.676 units remaining) + - location: 57 (just consumed gas: 0.118) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (just consumed gas: 0, remaining gas: 1039965.676 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (just consumed gas: 0.010, remaining gas: 1039965.666 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025, remaining gas: 1039965.641 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039965.631 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010, remaining gas: 1039965.621 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (just consumed gas: 0.010, remaining gas: 1039965.611 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015, remaining gas: 1039965.596 units remaining) + - location: 40 (just consumed gas: 0.015) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010, remaining gas: 1039965.586 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039965.536 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0, remaining gas: 1039965.536 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010, remaining gas: 1039965.526 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039965.516 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (just consumed gas: 0.025, remaining gas: 1039965.491 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (just consumed gas: 0.010, remaining gas: 1039965.481 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (just consumed gas: 0.025, remaining gas: 1039965.456 units remaining) + - location: 46 (just consumed gas: 0.025) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (just consumed gas: 0.118, remaining gas: 1039965.338 units remaining) + - location: 57 (just consumed gas: 0.118) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (just consumed gas: 0, remaining gas: 1039965.338 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (just consumed gas: 0.010, remaining gas: 1039965.328 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025, remaining gas: 1039965.303 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039965.293 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010, remaining gas: 1039965.283 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (just consumed gas: 0.010, remaining gas: 1039965.273 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015, remaining gas: 1039965.258 units remaining) + - location: 40 (just consumed gas: 0.015) [ "asdf" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010, remaining gas: 1039965.248 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039965.198 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0, remaining gas: 1039965.198 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010, remaining gas: 1039965.188 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039965.178 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (just consumed gas: 0.025, remaining gas: 1039965.153 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (just consumed gas: 0.010, remaining gas: 1039965.143 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (just consumed gas: 0.025, remaining gas: 1039965.118 units remaining) + - location: 46 (just consumed gas: 0.025) [ "asdf" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (just consumed gas: 0.127, remaining gas: 1039964.991 units remaining) + - location: 57 (just consumed gas: 0.127) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (just consumed gas: 0, remaining gas: 1039964.991 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (just consumed gas: 0.010, remaining gas: 1039964.981 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025, remaining gas: 1039964.956 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039964.946 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010, remaining gas: 1039964.936 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (just consumed gas: 0.010, remaining gas: 1039964.926 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015, remaining gas: 1039964.911 units remaining) + - location: 40 (just consumed gas: 0.015) [ "C" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010, remaining gas: 1039964.901 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039964.851 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0, remaining gas: 1039964.851 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010, remaining gas: 1039964.841 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039964.831 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (just consumed gas: 0.025, remaining gas: 1039964.806 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (just consumed gas: 0.010, remaining gas: 1039964.796 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (just consumed gas: 0.025, remaining gas: 1039964.771 units remaining) + - location: 46 (just consumed gas: 0.025) [ "C" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (just consumed gas: 0.118, remaining gas: 1039964.653 units remaining) + - location: 57 (just consumed gas: 0.118) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (just consumed gas: 0, remaining gas: 1039964.653 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (just consumed gas: 0.010, remaining gas: 1039964.643 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025, remaining gas: 1039964.618 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039964.608 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010, remaining gas: 1039964.598 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (just consumed gas: 0.010, remaining gas: 1039964.588 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015, remaining gas: 1039964.573 units remaining) + - location: 40 (just consumed gas: 0.015) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 64 (just consumed gas: 0.010, remaining gas: 1039964.563 units remaining) + - location: 64 (just consumed gas: 0.010) [ True ] - - location: 65 (just consumed gas: 0.010, remaining gas: 1039964.553 units remaining) + - location: 65 (just consumed gas: 0.010) [ (Some True) ] - - location: 66 (just consumed gas: 0.010, remaining gas: 1039964.543 units remaining) + - location: 66 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 68 (just consumed gas: 0.010, 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 3979ab7037af..afb518dc7ac1 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 (just consumed gas: 32.251, remaining gas: 1039967.749 units remaining) + - location: 12 (just consumed gas: 32.251) [ (Pair (Pair { "B" } { "B" }) None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039967.739 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { "B" } { "B" }) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039967.729 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair { "B" } { "B" }) (Pair { "B" } { "B" }) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039967.719 units remaining) + - location: 14 (just consumed gas: 0.010) [ { "B" } (Pair { "B" } { "B" }) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039967.719 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair { "B" } { "B" }) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039967.709 units remaining) + - location: 17 (just consumed gas: 0.010) [ { "B" } ] - - location: 15 (just consumed gas: 0.025, remaining gas: 1039967.684 units remaining) + - location: 15 (just consumed gas: 0.025) [ { "B" } { "B" } ] - - location: 18 (just consumed gas: 0.300, remaining gas: 1039967.384 units remaining) + - location: 18 (just consumed gas: 0.300) [ {} { "B" } { "B" } ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039967.374 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "B" } {} { "B" } ] - - location: 21 (just consumed gas: 0, remaining gas: 1039967.374 units remaining) + - location: 21 (just consumed gas: 0) [ "B" {} { "B" } ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039967.364 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "B" {}) { "B" } ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039967.354 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "B" {}) (Pair "B" {}) { "B" } ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039967.344 units remaining) + - location: 25 (just consumed gas: 0.010) [ "B" (Pair "B" {}) { "B" } ] - - location: 26 (just consumed gas: 0, remaining gas: 1039967.344 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "B" {}) { "B" } ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039967.334 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} { "B" } ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039967.309 units remaining) + - location: 26 (just consumed gas: 0.025) [ "B" {} { "B" } ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039967.299 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "B" {} { "B" } ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039967.289 units remaining) + - location: 32 (just consumed gas: 0.010) [ "B" True {} { "B" } ] - - location: 33 (just consumed gas: 0.132, remaining gas: 1039967.157 units remaining) + - location: 33 (just consumed gas: 0.132) [ { "B" } { "B" } ] - - location: 21 (just consumed gas: 0.015, remaining gas: 1039967.142 units remaining) + - location: 21 (just consumed gas: 0.015) [ { "B" } { "B" } ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039967.132 units remaining) + - location: 34 (just consumed gas: 0.010) [ True { "B" } { "B" } ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039967.122 units remaining) + - location: 37 (just consumed gas: 0.010) [ { "B" } True { "B" } ] - - location: 38 (just consumed gas: 0.010, remaining gas: 1039967.112 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair { "B" } True) { "B" } ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039967.102 units remaining) + - location: 39 (just consumed gas: 0.010) [ { "B" } (Pair { "B" } True) ] - - location: 40 (just consumed gas: 0, remaining gas: 1039967.102 units remaining) + - location: 40 (just consumed gas: 0) [ "B" (Pair { "B" } True) ] - - location: 42 (just consumed gas: 0.010, remaining gas: 1039967.092 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "B" { "B" } True) ] - - location: 43 (just consumed gas: 0.010, remaining gas: 1039967.082 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 44 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039967.062 units remaining) + - location: 45 (just consumed gas: 0.010) [ "B" (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 46 (just consumed gas: 0, remaining gas: 1039967.062 units remaining) + - location: 46 (just consumed gas: 0) [ (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 49 (just consumed gas: 0.010, remaining gas: 1039967.052 units remaining) + - location: 49 (just consumed gas: 0.010) [ (Pair { "B" } True) (Pair "B" { "B" } True) ] - - location: 50 (just consumed gas: 0.010, remaining gas: 1039967.042 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "B" } (Pair "B" { "B" } True) ] - - location: 51 (just consumed gas: 0, remaining gas: 1039967.042 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "B" { "B" } True) ] - - location: 54 (just consumed gas: 0.010, remaining gas: 1039967.032 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "B" } True) ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039967.022 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (just consumed gas: 0.025, remaining gas: 1039966.997 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "B" } True ] - - location: 56 (just consumed gas: 0.010, remaining gas: 1039966.987 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "B" } { "B" } True ] - - location: 46 (just consumed gas: 0.025, remaining gas: 1039966.962 units remaining) + - location: 46 (just consumed gas: 0.025) [ "B" { "B" } { "B" } True ] - - location: 57 (just consumed gas: 0.117, remaining gas: 1039966.845 units remaining) + - location: 57 (just consumed gas: 0.117) [ True { "B" } True ] - - location: 58 (just consumed gas: 0, remaining gas: 1039966.845 units remaining) + - location: 58 (just consumed gas: 0) [ { "B" } True ] - - location: 60 (just consumed gas: 0.010, remaining gas: 1039966.835 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "B" } ] - - location: 58 (just consumed gas: 0.025, remaining gas: 1039966.810 units remaining) + - location: 58 (just consumed gas: 0.025) [ True True { "B" } ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039966.800 units remaining) + - location: 61 (just consumed gas: 0.010) [ True { "B" } ] - - location: 62 (just consumed gas: 0.010, remaining gas: 1039966.790 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "B" } True ] - - location: 63 (just consumed gas: 0.010, remaining gas: 1039966.780 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "B" } True) ] - - location: 40 (just consumed gas: 0.015, remaining gas: 1039966.765 units remaining) + - location: 40 (just consumed gas: 0.015) [ (Pair { "B" } True) ] - - location: 64 (just consumed gas: 0.010, remaining gas: 1039966.755 units remaining) + - location: 64 (just consumed gas: 0.010) [ True ] - - location: 65 (just consumed gas: 0.010, remaining gas: 1039966.745 units remaining) + - location: 65 (just consumed gas: 0.010) [ (Some True) ] - - location: 66 (just consumed gas: 0.010, remaining gas: 1039966.735 units remaining) + - location: 66 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 68 (just consumed gas: 0.010, 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 506b19ac2e55..049510311551 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 (just consumed gas: 32.251, remaining gas: 1039967.749 units remaining) + - location: 12 (just consumed gas: 32.251) [ (Pair (Pair { "c" } { "B" }) None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039967.739 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { "c" } { "B" }) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039967.729 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair { "c" } { "B" }) (Pair { "c" } { "B" }) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039967.719 units remaining) + - location: 14 (just consumed gas: 0.010) [ { "c" } (Pair { "c" } { "B" }) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039967.719 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair { "c" } { "B" }) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039967.709 units remaining) + - location: 17 (just consumed gas: 0.010) [ { "B" } ] - - location: 15 (just consumed gas: 0.025, remaining gas: 1039967.684 units remaining) + - location: 15 (just consumed gas: 0.025) [ { "c" } { "B" } ] - - location: 18 (just consumed gas: 0.300, remaining gas: 1039967.384 units remaining) + - location: 18 (just consumed gas: 0.300) [ {} { "c" } { "B" } ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039967.374 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "c" } {} { "B" } ] - - location: 21 (just consumed gas: 0, remaining gas: 1039967.374 units remaining) + - location: 21 (just consumed gas: 0) [ "c" {} { "B" } ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039967.364 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair "c" {}) { "B" } ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039967.354 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair "c" {}) (Pair "c" {}) { "B" } ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039967.344 units remaining) + - location: 25 (just consumed gas: 0.010) [ "c" (Pair "c" {}) { "B" } ] - - location: 26 (just consumed gas: 0, remaining gas: 1039967.344 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair "c" {}) { "B" } ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039967.334 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} { "B" } ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039967.309 units remaining) + - location: 26 (just consumed gas: 0.025) [ "c" {} { "B" } ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039967.299 units remaining) + - location: 29 (just consumed gas: 0.010) [ True "c" {} { "B" } ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039967.289 units remaining) + - location: 32 (just consumed gas: 0.010) [ "c" True {} { "B" } ] - - location: 33 (just consumed gas: 0.132, remaining gas: 1039967.157 units remaining) + - location: 33 (just consumed gas: 0.132) [ { "c" } { "B" } ] - - location: 21 (just consumed gas: 0.015, remaining gas: 1039967.142 units remaining) + - location: 21 (just consumed gas: 0.015) [ { "c" } { "B" } ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039967.132 units remaining) + - location: 34 (just consumed gas: 0.010) [ True { "c" } { "B" } ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039967.122 units remaining) + - location: 37 (just consumed gas: 0.010) [ { "c" } True { "B" } ] - - location: 38 (just consumed gas: 0.010, remaining gas: 1039967.112 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair { "c" } True) { "B" } ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039967.102 units remaining) + - location: 39 (just consumed gas: 0.010) [ { "B" } (Pair { "c" } True) ] - - location: 40 (just consumed gas: 0, remaining gas: 1039967.102 units remaining) + - location: 40 (just consumed gas: 0) [ "B" (Pair { "c" } True) ] - - location: 42 (just consumed gas: 0.010, remaining gas: 1039967.092 units remaining) + - location: 42 (just consumed gas: 0.010) [ (Pair "B" { "c" } True) ] - - location: 43 (just consumed gas: 0.010, remaining gas: 1039967.082 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 44 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039967.062 units remaining) + - location: 45 (just consumed gas: 0.010) [ "B" (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 46 (just consumed gas: 0, remaining gas: 1039967.062 units remaining) + - location: 46 (just consumed gas: 0) [ (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 49 (just consumed gas: 0.010, remaining gas: 1039967.052 units remaining) + - location: 49 (just consumed gas: 0.010) [ (Pair { "c" } True) (Pair "B" { "c" } True) ] - - location: 50 (just consumed gas: 0.010, remaining gas: 1039967.042 units remaining) + - location: 50 (just consumed gas: 0.010) [ { "c" } (Pair "B" { "c" } True) ] - - location: 51 (just consumed gas: 0, remaining gas: 1039967.042 units remaining) + - location: 51 (just consumed gas: 0) [ (Pair "B" { "c" } True) ] - - location: 54 (just consumed gas: 0.010, remaining gas: 1039967.032 units remaining) + - location: 54 (just consumed gas: 0.010) [ (Pair { "c" } True) ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039967.022 units remaining) + - location: 55 (just consumed gas: 0.010) [ True ] - - location: 51 (just consumed gas: 0.025, remaining gas: 1039966.997 units remaining) + - location: 51 (just consumed gas: 0.025) [ { "c" } True ] - - location: 56 (just consumed gas: 0.010, remaining gas: 1039966.987 units remaining) + - location: 56 (just consumed gas: 0.010) [ { "c" } { "c" } True ] - - location: 46 (just consumed gas: 0.025, remaining gas: 1039966.962 units remaining) + - location: 46 (just consumed gas: 0.025) [ "B" { "c" } { "c" } True ] - - location: 57 (just consumed gas: 0.117, remaining gas: 1039966.845 units remaining) + - location: 57 (just consumed gas: 0.117) [ False { "c" } True ] - - location: 58 (just consumed gas: 0, remaining gas: 1039966.845 units remaining) + - location: 58 (just consumed gas: 0) [ { "c" } True ] - - location: 60 (just consumed gas: 0.010, remaining gas: 1039966.835 units remaining) + - location: 60 (just consumed gas: 0.010) [ True { "c" } ] - - location: 58 (just consumed gas: 0.025, remaining gas: 1039966.810 units remaining) + - location: 58 (just consumed gas: 0.025) [ False True { "c" } ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039966.800 units remaining) + - location: 61 (just consumed gas: 0.010) [ False { "c" } ] - - location: 62 (just consumed gas: 0.010, remaining gas: 1039966.790 units remaining) + - location: 62 (just consumed gas: 0.010) [ { "c" } False ] - - location: 63 (just consumed gas: 0.010, remaining gas: 1039966.780 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair { "c" } False) ] - - location: 40 (just consumed gas: 0.015, remaining gas: 1039966.765 units remaining) + - location: 40 (just consumed gas: 0.015) [ (Pair { "c" } False) ] - - location: 64 (just consumed gas: 0.010, remaining gas: 1039966.755 units remaining) + - location: 64 (just consumed gas: 0.010) [ False ] - - location: 65 (just consumed gas: 0.010, remaining gas: 1039966.745 units remaining) + - location: 65 (just consumed gas: 0.010) [ (Some False) ] - - location: 66 (just consumed gas: 0.010, remaining gas: 1039966.735 units remaining) + - location: 66 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 68 (just consumed gas: 0.010, 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 e2214091d740..0a84518226e4 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 (just consumed gas: 32.003, remaining gas: 1039967.997 units remaining) + - location: 12 (just consumed gas: 32.003) [ (Pair (Pair {} {}) None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039967.987 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} {}) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039967.977 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} {}) (Pair {} {}) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039967.967 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Pair {} {}) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039967.967 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair {} {}) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039967.957 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} ] - - location: 15 (just consumed gas: 0.025, remaining gas: 1039967.932 units remaining) + - location: 15 (just consumed gas: 0.025) [ {} {} ] - - location: 18 (just consumed gas: 0.300, remaining gas: 1039967.632 units remaining) + - location: 18 (just consumed gas: 0.300) [ {} {} {} ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039967.622 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} {} {} ] - - location: 21 (just consumed gas: 0, remaining gas: 1039967.622 units remaining) + - location: 21 (just consumed gas: 0) [ {} {} ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039967.612 units remaining) + - location: 34 (just consumed gas: 0.010) [ True {} {} ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039967.602 units remaining) + - location: 37 (just consumed gas: 0.010) [ {} True {} ] - - location: 38 (just consumed gas: 0.010, remaining gas: 1039967.592 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair {} True) {} ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039967.582 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Pair {} True) ] - - location: 40 (just consumed gas: 0, remaining gas: 1039967.582 units remaining) + - location: 40 (just consumed gas: 0) [ (Pair {} True) ] - - location: 64 (just consumed gas: 0.010, remaining gas: 1039967.572 units remaining) + - location: 64 (just consumed gas: 0.010) [ True ] - - location: 65 (just consumed gas: 0.010, remaining gas: 1039967.562 units remaining) + - location: 65 (just consumed gas: 0.010) [ (Some True) ] - - location: 66 (just consumed gas: 0.010, remaining gas: 1039967.552 units remaining) + - location: 66 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 68 (just consumed gas: 0.010, 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 767a1bda165b..0233483176af 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 (just consumed gas: 11.810, remaining gas: 1039988.190 units remaining) + - location: 7 (just consumed gas: 11.810) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" Unit) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039988.180 units remaining) + - location: 7 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 8 (just consumed gas: 0.310, remaining gas: 1039987.870 units remaining) + - location: 8 (just consumed gas: 0.310) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 11 (just consumed gas: 0, remaining gas: 1039987.870 units remaining) + - location: 11 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 11 (just consumed gas: 0.015, remaining gas: 1039987.855 units remaining) + - location: 11 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039987.845 units remaining) + - location: 17 (just consumed gas: 0.010) [ ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.835 units remaining) + - location: 18 (just consumed gas: 0.010) [ Unit ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.825 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} Unit ] - - location: 21 (just consumed gas: 0.010, 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 8b71df250f85..cb95652845ac 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 (just consumed gas: 12.061, remaining gas: 1039987.939 units remaining) + - location: 8 (just consumed gas: 12.061) [ (Pair Unit None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039987.929 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039987.919 units remaining) + - location: 9 (just consumed gas: 0.010) [ Unit ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039987.909 units remaining) + - location: 10 (just consumed gas: 0.010) [ 50000 Unit ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039987.899 units remaining) + - location: 11 (just consumed gas: 0.010) [ None 50000 Unit ] - - location: 13 (just consumed gas: 0.716, remaining gas: 1039987.183 units remaining) + - location: 13 (just consumed gas: 0.716) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm" ] - - location: 25 (just consumed gas: 0, remaining gas: 1039987.183 units remaining) + - location: 25 (just consumed gas: 0) [ "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm" ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039987.173 units remaining) + - location: 27 (just consumed gas: 0.010) [ (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039987.163 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 25 (just consumed gas: 0.025, remaining gas: 1039987.138 units remaining) + - location: 25 (just consumed gas: 0.025) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b {} (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 30 (just consumed gas: 0.010, remaining gas: 1039987.128 units remaining) + - location: 30 (just consumed gas: 0.010) [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b } (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 31 (just consumed gas: 0.010, 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 44cec87b45ce..20941144017d 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 (just consumed gas: 7.653, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, remaining gas: 1039992.307 units remaining) + - location: 14 (just consumed gas: 0.010) [ "1970-01-01T00:00:00Z" ] - - location: 12 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, remaining gas: 1039992.247 units remaining) + - location: 15 (just consumed gas: 0.035) [ 200 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.237 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 200 ] - - location: 18 (just consumed gas: 0.010, 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 0c6cfb2db7b4..13140c3e6466 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 (just consumed gas: 7.437, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010) [ "1970-01-01T00:00:00Z" ] - - location: 12 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, remaining gas: 1039992.463 units remaining) + - location: 15 (just consumed gas: 0.035) [ 0 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 0 ] - - location: 18 (just consumed gas: 0.010, 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 1715b27058e7..991b152904ed 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 (just consumed gas: 7.437, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010) [ "1970-01-01T00:00:01Z" ] - - location: 12 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, remaining gas: 1039992.463 units remaining) + - location: 15 (just consumed gas: 0.035) [ -1 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} -1 ] - - location: 18 (just consumed gas: 0.010, 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 4fcee1c4b4f9..124d28783f04 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 (just consumed gas: 7.437, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010) [ "1970-01-01T00:00:00Z" ] - - location: 12 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, remaining gas: 1039992.463 units remaining) + - location: 15 (just consumed gas: 0.035) [ 1 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 1 ] - - location: 18 (just consumed gas: 0.010, 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 249cc1c8de38..38ce9b0e9aec 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 (just consumed gas: 159.743, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.030, 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 (just consumed gas: 0.036, 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 (just consumed gas: 0.043, 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 (just consumed gas: 0.049, 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 (just consumed gas: 0.057, 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 (just consumed gas: 0.063, 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 (just consumed gas: 0.070, 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 (just consumed gas: 0.076, 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 (just consumed gas: 0.084, 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 (just consumed gas: 0.090, 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 (just consumed gas: 0.097, 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 (just consumed gas: 0.103, 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 (just consumed gas: 0.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 (just consumed gas: 0.117, 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 (just consumed gas: 0.124, 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 (just consumed gas: 0.130, 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 (just consumed gas: 0.138, 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 (just consumed gas: 0.030, 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 (just consumed gas: 0.036, 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 (just consumed gas: 0.043, 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 (just consumed gas: 0.049, 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 (just consumed gas: 0.057, 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 (just consumed gas: 0.063, 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 (just consumed gas: 0.070, 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 (just consumed gas: 0.076, 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 (just consumed gas: 0.084, 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 (just consumed gas: 0.090, 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 (just consumed gas: 0.097, 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 (just consumed gas: 0.103, 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 (just consumed gas: 0.111, 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 (just consumed gas: 0.117, 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 (just consumed gas: 0.124, 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 (just consumed gas: 0.130, 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 (just consumed gas: 0.138, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.755, remaining gas: 1039833.476 units remaining) + - location: 218 (just consumed gas: 0.755) [ 0 ] - - location: 219 (just consumed gas: 0.010, remaining gas: 1039833.466 units remaining) + - location: 219 (just consumed gas: 0.010) [ True ] - - location: 220 (just consumed gas: 0, remaining gas: 1039833.466 units remaining) + - location: 220 (just consumed gas: 0) [ ] - - location: 220 (just consumed gas: 0.015, remaining gas: 1039833.451 units remaining) + - location: 220 (just consumed gas: 0.015) [ ] - - location: 226 (just consumed gas: 0.010, remaining gas: 1039833.441 units remaining) + - location: 226 (just consumed gas: 0.010) [ Unit ] - - location: 227 (just consumed gas: 0.010, remaining gas: 1039833.431 units remaining) + - location: 227 (just consumed gas: 0.010) [ {} Unit ] - - location: 229 (just consumed gas: 0.010, 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 f99bfbe393be..85094931fbb8 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 (just consumed gas: 159.743, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.030, 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 (just consumed gas: 0.036, 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 (just consumed gas: 0.043, 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 (just consumed gas: 0.049, 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 (just consumed gas: 0.057, 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 (just consumed gas: 0.063, 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 (just consumed gas: 0.070, 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 (just consumed gas: 0.076, 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 (just consumed gas: 0.084, 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 (just consumed gas: 0.090, 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 (just consumed gas: 0.097, 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 (just consumed gas: 0.103, 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 (just consumed gas: 0.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 (just consumed gas: 0.117, 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 (just consumed gas: 0.124, 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 (just consumed gas: 0.130, 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 (just consumed gas: 0.138, 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 (just consumed gas: 0.030, 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 (just consumed gas: 0.036, 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 (just consumed gas: 0.043, 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 (just consumed gas: 0.049, 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 (just consumed gas: 0.057, 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 (just consumed gas: 0.063, 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 (just consumed gas: 0.070, 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 (just consumed gas: 0.076, 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 (just consumed gas: 0.084, 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 (just consumed gas: 0.090, 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 (just consumed gas: 0.097, 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 (just consumed gas: 0.103, 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 (just consumed gas: 0.111, 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 (just consumed gas: 0.117, 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 (just consumed gas: 0.124, 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 (just consumed gas: 0.130, 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 (just consumed gas: 0.138, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.755, remaining gas: 1039833.476 units remaining) + - location: 218 (just consumed gas: 0.755) [ 0 ] - - location: 219 (just consumed gas: 0.010, remaining gas: 1039833.466 units remaining) + - location: 219 (just consumed gas: 0.010) [ True ] - - location: 220 (just consumed gas: 0, remaining gas: 1039833.466 units remaining) + - location: 220 (just consumed gas: 0) [ ] - - location: 220 (just consumed gas: 0.015, remaining gas: 1039833.451 units remaining) + - location: 220 (just consumed gas: 0.015) [ ] - - location: 226 (just consumed gas: 0.010, remaining gas: 1039833.441 units remaining) + - location: 226 (just consumed gas: 0.010) [ Unit ] - - location: 227 (just consumed gas: 0.010, remaining gas: 1039833.431 units remaining) + - location: 227 (just consumed gas: 0.010) [ {} Unit ] - - location: 229 (just consumed gas: 0.010, 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 c35f14999b3b..3b69fbc80661 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 (just consumed gas: 11.955, 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 (just consumed gas: 0.010, remaining gas: 1039988.035 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.025 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.015 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.005 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair 1 2) 3 4 5 ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039987.995 units remaining) + - location: 19 (just consumed gas: 0.010) [ 1 2 3 4 5 ] - - location: 20 (just consumed gas: 0.057, remaining gas: 1039987.938 units remaining) + - location: 20 (just consumed gas: 0.057) [ 5 1 2 3 4 ] - - location: 22 (just consumed gas: 0, remaining gas: 1039987.938 units remaining) + - location: 22 (just consumed gas: 0) [ 1 2 3 4 ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039987.928 units remaining) + - location: 24 (just consumed gas: 0.010) [ 2 3 4 ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039987.918 units remaining) + - location: 25 (just consumed gas: 0.010) [ 3 4 ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039987.908 units remaining) + - location: 26 (just consumed gas: 0.010) [ 4 ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039987.898 units remaining) + - location: 27 (just consumed gas: 0.010) [ ] - - location: 22 (just consumed gas: 0.025, remaining gas: 1039987.873 units remaining) + - location: 22 (just consumed gas: 0.025) [ 5 ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039987.863 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} 5 ] - - location: 30 (just consumed gas: 0.010, 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 687f469d0919..78e35addeab5 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 (just consumed gas: 7.912, remaining gas: 1039992.088 units remaining) + - location: 11 (just consumed gas: 7.912) [ (Pair (Pair 1 1) 0 0) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.078 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 1 1) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.068 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 1 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.058 units remaining) + - location: 13 (just consumed gas: 0.010) [ 1 1 1 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039992.058 units remaining) + - location: 14 (just consumed gas: 0) [ 1 1 ] - - location: 16 (just consumed gas: 0.035, remaining gas: 1039992.023 units remaining) + - location: 16 (just consumed gas: 0.035) [ 2 ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.998 units remaining) + - location: 14 (just consumed gas: 0.025) [ 1 2 ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.988 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair 1 2) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.978 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Pair 1 2) ] - - location: 20 (just consumed gas: 0.010, 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 8c57210c5558..477d061bdab9 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 (just consumed gas: 7.912, remaining gas: 1039992.088 units remaining) + - location: 11 (just consumed gas: 7.912) [ (Pair (Pair 15 9) 0 0) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.078 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 15 9) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.068 units remaining) + - location: 12 (just consumed gas: 0.010) [ 15 9 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.058 units remaining) + - location: 13 (just consumed gas: 0.010) [ 15 15 9 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039992.058 units remaining) + - location: 14 (just consumed gas: 0) [ 15 9 ] - - location: 16 (just consumed gas: 0.035, remaining gas: 1039992.023 units remaining) + - location: 16 (just consumed gas: 0.035) [ 24 ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.998 units remaining) + - location: 14 (just consumed gas: 0.025) [ 15 24 ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.988 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair 15 24) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.978 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Pair 15 24) ] - - location: 20 (just consumed gas: 0.010, 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 608e2ded3644..c95f1d0dd826 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 (just consumed gas: 13.205, 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 (just consumed gas: 0.010, remaining gas: 1039986.785 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039986.775 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039986.765 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039986.755 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair 1 2) 3 4 5 ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039986.745 units remaining) + - location: 19 (just consumed gas: 0.010) [ 1 2 3 4 5 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039986.745 units remaining) + - location: 20 (just consumed gas: 0) [ ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039986.735 units remaining) + - location: 23 (just consumed gas: 0.010) [ 6 ] - - location: 20 (just consumed gas: 0.025, remaining gas: 1039986.710 units remaining) + - location: 20 (just consumed gas: 0.025) [ 5 6 ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039986.700 units remaining) + - location: 20 (just consumed gas: 0.010) [ 4 5 6 ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039986.690 units remaining) + - location: 20 (just consumed gas: 0.010) [ 3 4 5 6 ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039986.680 units remaining) + - location: 20 (just consumed gas: 0.010) [ 2 3 4 5 6 ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039986.670 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 2 3 4 5 6 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039986.670 units remaining) + - location: 20 (just consumed gas: 0) [ 1 2 3 4 5 6 ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039986.660 units remaining) + - location: 26 (just consumed gas: 0.010) [ 2 3 4 5 6 ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039986.650 units remaining) + - location: 27 (just consumed gas: 0.010) [ 3 4 5 6 ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039986.640 units remaining) + - location: 28 (just consumed gas: 0.010) [ 4 5 6 ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039986.630 units remaining) + - location: 29 (just consumed gas: 0.010) [ 5 6 ] - - location: 30 (just consumed gas: 0.010, remaining gas: 1039986.620 units remaining) + - location: 30 (just consumed gas: 0.010) [ 6 ] - - location: 31 (just consumed gas: 0.010, remaining gas: 1039986.610 units remaining) + - location: 31 (just consumed gas: 0.010) [ {} 6 ] - - location: 33 (just consumed gas: 0.010, 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 d5c87109308b..d6cb92093e2e 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 (just consumed gas: 9.048, 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 (just consumed gas: 0.010, remaining gas: 1039990.942 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.932 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039990.922 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.912 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair 1 2) 3 4 5 ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.902 units remaining) + - location: 19 (just consumed gas: 0.010) [ 1 2 3 4 5 ] - - location: 20 (just consumed gas: 0.040, remaining gas: 1039990.862 units remaining) + - location: 20 (just consumed gas: 0.040) [ 5 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.852 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} 5 ] - - location: 24 (just consumed gas: 0.010, 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 09769ff2a8cd..acd75fc14a3b 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 (just consumed gas: 11.279, 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 (just consumed gas: 0.010, remaining gas: 1039988.711 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.701 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.691 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.681 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair 1 2) 3 4 5 ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.671 units remaining) + - location: 19 (just consumed gas: 0.010) [ 1 2 3 4 5 ] - - location: 20 (just consumed gas: 0.062, remaining gas: 1039988.609 units remaining) + - location: 20 (just consumed gas: 0.062) [ 2 3 4 5 1 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.599 units remaining) + - location: 22 (just consumed gas: 0.010) [ 3 4 5 1 ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039988.589 units remaining) + - location: 23 (just consumed gas: 0.010) [ 4 5 1 ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.579 units remaining) + - location: 24 (just consumed gas: 0.010) [ 5 1 ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039988.569 units remaining) + - location: 25 (just consumed gas: 0.010) [ 1 ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.559 units remaining) + - location: 26 (just consumed gas: 0.010) [ {} 1 ] - - location: 28 (just consumed gas: 0.010, 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 cd7c97ddf8d5..222be2bb6de1 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 (just consumed gas: 42.228, remaining gas: 1039957.772 units remaining) + - location: 7 (just consumed gas: 42.228) [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039957.762 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039957.752 units remaining) + - location: 8 (just consumed gas: 0.010) [ 5 ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039957.742 units remaining) + - location: 11 (just consumed gas: 0.010) [ 4 5 ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039957.732 units remaining) + - location: 14 (just consumed gas: 0.010) [ 3 4 5 ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039957.722 units remaining) + - location: 17 (just consumed gas: 0.010) [ 2 3 4 5 ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039957.712 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 2 3 4 5 ] - - location: 23 (just consumed gas: 0.021, remaining gas: 1039957.691 units remaining) + - location: 23 (just consumed gas: 0.021) [ 1 1 2 3 4 5 ] - - location: 25 (just consumed gas: 0.010, 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 (just consumed gas: 0.035, remaining gas: 1039957.646 units remaining) + - location: 30 (just consumed gas: 0.035) [ 0 1 2 3 4 5 ] - - location: 31 (just consumed gas: 0.010, remaining gas: 1039957.636 units remaining) + - location: 31 (just consumed gas: 0.010) [ True 1 2 3 4 5 ] - - location: 32 (just consumed gas: 0, remaining gas: 1039957.636 units remaining) + - location: 32 (just consumed gas: 0) [ 1 2 3 4 5 ] - - location: 32 (just consumed gas: 0.015, remaining gas: 1039957.621 units remaining) + - location: 32 (just consumed gas: 0.015) [ 1 2 3 4 5 ] - - location: 38 (just consumed gas: 0.022, remaining gas: 1039957.599 units remaining) + - location: 38 (just consumed gas: 0.022) [ 2 1 2 3 4 5 ] - - location: 40 (just consumed gas: 0.010, 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 (just consumed gas: 0.035, remaining gas: 1039957.554 units remaining) + - location: 45 (just consumed gas: 0.035) [ 0 1 2 3 4 5 ] - - location: 46 (just consumed gas: 0.010, remaining gas: 1039957.544 units remaining) + - location: 46 (just consumed gas: 0.010) [ True 1 2 3 4 5 ] - - location: 47 (just consumed gas: 0, remaining gas: 1039957.544 units remaining) + - location: 47 (just consumed gas: 0) [ 1 2 3 4 5 ] - - location: 47 (just consumed gas: 0.015, remaining gas: 1039957.529 units remaining) + - location: 47 (just consumed gas: 0.015) [ 1 2 3 4 5 ] - - location: 53 (just consumed gas: 0.023, remaining gas: 1039957.506 units remaining) + - location: 53 (just consumed gas: 0.023) [ 3 1 2 3 4 5 ] - - location: 55 (just consumed gas: 0.010, 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 (just consumed gas: 0.035, remaining gas: 1039957.461 units remaining) + - location: 60 (just consumed gas: 0.035) [ 0 1 2 3 4 5 ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039957.451 units remaining) + - location: 61 (just consumed gas: 0.010) [ True 1 2 3 4 5 ] - - location: 62 (just consumed gas: 0, remaining gas: 1039957.451 units remaining) + - location: 62 (just consumed gas: 0) [ 1 2 3 4 5 ] - - location: 62 (just consumed gas: 0.015, remaining gas: 1039957.436 units remaining) + - location: 62 (just consumed gas: 0.015) [ 1 2 3 4 5 ] - - location: 68 (just consumed gas: 0.025, remaining gas: 1039957.411 units remaining) + - location: 68 (just consumed gas: 0.025) [ 4 1 2 3 4 5 ] - - location: 70 (just consumed gas: 0.010, 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 (just consumed gas: 0.035, remaining gas: 1039957.366 units remaining) + - location: 75 (just consumed gas: 0.035) [ 0 1 2 3 4 5 ] - - location: 76 (just consumed gas: 0.010, remaining gas: 1039957.356 units remaining) + - location: 76 (just consumed gas: 0.010) [ True 1 2 3 4 5 ] - - location: 77 (just consumed gas: 0, remaining gas: 1039957.356 units remaining) + - location: 77 (just consumed gas: 0) [ 1 2 3 4 5 ] - - location: 77 (just consumed gas: 0.015, remaining gas: 1039957.341 units remaining) + - location: 77 (just consumed gas: 0.015) [ 1 2 3 4 5 ] - - location: 83 (just consumed gas: 0.026, remaining gas: 1039957.315 units remaining) + - location: 83 (just consumed gas: 0.026) [ 5 1 2 3 4 5 ] - - location: 85 (just consumed gas: 0.010, 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 (just consumed gas: 0.035, remaining gas: 1039957.270 units remaining) + - location: 90 (just consumed gas: 0.035) [ 0 1 2 3 4 5 ] - - location: 91 (just consumed gas: 0.010, remaining gas: 1039957.260 units remaining) + - location: 91 (just consumed gas: 0.010) [ True 1 2 3 4 5 ] - - location: 92 (just consumed gas: 0, remaining gas: 1039957.260 units remaining) + - location: 92 (just consumed gas: 0) [ 1 2 3 4 5 ] - - location: 92 (just consumed gas: 0.015, remaining gas: 1039957.245 units remaining) + - location: 92 (just consumed gas: 0.015) [ 1 2 3 4 5 ] - - location: 98 (just consumed gas: 0.042, remaining gas: 1039957.203 units remaining) + - location: 98 (just consumed gas: 0.042) [ ] - - location: 100 (just consumed gas: 0.010, remaining gas: 1039957.193 units remaining) + - location: 100 (just consumed gas: 0.010) [ Unit ] - - location: 101 (just consumed gas: 0.010, remaining gas: 1039957.183 units remaining) + - location: 101 (just consumed gas: 0.010) [ {} Unit ] - - location: 103 (just consumed gas: 0.010, 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 da2eaf24f1a8..2ce9956d65cd 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 (just consumed gas: 25.562, remaining gas: 1039974.438 units remaining) + - location: 25 (just consumed gas: 25.562) [ (Pair (Pair -8 2) None None None None) ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039974.428 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair -8 2) ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039974.418 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair -8 2) (Pair -8 2) ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039974.408 units remaining) + - location: 27 (just consumed gas: 0.010) [ -8 2 (Pair -8 2) ] - - location: 28 (just consumed gas: 0.020, remaining gas: 1039974.388 units remaining) + - location: 28 (just consumed gas: 0.020) [ 8 2 (Pair -8 2) ] - - location: 29 (just consumed gas: 0, remaining gas: 1039974.388 units remaining) + - location: 29 (just consumed gas: 0) [ 2 (Pair -8 2) ] - - location: 31 (just consumed gas: 0.020, remaining gas: 1039974.368 units remaining) + - location: 31 (just consumed gas: 0.020) [ 2 (Pair -8 2) ] - - location: 29 (just consumed gas: 0.025, remaining gas: 1039974.343 units remaining) + - location: 29 (just consumed gas: 0.025) [ 8 2 (Pair -8 2) ] - - location: 32 (just consumed gas: 0.105, remaining gas: 1039974.238 units remaining) + - location: 32 (just consumed gas: 0.105) [ (Some (Pair 4 0)) (Pair -8 2) ] - - location: 33 (just consumed gas: 0.010, remaining gas: 1039974.228 units remaining) + - location: 33 (just consumed gas: 0.010) [ (Pair -8 2) (Some (Pair 4 0)) ] - - location: 34 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039974.208 units remaining) + - location: 35 (just consumed gas: 0.010) [ -8 2 (Pair -8 2) (Some (Pair 4 0)) ] - - location: 36 (just consumed gas: 0.020, remaining gas: 1039974.188 units remaining) + - location: 36 (just consumed gas: 0.020) [ 8 2 (Pair -8 2) (Some (Pair 4 0)) ] - - location: 37 (just consumed gas: 0.105, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.020, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.105, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.105, 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 (just consumed gas: 0, remaining gas: 1039973.778 units remaining) + - location: 49 (just consumed gas: 0) [ (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 52 (just consumed gas: 0.010, remaining gas: 1039973.768 units remaining) + - location: 52 (just consumed gas: 0.010) [ (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 49 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 3674478b1571..4c948c2402f2 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 (just consumed gas: 25.562, remaining gas: 1039974.438 units remaining) + - location: 25 (just consumed gas: 25.562) [ (Pair (Pair 10 -3) None None None None) ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039974.428 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair 10 -3) ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039974.418 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair 10 -3) (Pair 10 -3) ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039974.408 units remaining) + - location: 27 (just consumed gas: 0.010) [ 10 -3 (Pair 10 -3) ] - - location: 28 (just consumed gas: 0.020, remaining gas: 1039974.388 units remaining) + - location: 28 (just consumed gas: 0.020) [ 10 -3 (Pair 10 -3) ] - - location: 29 (just consumed gas: 0, remaining gas: 1039974.388 units remaining) + - location: 29 (just consumed gas: 0) [ -3 (Pair 10 -3) ] - - location: 31 (just consumed gas: 0.020, remaining gas: 1039974.368 units remaining) + - location: 31 (just consumed gas: 0.020) [ 3 (Pair 10 -3) ] - - location: 29 (just consumed gas: 0.025, remaining gas: 1039974.343 units remaining) + - location: 29 (just consumed gas: 0.025) [ 10 3 (Pair 10 -3) ] - - location: 32 (just consumed gas: 0.105, remaining gas: 1039974.238 units remaining) + - location: 32 (just consumed gas: 0.105) [ (Some (Pair 3 1)) (Pair 10 -3) ] - - location: 33 (just consumed gas: 0.010, remaining gas: 1039974.228 units remaining) + - location: 33 (just consumed gas: 0.010) [ (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 34 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039974.208 units remaining) + - location: 35 (just consumed gas: 0.010) [ 10 -3 (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 36 (just consumed gas: 0.020, remaining gas: 1039974.188 units remaining) + - location: 36 (just consumed gas: 0.020) [ 10 -3 (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 37 (just consumed gas: 0.105, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.020, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.105, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.105, 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 (just consumed gas: 0, remaining gas: 1039973.778 units remaining) + - location: 49 (just consumed gas: 0) [ (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 52 (just consumed gas: 0.010, remaining gas: 1039973.768 units remaining) + - location: 52 (just consumed gas: 0.010) [ (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 49 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 5b3b81e4d849..0dba3f010c83 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 (just consumed gas: 25.562, remaining gas: 1039974.438 units remaining) + - location: 25 (just consumed gas: 25.562) [ (Pair (Pair 10 0) None None None None) ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039974.428 units remaining) + - location: 25 (just consumed gas: 0.010) [ (Pair 10 0) ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039974.418 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Pair 10 0) (Pair 10 0) ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039974.408 units remaining) + - location: 27 (just consumed gas: 0.010) [ 10 0 (Pair 10 0) ] - - location: 28 (just consumed gas: 0.020, remaining gas: 1039974.388 units remaining) + - location: 28 (just consumed gas: 0.020) [ 10 0 (Pair 10 0) ] - - location: 29 (just consumed gas: 0, remaining gas: 1039974.388 units remaining) + - location: 29 (just consumed gas: 0) [ 0 (Pair 10 0) ] - - location: 31 (just consumed gas: 0.020, remaining gas: 1039974.368 units remaining) + - location: 31 (just consumed gas: 0.020) [ 0 (Pair 10 0) ] - - location: 29 (just consumed gas: 0.025, remaining gas: 1039974.343 units remaining) + - location: 29 (just consumed gas: 0.025) [ 10 0 (Pair 10 0) ] - - location: 32 (just consumed gas: 0.105, remaining gas: 1039974.238 units remaining) + - location: 32 (just consumed gas: 0.105) [ None (Pair 10 0) ] - - location: 33 (just consumed gas: 0.010, remaining gas: 1039974.228 units remaining) + - location: 33 (just consumed gas: 0.010) [ (Pair 10 0) None ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039974.218 units remaining) + - location: 34 (just consumed gas: 0.010) [ (Pair 10 0) (Pair 10 0) None ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039974.208 units remaining) + - location: 35 (just consumed gas: 0.010) [ 10 0 (Pair 10 0) None ] - - location: 36 (just consumed gas: 0.020, remaining gas: 1039974.188 units remaining) + - location: 36 (just consumed gas: 0.020) [ 10 0 (Pair 10 0) None ] - - location: 37 (just consumed gas: 0.105, remaining gas: 1039974.083 units remaining) + - location: 37 (just consumed gas: 0.105) [ None (Pair 10 0) None ] - - location: 38 (just consumed gas: 0.010, remaining gas: 1039974.073 units remaining) + - location: 38 (just consumed gas: 0.010) [ (Pair 10 0) None None ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039974.063 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair 10 0) (Pair 10 0) None None ] - - location: 40 (just consumed gas: 0.010, remaining gas: 1039974.053 units remaining) + - location: 40 (just consumed gas: 0.010) [ 10 0 (Pair 10 0) None None ] - - location: 41 (just consumed gas: 0, remaining gas: 1039974.053 units remaining) + - location: 41 (just consumed gas: 0) [ 0 (Pair 10 0) None None ] - - location: 43 (just consumed gas: 0.020, remaining gas: 1039974.033 units remaining) + - location: 43 (just consumed gas: 0.020) [ 0 (Pair 10 0) None None ] - - location: 41 (just consumed gas: 0.025, remaining gas: 1039974.008 units remaining) + - location: 41 (just consumed gas: 0.025) [ 10 0 (Pair 10 0) None None ] - - location: 44 (just consumed gas: 0.105, remaining gas: 1039973.903 units remaining) + - location: 44 (just consumed gas: 0.105) [ None (Pair 10 0) None None ] - - location: 45 (just consumed gas: 0.010, remaining gas: 1039973.893 units remaining) + - location: 45 (just consumed gas: 0.010) [ (Pair 10 0) None None None ] - - location: 46 (just consumed gas: 0.010, remaining gas: 1039973.883 units remaining) + - location: 46 (just consumed gas: 0.010) [ 10 0 None None None ] - - location: 47 (just consumed gas: 0.105, remaining gas: 1039973.778 units remaining) + - location: 47 (just consumed gas: 0.105) [ None None None None ] - - location: 49 (just consumed gas: 0, remaining gas: 1039973.778 units remaining) + - location: 49 (just consumed gas: 0) [ None None ] - - location: 52 (just consumed gas: 0.010, remaining gas: 1039973.768 units remaining) + - location: 52 (just consumed gas: 0.010) [ (Pair None None) ] - - location: 49 (just consumed gas: 0.025, remaining gas: 1039973.743 units remaining) + - location: 49 (just consumed gas: 0.025) [ None (Pair None None) ] - - location: 49 (just consumed gas: 0.010, remaining gas: 1039973.733 units remaining) + - location: 49 (just consumed gas: 0.010) [ None None (Pair None None) ] - - location: 49 (just consumed gas: 0, remaining gas: 1039973.733 units remaining) + - location: 49 (just consumed gas: 0) [ None None (Pair None None) ] - - location: 53 (just consumed gas: 0, remaining gas: 1039973.733 units remaining) + - location: 53 (just consumed gas: 0) [ None (Pair None None) ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039973.723 units remaining) + - location: 55 (just consumed gas: 0.010) [ (Pair None None None) ] - - location: 53 (just consumed gas: 0.025, remaining gas: 1039973.698 units remaining) + - location: 53 (just consumed gas: 0.025) [ None (Pair None None None) ] - - location: 56 (just consumed gas: 0.010, remaining gas: 1039973.688 units remaining) + - location: 56 (just consumed gas: 0.010) [ (Pair None None None None) ] - - location: 57 (just consumed gas: 0.010, remaining gas: 1039973.678 units remaining) + - location: 57 (just consumed gas: 0.010) [ {} (Pair None None None None) ] - - location: 59 (just consumed gas: 0.010, 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 1cfd85f5ce7f..452227cb2b72 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 (just consumed gas: 14.009, remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 10 (Left 0)) (Left None)) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 (Left 0)) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 (Left 0) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left 0) 10 ] - - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 0 10 ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) + - location: 24 (just consumed gas: 0.010) [ 10 0 ] - - location: 25 (just consumed gas: 0.080, remaining gas: 1039985.871 units remaining) + - location: 25 (just consumed gas: 0.080) [ None ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039985.861 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Left None) ] - - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.846 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Left None) ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.836 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Left None) ] - - location: 41 (just consumed gas: 0.010, 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 eb6cf79ed47c..2fa957bfce53 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 (just consumed gas: 14.009, remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 10 (Left 10)) (Left None)) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 (Left 10)) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 (Left 10) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left 10) 10 ] - - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 10 10 ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) + - location: 24 (just consumed gas: 0.010) [ 10 10 ] - - location: 25 (just consumed gas: 0.080, remaining gas: 1039985.871 units remaining) + - location: 25 (just consumed gas: 0.080) [ (Some (Pair 1 0)) ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039985.861 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Left (Some (Pair 1 0))) ] - - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.846 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Left (Some (Pair 1 0))) ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.836 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Left (Some (Pair 1 0))) ] - - location: 41 (just consumed gas: 0.010, 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 eb47aabc69b3..13a77fc639d2 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 (just consumed gas: 14.009, remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 10 (Left 3)) (Left None)) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 (Left 3)) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 (Left 3) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left 3) 10 ] - - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 3 10 ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) + - location: 24 (just consumed gas: 0.010) [ 10 3 ] - - location: 25 (just consumed gas: 0.080, remaining gas: 1039985.871 units remaining) + - location: 25 (just consumed gas: 0.080) [ (Some (Pair 3 1)) ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039985.861 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Left (Some (Pair 3 1))) ] - - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.846 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Left (Some (Pair 3 1))) ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.836 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Left (Some (Pair 3 1))) ] - - location: 41 (just consumed gas: 0.010, 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 48b9dc196e55..ba4baa1e7a72 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 (just consumed gas: 14.009, remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 10 (Right 0)) (Left None)) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 (Right 0)) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 (Right 0) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Right 0) 10 ] - - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 0 10 ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) + - location: 32 (just consumed gas: 0.010) [ 10 0 ] - - location: 33 (just consumed gas: 0.070, remaining gas: 1039985.881 units remaining) + - location: 33 (just consumed gas: 0.070) [ None ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039985.871 units remaining) + - location: 34 (just consumed gas: 0.010) [ (Right None) ] - - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.856 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Right None) ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.846 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Right None) ] - - location: 41 (just consumed gas: 0.010, 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 e2d9c53fec70..c2d300890aca 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 (just consumed gas: 14.009, remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 10 (Right 10)) (Left None)) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 (Right 10)) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 (Right 10) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Right 10) 10 ] - - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 10 10 ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) + - location: 32 (just consumed gas: 0.010) [ 10 10 ] - - location: 33 (just consumed gas: 0.070, remaining gas: 1039985.881 units remaining) + - location: 33 (just consumed gas: 0.070) [ (Some (Pair 1 0)) ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039985.871 units remaining) + - location: 34 (just consumed gas: 0.010) [ (Right (Some (Pair 1 0))) ] - - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.856 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Right (Some (Pair 1 0))) ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.846 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Right (Some (Pair 1 0))) ] - - location: 41 (just consumed gas: 0.010, 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 92efc7fd0ffa..fa05fecca258 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 (just consumed gas: 14.009, remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 10 (Right 3)) (Left None)) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 (Right 3)) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 (Right 3) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Right 3) 10 ] - - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 3 10 ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) + - location: 32 (just consumed gas: 0.010) [ 10 3 ] - - location: 33 (just consumed gas: 0.070, remaining gas: 1039985.881 units remaining) + - location: 33 (just consumed gas: 0.070) [ (Some (Pair 3 1)) ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039985.871 units remaining) + - location: 34 (just consumed gas: 0.010) [ (Right (Some (Pair 3 1))) ] - - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.856 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Right (Some (Pair 3 1))) ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.846 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Right (Some (Pair 3 1))) ] - - location: 41 (just consumed gas: 0.010, 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 772dcd8f493d..fe75ab5685b1 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 (just consumed gas: 14.009, remaining gas: 1039985.991 units remaining) + - location: 19 (just consumed gas: 14.009) [ (Pair (Pair 5 (Right 10)) (Left None)) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039985.981 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 5 (Right 10)) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.971 units remaining) + - location: 20 (just consumed gas: 0.010) [ 5 (Right 10) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039985.961 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Right 10) 5 ] - - location: 22 (just consumed gas: 0, remaining gas: 1039985.961 units remaining) + - location: 22 (just consumed gas: 0) [ 10 5 ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039985.951 units remaining) + - location: 32 (just consumed gas: 0.010) [ 5 10 ] - - location: 33 (just consumed gas: 0.070, remaining gas: 1039985.881 units remaining) + - location: 33 (just consumed gas: 0.070) [ (Some (Pair 0 5)) ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039985.871 units remaining) + - location: 34 (just consumed gas: 0.010) [ (Right (Some (Pair 0 5))) ] - - location: 22 (just consumed gas: 0.015, remaining gas: 1039985.856 units remaining) + - location: 22 (just consumed gas: 0.015) [ (Right (Some (Pair 0 5))) ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039985.846 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} (Right (Some (Pair 0 5))) ] - - location: 41 (just consumed gas: 0.010, 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 294d19add5d0..acf5babae6da 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 (just consumed gas: 13.135, remaining gas: 1039986.865 units remaining) + - location: 7 (just consumed gas: 13.135) [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039986.855 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039986.845 units remaining) + - location: 8 (just consumed gas: 0.010) [ Unit ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039986.835 units remaining) + - location: 9 (just consumed gas: 0.010) [ 10 Unit ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039986.825 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Left 10) Unit ] - - location: 14 (just consumed gas: 0.487, remaining gas: 1039986.338 units remaining) + - location: 14 (just consumed gas: 0.487) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039986.328 units remaining) + - location: 15 (just consumed gas: 0.010) [ "lorem ipsum" 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039986.318 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Right "lorem ipsum") 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 20 (just consumed gas: 0.572, remaining gas: 1039985.746 units remaining) + - location: 20 (just consumed gas: 0.572) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.736 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039985.726 units remaining) + - location: 26 (just consumed gas: 0.010) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d {} 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039985.716 units remaining) + - location: 27 (just consumed gas: 0.010) [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039985.706 units remaining) + - location: 28 (just consumed gas: 0.010) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } Unit ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039985.696 units remaining) + - location: 29 (just consumed gas: 0.010) [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a ; 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } Unit ] - - location: 30 (just consumed gas: 0.010, 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 9e6e82aa2521..0d8ca1e99fdc 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 (just consumed gas: 8.379, remaining gas: 1039991.621 units remaining) + - location: 9 (just consumed gas: 8.379) [ (Pair Unit {}) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039991.611 units remaining) + - location: 9 (just consumed gas: 0.010) [ ] - - location: 10 (just consumed gas: 0.300, remaining gas: 1039991.311 units remaining) + - location: 10 (just consumed gas: 0.300) [ {} ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.301 units remaining) + - location: 13 (just consumed gas: 0.010) [ "world" {} ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.291 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some "world") {} ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.281 units remaining) + - location: 17 (just consumed gas: 0.010) [ "hello" (Some "world") {} ] - - location: 20 (just consumed gas: 0.090, remaining gas: 1039991.191 units remaining) + - location: 20 (just consumed gas: 0.090) [ { Elt "hello" "world" } ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039991.181 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} { Elt "hello" "world" } ] - - location: 23 (just consumed gas: 0.010, 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 0fe584dafbfa..cfbf228d2e36 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 (just consumed gas: 10.901, remaining gas: 1039989.099 units remaining) + - location: 7 (just consumed gas: 10.901) [ (Pair "" "?") ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.089 units remaining) + - location: 7 (just consumed gas: 0.010) [ "" ] - - location: 8 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039989.059 units remaining) + - location: 12 (just consumed gas: 0.010) [ "_abc" "" ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.049 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} "_abc" "" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.039 units remaining) + - location: 17 (just consumed gas: 0.010) [ "_abc" {} "" ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.029 units remaining) + - location: 18 (just consumed gas: 0.010) [ { "_abc" } "" ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.019 units remaining) + - location: 19 (just consumed gas: 0.010) [ "" { "_abc" } ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.009 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "" ; "_abc" } ] - - location: 21 (just consumed gas: 0.122, remaining gas: 1039988.887 units remaining) + - location: 21 (just consumed gas: 0.122) [ "_abc" ] - - location: 23 (just consumed gas: 0.025, remaining gas: 1039988.862 units remaining) + - location: 23 (just consumed gas: 0.025) [ "_abc" ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.852 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} "_abc" ] - - location: 26 (just consumed gas: 0.010, 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 113091532ae1..9a3203566787 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 (just consumed gas: 10.941, remaining gas: 1039989.059 units remaining) + - location: 7 (just consumed gas: 10.941) [ (Pair "test" "?") ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.049 units remaining) + - location: 7 (just consumed gas: 0.010) [ "test" ] - - location: 8 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039989.019 units remaining) + - location: 12 (just consumed gas: 0.010) [ "_abc" "test" ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.009 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} "_abc" "test" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.999 units remaining) + - location: 17 (just consumed gas: 0.010) [ "_abc" {} "test" ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.989 units remaining) + - location: 18 (just consumed gas: 0.010) [ { "_abc" } "test" ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.979 units remaining) + - location: 19 (just consumed gas: 0.010) [ "test" { "_abc" } ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.969 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "test" ; "_abc" } ] - - location: 21 (just consumed gas: 0.124, remaining gas: 1039988.845 units remaining) + - location: 21 (just consumed gas: 0.124) [ "test_abc" ] - - location: 23 (just consumed gas: 0.025, remaining gas: 1039988.820 units remaining) + - location: 23 (just consumed gas: 0.025) [ "test_abc" ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.810 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} "test_abc" ] - - location: 26 (just consumed gas: 0.010, 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 c6b4b5b10e7f..2ad44203cbc4 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 (just consumed gas: 7.822, remaining gas: 1039992.178 units remaining) + - location: 8 (just consumed gas: 7.822) [ (Pair { 1 ; 2 ; 3 ; 4 } 111) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.168 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 ; 4 } ] - - location: 9 (just consumed gas: 0, remaining gas: 1039992.168 units remaining) + - location: 9 (just consumed gas: 0) [ 1 { 2 ; 3 ; 4 } ] - - location: 11 (just consumed gas: 0, remaining gas: 1039992.168 units remaining) + - location: 11 (just consumed gas: 0) [ { 2 ; 3 ; 4 } ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.158 units remaining) + - location: 13 (just consumed gas: 0.010) [ ] - - location: 11 (just consumed gas: 0.025, remaining gas: 1039992.133 units remaining) + - location: 11 (just consumed gas: 0.025) [ 1 ] - - location: 9 (just consumed gas: 0.015, remaining gas: 1039992.118 units remaining) + - location: 9 (just consumed gas: 0.015) [ 1 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.108 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} 1 ] - - location: 20 (just consumed gas: 0.010, 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 3b9ca911bab3..d31b2ce2019a 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 (just consumed gas: 7.522, remaining gas: 1039992.478 units remaining) + - location: 8 (just consumed gas: 7.522) [ (Pair { 4 } 111) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.468 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 4 } ] - - location: 9 (just consumed gas: 0, remaining gas: 1039992.468 units remaining) + - location: 9 (just consumed gas: 0) [ 4 {} ] - - location: 11 (just consumed gas: 0, remaining gas: 1039992.468 units remaining) + - location: 11 (just consumed gas: 0) [ {} ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.458 units remaining) + - location: 13 (just consumed gas: 0.010) [ ] - - location: 11 (just consumed gas: 0.025, remaining gas: 1039992.433 units remaining) + - location: 11 (just consumed gas: 0.025) [ 4 ] - - location: 9 (just consumed gas: 0.015, remaining gas: 1039992.418 units remaining) + - location: 9 (just consumed gas: 0.015) [ 4 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.408 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} 4 ] - - location: 20 (just consumed gas: 0.010, 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 0a5f4ae1a3c1..2db900d6ec5c 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 (just consumed gas: 8.079, remaining gas: 1039991.921 units remaining) + - location: 13 (just consumed gas: 8.079) [ (Pair "hello" (Some 4) {}) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.911 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair (Some 4) {}) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039991.911 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair (Some 4) {}) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.901 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 4) {} ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.876 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" (Some 4) {} ] - - location: 17 (just consumed gas: 0.095, remaining gas: 1039991.781 units remaining) + - location: 17 (just consumed gas: 0.095) [ None { Elt "hello" 4 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.771 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair None { Elt "hello" 4 }) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.761 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair None { Elt "hello" 4 }) ] - - location: 21 (just consumed gas: 0.010, 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 831dc4310cce..14e03047a214 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 (just consumed gas: 8.403, remaining gas: 1039991.597 units remaining) + - location: 13 (just consumed gas: 8.403) [ (Pair "hi" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.587 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hi" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039991.587 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.577 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.552 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hi" (Some 5) { Elt "hello" 4 } ] - - location: 17 (just consumed gas: 0.092, remaining gas: 1039991.460 units remaining) + - location: 17 (just consumed gas: 0.092) [ None { Elt "hello" 4 ; Elt "hi" 5 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.450 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.440 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 21 (just consumed gas: 0.010, 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 f046df540576..dee8f1025d7c 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 (just consumed gas: 8.433, remaining gas: 1039991.567 units remaining) + - location: 13 (just consumed gas: 8.433) [ (Pair "hello" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.557 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039991.557 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.547 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.522 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" (Some 5) { Elt "hello" 4 } ] - - location: 17 (just consumed gas: 0.110, remaining gas: 1039991.412 units remaining) + - location: 17 (just consumed gas: 0.110) [ (Some 4) { Elt "hello" 5 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.402 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.392 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 21 (just consumed gas: 0.010, 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 2f8f8940d71b..622b2279e60e 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 (just consumed gas: 8.588, remaining gas: 1039991.412 units remaining) + - location: 13 (just consumed gas: 8.588) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.402 units remaining) + - location: 13 (just consumed gas: 0.010) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039991.402 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.392 units remaining) + - location: 16 (just consumed gas: 0.010) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.367 units remaining) + - location: 14 (just consumed gas: 0.025) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (just consumed gas: 0.089, remaining gas: 1039991.278 units remaining) + - location: 17 (just consumed gas: 0.089) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.268 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.258 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (just consumed gas: 0.010, 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 f4f999052b6b..4395e478bf74 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 (just consumed gas: 8.588, remaining gas: 1039991.412 units remaining) + - location: 13 (just consumed gas: 8.588) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.402 units remaining) + - location: 13 (just consumed gas: 0.010) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039991.402 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.392 units remaining) + - location: 16 (just consumed gas: 0.010) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.367 units remaining) + - location: 14 (just consumed gas: 0.025) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (just consumed gas: 0.089, remaining gas: 1039991.278 units remaining) + - location: 17 (just consumed gas: 0.089) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.268 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.258 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (just consumed gas: 0.010, 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 1fa697d3ed51..9a07f3eecbee 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 (just consumed gas: 8.333, remaining gas: 1039991.667 units remaining) + - location: 13 (just consumed gas: 8.333) [ (Pair "hello" None { Elt "hello" 4 }) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.657 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair None { Elt "hello" 4 }) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039991.657 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None { Elt "hello" 4 }) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.647 units remaining) + - location: 16 (just consumed gas: 0.010) [ None { Elt "hello" 4 } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.622 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" None { Elt "hello" 4 } ] - - location: 17 (just consumed gas: 0.110, remaining gas: 1039991.512 units remaining) + - location: 17 (just consumed gas: 0.110) [ (Some 4) {} ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.502 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair (Some 4) {}) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.492 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair (Some 4) {}) ] - - location: 21 (just consumed gas: 0.010, 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 4e22387bb354..c2f9be951e0c 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 (just consumed gas: 7.979, remaining gas: 1039992.021 units remaining) + - location: 13 (just consumed gas: 7.979) [ (Pair "hello" None {}) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039992.011 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair None {}) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039992.011 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair None {}) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.001 units remaining) + - location: 16 (just consumed gas: 0.010) [ None {} ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039991.976 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" None {} ] - - location: 17 (just consumed gas: 0.095, remaining gas: 1039991.881 units remaining) + - location: 17 (just consumed gas: 0.095) [ None {} ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039991.871 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair None {}) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039991.861 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Pair None {}) ] - - location: 21 (just consumed gas: 0.010, 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 0929825a299d..d5414f778bb5 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 (just consumed gas: 11.189, remaining gas: 1039988.811 units remaining) + - location: 12 (just consumed gas: 11.189) [ (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 12 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039988.791 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.781 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.771 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "1" "one" ; Elt "2" "two" } ] - - location: 19 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.083, remaining gas: 1039988.653 units remaining) + - location: 20 (just consumed gas: 0.083) [ (Some "one") { Elt "1" "one" ; Elt "2" "two" } ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.643 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.633 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 24 (just consumed gas: 0.010, 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 4171b2359758..181c9bad636b 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 (just consumed gas: 10.830, remaining gas: 1039989.170 units remaining) + - location: 12 (just consumed gas: 10.830) [ (Pair "" None { Elt "hello" "hi" }) ] - - location: 12 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039989.150 units remaining) + - location: 13 (just consumed gas: 0.010) [ "" (Pair "" None { Elt "hello" "hi" }) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039989.150 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "" None { Elt "hello" "hi" }) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.140 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair None { Elt "hello" "hi" }) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.130 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "hello" "hi" } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.120 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039989.095 units remaining) + - location: 14 (just consumed gas: 0.025) [ "" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (just consumed gas: 0.080, remaining gas: 1039989.015 units remaining) + - location: 20 (just consumed gas: 0.080) [ None { Elt "hello" "hi" } ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.005 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair None { Elt "hello" "hi" }) ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.995 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Pair None { Elt "hello" "hi" }) ] - - location: 24 (just consumed gas: 0.010, 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 1cde614c58d7..f085941c3e80 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 (just consumed gas: 10.880, remaining gas: 1039989.120 units remaining) + - location: 12 (just consumed gas: 10.880) [ (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 12 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039989.100 units remaining) + - location: 13 (just consumed gas: 0.010) [ "hello" (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039989.100 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.090 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair None { Elt "hello" "hi" }) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.080 units remaining) + - location: 18 (just consumed gas: 0.010) [ { Elt "hello" "hi" } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.070 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039989.045 units remaining) + - location: 14 (just consumed gas: 0.025) [ "hello" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (just consumed gas: 0.090, remaining gas: 1039988.955 units remaining) + - location: 20 (just consumed gas: 0.090) [ (Some "hi") { Elt "hello" "hi" } ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.945 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Pair (Some "hi") { Elt "hello" "hi" }) ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039988.935 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Pair (Some "hi") { Elt "hello" "hi" }) ] - - location: 24 (just consumed gas: 0.010, 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 c27c05a585d6..8281de4b77a3 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 (just consumed gas: 330.053, remaining gas: 1039669.947 units remaining) + - location: 8 (just consumed gas: 330.053) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039669.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" ] - - location: 9 (just consumed gas: 0.605, remaining gas: 1039669.332 units remaining) + - location: 9 (just consumed gas: 0.605) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039669.322 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039669.312 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") ] - - location: 13 (just consumed gas: 0.010, 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 30758490f1d9..4463ec2b7680 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 (just consumed gas: 330.053, remaining gas: 1039669.947 units remaining) + - location: 8 (just consumed gas: 330.053) [ (Pair "edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES" None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039669.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ "edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES" ] - - location: 9 (just consumed gas: 0.605, remaining gas: 1039669.332 units remaining) + - location: 9 (just consumed gas: 0.605) [ "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k" ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039669.322 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039669.312 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") ] - - location: 13 (just consumed gas: 0.010, 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 5324804ff488..aaeee48e17cc 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 (just consumed gas: 4.929, remaining gas: 1039995.071 units remaining) + - location: 7 (just consumed gas: 4.929) [ (Pair "12345" 0x00) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.061 units remaining) + - location: 7 (just consumed gas: 0.010) [ "12345" ] - - location: 8 (just consumed gas: 0.266, remaining gas: 1039994.795 units remaining) + - location: 8 (just consumed gas: 0.266) [ 0x0501000000053132333435 ] - - location: 9 (just consumed gas: 0.442, remaining gas: 1039994.353 units remaining) + - location: 9 (just consumed gas: 0.442) [ 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.343 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f ] - - location: 12 (just consumed gas: 0.010, 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 f3b6ae008f02..4b693dc0b658 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 (just consumed gas: 4.949, remaining gas: 1039995.051 units remaining) + - location: 7 (just consumed gas: 4.949) [ (Pair "abcdefg" 0x00) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.041 units remaining) + - location: 7 (just consumed gas: 0.010) [ "abcdefg" ] - - location: 8 (just consumed gas: 0.286, remaining gas: 1039994.755 units remaining) + - location: 8 (just consumed gas: 0.286) [ 0x05010000000761626364656667 ] - - location: 9 (just consumed gas: 0.444, remaining gas: 1039994.311 units remaining) + - location: 9 (just consumed gas: 0.444) [ 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.301 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e ] - - location: 12 (just consumed gas: 0.010, 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 007dd67f3f4c..8b1e209944d6 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 (just consumed gas: 7.320, remaining gas: 1039992.680 units remaining) + - location: 8 (just consumed gas: 7.320) [ (Pair False None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.670 units remaining) + - location: 8 (just consumed gas: 0.010) [ False ] - - location: 9 (just consumed gas: 0, remaining gas: 1039992.670 units remaining) + - location: 9 (just consumed gas: 0) [ ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039992.660 units remaining) + - location: 15 (just consumed gas: 0.010) [ False ] - - location: 9 (just consumed gas: 0.015, remaining gas: 1039992.645 units remaining) + - location: 9 (just consumed gas: 0.015) [ False ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.635 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.625 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 21 (just consumed gas: 0.010, 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 5803312bb932..0b5e0ae39f4a 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 (just consumed gas: 7.320, remaining gas: 1039992.680 units remaining) + - location: 8 (just consumed gas: 7.320) [ (Pair True None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.670 units remaining) + - location: 8 (just consumed gas: 0.010) [ True ] - - location: 9 (just consumed gas: 0, remaining gas: 1039992.670 units remaining) + - location: 9 (just consumed gas: 0) [ ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.660 units remaining) + - location: 11 (just consumed gas: 0.010) [ True ] - - location: 9 (just consumed gas: 0.015, remaining gas: 1039992.645 units remaining) + - location: 9 (just consumed gas: 0.015) [ True ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039992.635 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.625 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 21 (just consumed gas: 0.010, 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 558f445f6d6a..9a86f38a57a1 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 (just consumed gas: 6.419, remaining gas: 1039993.581 units remaining) + - location: 8 (just consumed gas: 6.419) [ (Pair (Some "hello") "?") ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039993.571 units remaining) + - location: 8 (just consumed gas: 0.010) [ (Some "hello") ] - - location: 10 (just consumed gas: 0, remaining gas: 1039993.571 units remaining) + - location: 10 (just consumed gas: 0) [ "hello" ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.556 units remaining) + - location: 10 (just consumed gas: 0.015) [ "hello" ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.546 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} "hello" ] - - location: 18 (just consumed gas: 0.010, 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 b75ffd6cb5de..f162bb1dd7b8 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 (just consumed gas: 6.255, remaining gas: 1039993.745 units remaining) + - location: 8 (just consumed gas: 6.255) [ (Pair None "?") ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039993.735 units remaining) + - location: 8 (just consumed gas: 0.010) [ None ] - - location: 10 (just consumed gas: 0, remaining gas: 1039993.735 units remaining) + - location: 10 (just consumed gas: 0) [ ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.725 units remaining) + - location: 12 (just consumed gas: 0.010) [ "" ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.710 units remaining) + - location: 10 (just consumed gas: 0.015) [ "" ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.700 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} "" ] - - location: 18 (just consumed gas: 0.010, 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 7ba77f1e1eb1..9fcdc0d2ab45 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 (just consumed gas: 5.053, remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair 0 None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some 0) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some 0) ] - - location: 13 (just consumed gas: 0.010, 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 284ad93b4986..5b5b34a16f5d 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 (just consumed gas: 5.053, remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair 1 None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010) [ 1 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some 1) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some 1) ] - - location: 13 (just consumed gas: 0.010, 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 007095d9a31b..9c29db7e61b9 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 (just consumed gas: 5.053, remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair 9999 None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ 9999 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010) [ 9999 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some 9999) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some 9999) ] - - location: 13 (just consumed gas: 0.010, 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 2298ea8367dc..3179bd136585 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 (just consumed gas: 5.053, remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair 0x48656c6c6f2c20776f726c6421 None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x48656c6c6f2c20776f726c6421 ] - - location: 9 (just consumed gas: 1.457, remaining gas: 1039993.480 units remaining) + - location: 9 (just consumed gas: 1.457) [ 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.470 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.460 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) ] - - location: 13 (just consumed gas: 0.010, 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 241eff51aed6..88d13d37ddb9 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 (just consumed gas: 7.244, remaining gas: 1039992.756 units remaining) + - location: 11 (just consumed gas: 7.244) [ (Pair (Left True) (Left "X")) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.746 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Left True) ] - - location: 12 (just consumed gas: 0, remaining gas: 1039992.746 units remaining) + - location: 12 (just consumed gas: 0) [ True ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.736 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right True) ] - - location: 12 (just consumed gas: 0.015, remaining gas: 1039992.721 units remaining) + - location: 12 (just consumed gas: 0.015) [ (Right True) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.711 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Right True) ] - - location: 21 (just consumed gas: 0.010, 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 4431e2d318c7..0c89399b653a 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 (just consumed gas: 7.268, remaining gas: 1039992.732 units remaining) + - location: 11 (just consumed gas: 7.268) [ (Pair (Right "a") (Left "X")) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039992.722 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Right "a") ] - - location: 12 (just consumed gas: 0, remaining gas: 1039992.722 units remaining) + - location: 12 (just consumed gas: 0) [ "a" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.712 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Left "a") ] - - location: 12 (just consumed gas: 0.015, remaining gas: 1039992.697 units remaining) + - location: 12 (just consumed gas: 0.015) [ (Left "a") ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039992.687 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Left "a") ] - - location: 21 (just consumed gas: 0.010, 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 9c61e4648d80..a1a6c4e96bfc 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 (just consumed gas: 4.267, remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 111) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 1 ] - - location: 11 (just consumed gas: 0.010, 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 a99c4f8a8560..38d080a90950 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 (just consumed gas: 5.977, remaining gas: 1039994.023 units remaining) + - location: 8 (just consumed gas: 5.977) [ (Pair { "d" ; "e" ; "f" } "abc") ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.013 units remaining) + - location: 8 (just consumed gas: 0.010) [ { "d" ; "e" ; "f" } "abc" ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.003 units remaining) + - location: 9 (just consumed gas: 0.010) [ "abc" { "d" ; "e" ; "f" } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.993 units remaining) + - location: 10 (just consumed gas: 0.010) [ { "abc" ; "d" ; "e" ; "f" } ] - - location: 11 (just consumed gas: 0.143, remaining gas: 1039993.850 units remaining) + - location: 11 (just consumed gas: 0.143) [ "abcdef" ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.840 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} "abcdef" ] - - location: 14 (just consumed gas: 0.010, 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 e8d82a2653ad..3a055e635ef0 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 (just consumed gas: 5.605, remaining gas: 1039994.395 units remaining) + - location: 8 (just consumed gas: 5.605) [ (Pair {} "abc") ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.385 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} "abc" ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.375 units remaining) + - location: 9 (just consumed gas: 0.010) [ "abc" {} ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.365 units remaining) + - location: 10 (just consumed gas: 0.010) [ { "abc" } ] - - location: 11 (just consumed gas: 0.111, remaining gas: 1039994.254 units remaining) + - location: 11 (just consumed gas: 0.111) [ "abc" ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.244 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} "abc" ] - - location: 14 (just consumed gas: 0.010, 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 406f69b4145c..30cee6651bd3 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 (just consumed gas: 5.861, remaining gas: 1039994.139 units remaining) + - location: 8 (just consumed gas: 5.861) [ (Pair { 0x00 ; 0x11 ; 0x00 } 0x) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.129 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 0x00 ; 0x11 ; 0x00 } 0x ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.119 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0x { 0x00 ; 0x11 ; 0x00 } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.109 units remaining) + - location: 10 (just consumed gas: 0.010) [ { 0x ; 0x00 ; 0x11 ; 0x00 } ] - - location: 11 (just consumed gas: 0.141, remaining gas: 1039993.968 units remaining) + - location: 11 (just consumed gas: 0.141) [ 0x001100 ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.958 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} 0x001100 ] - - location: 14 (just consumed gas: 0.010, 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 a66ebe17ada9..8bb6fc88f180 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 (just consumed gas: 5.561, remaining gas: 1039994.439 units remaining) + - location: 8 (just consumed gas: 5.561) [ (Pair {} 0x) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.429 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} 0x ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.419 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0x {} ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.409 units remaining) + - location: 10 (just consumed gas: 0.010) [ { 0x } ] - - location: 11 (just consumed gas: 0.110, remaining gas: 1039994.299 units remaining) + - location: 11 (just consumed gas: 0.110) [ 0x ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.289 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} 0x ] - - location: 14 (just consumed gas: 0.010, 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 e19651e0f149..88d16ace0fc9 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 (just consumed gas: 5.861, remaining gas: 1039994.139 units remaining) + - location: 8 (just consumed gas: 5.861) [ (Pair { 0xcd ; 0xef ; 0x00 } 0x00ab) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.129 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 0xcd ; 0xef ; 0x00 } 0x00ab ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.119 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0x00ab { 0xcd ; 0xef ; 0x00 } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.109 units remaining) + - location: 10 (just consumed gas: 0.010) [ { 0x00ab ; 0xcd ; 0xef ; 0x00 } ] - - location: 11 (just consumed gas: 0.142, remaining gas: 1039993.967 units remaining) + - location: 11 (just consumed gas: 0.142) [ 0x00abcdef00 ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.957 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} 0x00abcdef00 ] - - location: 14 (just consumed gas: 0.010, 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 db522c2bf296..0db79c4aa39a 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 (just consumed gas: 5.561, remaining gas: 1039994.439 units remaining) + - location: 8 (just consumed gas: 5.561) [ (Pair {} 0xabcd) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.429 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} 0xabcd ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.419 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0xabcd {} ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.409 units remaining) + - location: 10 (just consumed gas: 0.010) [ { 0xabcd } ] - - location: 11 (just consumed gas: 0.111, remaining gas: 1039994.298 units remaining) + - location: 11 (just consumed gas: 0.111) [ 0xabcd ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.288 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} 0xabcd ] - - location: 14 (just consumed gas: 0.010, 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 b8523917950e..141e0e3156b3 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 (just consumed gas: 4.561, remaining gas: 1039995.439 units remaining) + - location: 9 (just consumed gas: 4.561) [ (Pair { "1" ; "2" ; "3" } { "" }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.429 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "1" ; "2" ; "3" } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.419 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "1" ; "2" ; "3" } ] - - location: 12 (just consumed gas: 0.010, 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 efe1b29b389e..43409809a187 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 (just consumed gas: 4.561, remaining gas: 1039995.439 units remaining) + - location: 9 (just consumed gas: 4.561) [ (Pair { "a" ; "b" ; "c" } { "" }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.429 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.419 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 12 (just consumed gas: 0.010, 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 96fb4803b5de..843552e53286 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 (just consumed gas: 4.189, remaining gas: 1039995.811 units remaining) + - location: 9 (just consumed gas: 4.189) [ (Pair {} { "" }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.801 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.791 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} {} ] - - location: 12 (just consumed gas: 0.010, 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 02fa0d8c4328..bdb3bd311cfe 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 (just consumed gas: 5.447, remaining gas: 1039994.553 units remaining) + - location: 9 (just consumed gas: 5.447) [ (Pair { "1" ; "2" ; "3" } { "" }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.543 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "1" ; "2" ; "3" } ] - - location: 10 (just consumed gas: 0, remaining gas: 1039994.543 units remaining) + - location: 10 (just consumed gas: 0) [ "1" ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039994.528 units remaining) + - location: 10 (just consumed gas: 0.015) [ "2" ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039994.513 units remaining) + - location: 10 (just consumed gas: 0.015) [ "3" ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039994.498 units remaining) + - location: 10 (just consumed gas: 0.015) [ { "1" ; "2" ; "3" } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.488 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} { "1" ; "2" ; "3" } ] - - location: 14 (just consumed gas: 0.010, 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 87fca9558b41..00e84f873593 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 (just consumed gas: 5.447, remaining gas: 1039994.553 units remaining) + - location: 9 (just consumed gas: 5.447) [ (Pair { "a" ; "b" ; "c" } { "" }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.543 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 10 (just consumed gas: 0, remaining gas: 1039994.543 units remaining) + - location: 10 (just consumed gas: 0) [ "a" ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039994.528 units remaining) + - location: 10 (just consumed gas: 0.015) [ "b" ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039994.513 units remaining) + - location: 10 (just consumed gas: 0.015) [ "c" ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039994.498 units remaining) + - location: 10 (just consumed gas: 0.015) [ { "a" ; "b" ; "c" } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.488 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 14 (just consumed gas: 0.010, 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 4862a5a8e6f7..ecaa7068eaa0 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 (just consumed gas: 5.075, remaining gas: 1039994.925 units remaining) + - location: 9 (just consumed gas: 5.075) [ (Pair {} { "" }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.915 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (just consumed gas: 0, remaining gas: 1039994.915 units remaining) + - location: 10 (just consumed gas: 0) [ {} ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.905 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} {} ] - - location: 14 (just consumed gas: 0.010, 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 b7c92f80994a..cdc39e590acc 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 (just consumed gas: 7.002, remaining gas: 1039992.998 units remaining) + - location: 8 (just consumed gas: 7.002) [ (Pair { 10 ; 2 ; 1 } 0) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.988 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 10 ; 2 ; 1 } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039992.978 units remaining) + - location: 9 (just consumed gas: 0.010) [ 1 { 10 ; 2 ; 1 } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.968 units remaining) + - location: 12 (just consumed gas: 0.010) [ { 10 ; 2 ; 1 } 1 ] - - location: 13 (just consumed gas: 0, remaining gas: 1039992.968 units remaining) + - location: 13 (just consumed gas: 0) [ 10 1 ] - - location: 15 (just consumed gas: 0.059, remaining gas: 1039992.909 units remaining) + - location: 15 (just consumed gas: 0.059) [ 10 ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.894 units remaining) + - location: 13 (just consumed gas: 0.015) [ 2 10 ] - - location: 15 (just consumed gas: 0.059, remaining gas: 1039992.835 units remaining) + - location: 15 (just consumed gas: 0.059) [ 20 ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.820 units remaining) + - location: 13 (just consumed gas: 0.015) [ 1 20 ] - - location: 15 (just consumed gas: 0.059, remaining gas: 1039992.761 units remaining) + - location: 15 (just consumed gas: 0.059) [ 20 ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.746 units remaining) + - location: 13 (just consumed gas: 0.015) [ 20 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.736 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 20 ] - - location: 18 (just consumed gas: 0.010, 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 df1e478f5b00..8daf72c03eee 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 (just consumed gas: 7.002, remaining gas: 1039992.998 units remaining) + - location: 8 (just consumed gas: 7.002) [ (Pair { 3 ; 6 ; 9 } 0) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.988 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 3 ; 6 ; 9 } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039992.978 units remaining) + - location: 9 (just consumed gas: 0.010) [ 1 { 3 ; 6 ; 9 } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.968 units remaining) + - location: 12 (just consumed gas: 0.010) [ { 3 ; 6 ; 9 } 1 ] - - location: 13 (just consumed gas: 0, remaining gas: 1039992.968 units remaining) + - location: 13 (just consumed gas: 0) [ 3 1 ] - - location: 15 (just consumed gas: 0.059, remaining gas: 1039992.909 units remaining) + - location: 15 (just consumed gas: 0.059) [ 3 ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.894 units remaining) + - location: 13 (just consumed gas: 0.015) [ 6 3 ] - - location: 15 (just consumed gas: 0.059, remaining gas: 1039992.835 units remaining) + - location: 15 (just consumed gas: 0.059) [ 18 ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.820 units remaining) + - location: 13 (just consumed gas: 0.015) [ 9 18 ] - - location: 15 (just consumed gas: 0.059, remaining gas: 1039992.761 units remaining) + - location: 15 (just consumed gas: 0.059) [ 162 ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.746 units remaining) + - location: 13 (just consumed gas: 0.015) [ 162 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.736 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 162 ] - - location: 18 (just consumed gas: 0.010, 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 bc8aa74fd338..74d7e06f9c73 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 (just consumed gas: 12.341, remaining gas: 1039987.659 units remaining) + - location: 9 (just consumed gas: 12.341) [ (Pair { 1 ; 1 ; 1 ; 1 } { 0 }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039987.649 units remaining) + - location: 9 (just consumed gas: 0.010) [ { 1 ; 1 ; 1 ; 1 } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039987.639 units remaining) + - location: 10 (just consumed gas: 0.010) [ 0 { 1 ; 1 ; 1 ; 1 } ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039987.629 units remaining) + - location: 13 (just consumed gas: 0.010) [ { 1 ; 1 ; 1 ; 1 } 0 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039987.629 units remaining) + - location: 14 (just consumed gas: 0) [ 1 0 ] - - location: 16 (just consumed gas: 0, remaining gas: 1039987.629 units remaining) + - location: 16 (just consumed gas: 0) [ 0 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.619 units remaining) + - location: 18 (just consumed gas: 0.010) [ 0 0 ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.594 units remaining) + - location: 16 (just consumed gas: 0.025) [ 1 0 0 ] - - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.559 units remaining) + - location: 19 (just consumed gas: 0.035) [ 1 0 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039987.559 units remaining) + - location: 20 (just consumed gas: 0) [ 0 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.549 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 0 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.514 units remaining) + - location: 25 (just consumed gas: 0.035) [ 1 ] - - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.489 units remaining) + - location: 20 (just consumed gas: 0.025) [ 1 1 ] - - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.474 units remaining) + - location: 14 (just consumed gas: 0.015) [ 1 1 ] - - location: 16 (just consumed gas: 0, remaining gas: 1039987.474 units remaining) + - location: 16 (just consumed gas: 0) [ 1 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.464 units remaining) + - location: 18 (just consumed gas: 0.010) [ 1 1 ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.439 units remaining) + - location: 16 (just consumed gas: 0.025) [ 1 1 1 ] - - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.404 units remaining) + - location: 19 (just consumed gas: 0.035) [ 2 1 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039987.404 units remaining) + - location: 20 (just consumed gas: 0) [ 1 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.394 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 1 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.359 units remaining) + - location: 25 (just consumed gas: 0.035) [ 2 ] - - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.334 units remaining) + - location: 20 (just consumed gas: 0.025) [ 2 2 ] - - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.319 units remaining) + - location: 14 (just consumed gas: 0.015) [ 1 2 ] - - location: 16 (just consumed gas: 0, remaining gas: 1039987.319 units remaining) + - location: 16 (just consumed gas: 0) [ 2 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.309 units remaining) + - location: 18 (just consumed gas: 0.010) [ 2 2 ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.284 units remaining) + - location: 16 (just consumed gas: 0.025) [ 1 2 2 ] - - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.249 units remaining) + - location: 19 (just consumed gas: 0.035) [ 3 2 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039987.249 units remaining) + - location: 20 (just consumed gas: 0) [ 2 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.239 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 2 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.204 units remaining) + - location: 25 (just consumed gas: 0.035) [ 3 ] - - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.179 units remaining) + - location: 20 (just consumed gas: 0.025) [ 3 3 ] - - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.164 units remaining) + - location: 14 (just consumed gas: 0.015) [ 1 3 ] - - location: 16 (just consumed gas: 0, remaining gas: 1039987.164 units remaining) + - location: 16 (just consumed gas: 0) [ 3 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.154 units remaining) + - location: 18 (just consumed gas: 0.010) [ 3 3 ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.129 units remaining) + - location: 16 (just consumed gas: 0.025) [ 1 3 3 ] - - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.094 units remaining) + - location: 19 (just consumed gas: 0.035) [ 4 3 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039987.094 units remaining) + - location: 20 (just consumed gas: 0) [ 3 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.084 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 3 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.049 units remaining) + - location: 25 (just consumed gas: 0.035) [ 4 ] - - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.024 units remaining) + - location: 20 (just consumed gas: 0.025) [ 4 4 ] - - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.009 units remaining) + - location: 14 (just consumed gas: 0.015) [ { 1 ; 2 ; 3 ; 4 } 4 ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039986.999 units remaining) + - location: 26 (just consumed gas: 0.010) [ {} { 1 ; 2 ; 3 ; 4 } 4 ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039986.989 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Pair {} { 1 ; 2 ; 3 ; 4 }) 4 ] - - location: 29 (just consumed gas: 0, remaining gas: 1039986.989 units remaining) + - location: 29 (just consumed gas: 0) [ 4 ] - - location: 31 (just consumed gas: 0.010, remaining gas: 1039986.979 units remaining) + - location: 31 (just consumed gas: 0.010) [ ] - - location: 29 (just consumed gas: 0.025, 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 bd2b8702d368..fe21998b56bd 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 (just consumed gas: 12.341, remaining gas: 1039987.659 units remaining) + - location: 9 (just consumed gas: 12.341) [ (Pair { 1 ; 2 ; 3 ; 0 } { 0 }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039987.649 units remaining) + - location: 9 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 ; 0 } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039987.639 units remaining) + - location: 10 (just consumed gas: 0.010) [ 0 { 1 ; 2 ; 3 ; 0 } ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039987.629 units remaining) + - location: 13 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 ; 0 } 0 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039987.629 units remaining) + - location: 14 (just consumed gas: 0) [ 1 0 ] - - location: 16 (just consumed gas: 0, remaining gas: 1039987.629 units remaining) + - location: 16 (just consumed gas: 0) [ 0 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.619 units remaining) + - location: 18 (just consumed gas: 0.010) [ 0 0 ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.594 units remaining) + - location: 16 (just consumed gas: 0.025) [ 1 0 0 ] - - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.559 units remaining) + - location: 19 (just consumed gas: 0.035) [ 1 0 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039987.559 units remaining) + - location: 20 (just consumed gas: 0) [ 0 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.549 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 0 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.514 units remaining) + - location: 25 (just consumed gas: 0.035) [ 1 ] - - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.489 units remaining) + - location: 20 (just consumed gas: 0.025) [ 1 1 ] - - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.474 units remaining) + - location: 14 (just consumed gas: 0.015) [ 2 1 ] - - location: 16 (just consumed gas: 0, remaining gas: 1039987.474 units remaining) + - location: 16 (just consumed gas: 0) [ 1 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.464 units remaining) + - location: 18 (just consumed gas: 0.010) [ 1 1 ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.439 units remaining) + - location: 16 (just consumed gas: 0.025) [ 2 1 1 ] - - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.404 units remaining) + - location: 19 (just consumed gas: 0.035) [ 3 1 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039987.404 units remaining) + - location: 20 (just consumed gas: 0) [ 1 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.394 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 1 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.359 units remaining) + - location: 25 (just consumed gas: 0.035) [ 2 ] - - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.334 units remaining) + - location: 20 (just consumed gas: 0.025) [ 3 2 ] - - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.319 units remaining) + - location: 14 (just consumed gas: 0.015) [ 3 2 ] - - location: 16 (just consumed gas: 0, remaining gas: 1039987.319 units remaining) + - location: 16 (just consumed gas: 0) [ 2 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.309 units remaining) + - location: 18 (just consumed gas: 0.010) [ 2 2 ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.284 units remaining) + - location: 16 (just consumed gas: 0.025) [ 3 2 2 ] - - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.249 units remaining) + - location: 19 (just consumed gas: 0.035) [ 5 2 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039987.249 units remaining) + - location: 20 (just consumed gas: 0) [ 2 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.239 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 2 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.204 units remaining) + - location: 25 (just consumed gas: 0.035) [ 3 ] - - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.179 units remaining) + - location: 20 (just consumed gas: 0.025) [ 5 3 ] - - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.164 units remaining) + - location: 14 (just consumed gas: 0.015) [ 0 3 ] - - location: 16 (just consumed gas: 0, remaining gas: 1039987.164 units remaining) + - location: 16 (just consumed gas: 0) [ 3 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039987.154 units remaining) + - location: 18 (just consumed gas: 0.010) [ 3 3 ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039987.129 units remaining) + - location: 16 (just consumed gas: 0.025) [ 0 3 3 ] - - location: 19 (just consumed gas: 0.035, remaining gas: 1039987.094 units remaining) + - location: 19 (just consumed gas: 0.035) [ 3 3 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039987.094 units remaining) + - location: 20 (just consumed gas: 0) [ 3 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.084 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 3 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039987.049 units remaining) + - location: 25 (just consumed gas: 0.035) [ 4 ] - - location: 20 (just consumed gas: 0.025, remaining gas: 1039987.024 units remaining) + - location: 20 (just consumed gas: 0.025) [ 3 4 ] - - location: 14 (just consumed gas: 0.015, remaining gas: 1039987.009 units remaining) + - location: 14 (just consumed gas: 0.015) [ { 1 ; 3 ; 5 ; 3 } 4 ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039986.999 units remaining) + - location: 26 (just consumed gas: 0.010) [ {} { 1 ; 3 ; 5 ; 3 } 4 ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039986.989 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Pair {} { 1 ; 3 ; 5 ; 3 }) 4 ] - - location: 29 (just consumed gas: 0, remaining gas: 1039986.989 units remaining) + - location: 29 (just consumed gas: 0) [ 4 ] - - location: 31 (just consumed gas: 0.010, remaining gas: 1039986.979 units remaining) + - location: 31 (just consumed gas: 0.010) [ ] - - location: 29 (just consumed gas: 0.025, 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 40634f478857..adeb6050727f 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 (just consumed gas: 11.941, remaining gas: 1039988.059 units remaining) + - location: 9 (just consumed gas: 11.941) [ (Pair {} { 0 }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039988.049 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039988.039 units remaining) + - location: 10 (just consumed gas: 0.010) [ 0 {} ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039988.029 units remaining) + - location: 13 (just consumed gas: 0.010) [ {} 0 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039988.029 units remaining) + - location: 14 (just consumed gas: 0) [ {} 0 ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.019 units remaining) + - location: 26 (just consumed gas: 0.010) [ {} {} 0 ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.009 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Pair {} {}) 0 ] - - location: 29 (just consumed gas: 0, remaining gas: 1039988.009 units remaining) + - location: 29 (just consumed gas: 0) [ 0 ] - - location: 31 (just consumed gas: 0.010, remaining gas: 1039987.999 units remaining) + - location: 31 (just consumed gas: 0.010) [ ] - - location: 29 (just consumed gas: 0.025, 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 97e1f138fc9a..04d1e99a4735 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 (just consumed gas: 4.995, remaining gas: 1039995.005 units remaining) + - location: 8 (just consumed gas: 4.995) [ (Pair { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } 111) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.995 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.985 units remaining) + - location: 9 (just consumed gas: 0.010) [ 6 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.975 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 6 ] - - location: 12 (just consumed gas: 0.010, 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 7fec6773aab6..addd24cd9df8 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 (just consumed gas: 4.695, remaining gas: 1039995.305 units remaining) + - location: 8 (just consumed gas: 4.695) [ (Pair { 1 ; 2 ; 3 } 111) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.295 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.285 units remaining) + - location: 9 (just consumed gas: 0.010) [ 3 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.275 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 3 ] - - location: 12 (just consumed gas: 0.010, 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 4d9616927750..a38efff17cda 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 (just consumed gas: 4.495, remaining gas: 1039995.505 units remaining) + - location: 8 (just consumed gas: 4.495) [ (Pair { 1 } 111) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.495 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.485 units remaining) + - location: 9 (just consumed gas: 0.010) [ 1 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.475 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 1 ] - - location: 12 (just consumed gas: 0.010, 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 d8e9727f4b33..376913217299 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 (just consumed gas: 4.395, remaining gas: 1039995.605 units remaining) + - location: 8 (just consumed gas: 4.395) [ (Pair {} 111) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.595 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.585 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.575 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0 ] - - location: 12 (just consumed gas: 0.010, 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 d40ecc31f3b0..f15eab118523 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 (just consumed gas: 17.635, remaining gas: 1039982.365 units remaining) + - location: 9 (just consumed gas: 17.635) [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039982.355 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039982.345 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "c" ; "b" ; "a" } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039982.335 units remaining) + - location: 12 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } {} ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039982.325 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039982.315 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair { "c" ; "b" ; "a" } {})) ] - - location: 41 (just consumed gas: 0, remaining gas: 1039982.315 units remaining) + - location: 41 (just consumed gas: 0) [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039982.305 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair { "c" ; "b" ; "a" } {}) (Pair { "c" ; "b" ; "a" } {}) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039982.295 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } (Pair { "c" ; "b" ; "a" } {}) ] - - location: 21 (just consumed gas: 0, remaining gas: 1039982.295 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039982.285 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} ] - - location: 21 (just consumed gas: 0.025, remaining gas: 1039982.260 units remaining) + - location: 21 (just consumed gas: 0.025) [ { "c" ; "b" ; "a" } {} ] - - location: 24 (just consumed gas: 0, remaining gas: 1039982.260 units remaining) + - location: 24 (just consumed gas: 0) [ "c" { "b" ; "a" } {} ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039982.250 units remaining) + - location: 26 (just consumed gas: 0.010) [ { "b" ; "a" } "c" {} ] - - location: 27 (just consumed gas: 0, remaining gas: 1039982.250 units remaining) + - location: 27 (just consumed gas: 0) [ "c" {} ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039982.240 units remaining) + - location: 29 (just consumed gas: 0.010) [ { "c" } ] - - location: 27 (just consumed gas: 0.025, remaining gas: 1039982.215 units remaining) + - location: 27 (just consumed gas: 0.025) [ { "b" ; "a" } { "c" } ] - - location: 30 (just consumed gas: 0.010, remaining gas: 1039982.205 units remaining) + - location: 30 (just consumed gas: 0.010) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 31 (just consumed gas: 0.010, remaining gas: 1039982.195 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Left (Pair { "b" ; "a" } { "c" })) ] - - location: 24 (just consumed gas: 0.015, remaining gas: 1039982.180 units remaining) + - location: 24 (just consumed gas: 0.015) [ (Left (Pair { "b" ; "a" } { "c" })) ] - - location: 41 (just consumed gas: 0.015, remaining gas: 1039982.165 units remaining) + - location: 41 (just consumed gas: 0.015) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039982.155 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair { "b" ; "a" } { "c" }) (Pair { "b" ; "a" } { "c" }) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039982.145 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "b" ; "a" } (Pair { "b" ; "a" } { "c" }) ] - - location: 21 (just consumed gas: 0, remaining gas: 1039982.145 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039982.135 units remaining) + - location: 23 (just consumed gas: 0.010) [ { "c" } ] - - location: 21 (just consumed gas: 0.025, remaining gas: 1039982.110 units remaining) + - location: 21 (just consumed gas: 0.025) [ { "b" ; "a" } { "c" } ] - - location: 24 (just consumed gas: 0, remaining gas: 1039982.110 units remaining) + - location: 24 (just consumed gas: 0) [ "b" { "a" } { "c" } ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039982.100 units remaining) + - location: 26 (just consumed gas: 0.010) [ { "a" } "b" { "c" } ] - - location: 27 (just consumed gas: 0, remaining gas: 1039982.100 units remaining) + - location: 27 (just consumed gas: 0) [ "b" { "c" } ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039982.090 units remaining) + - location: 29 (just consumed gas: 0.010) [ { "b" ; "c" } ] - - location: 27 (just consumed gas: 0.025, remaining gas: 1039982.065 units remaining) + - location: 27 (just consumed gas: 0.025) [ { "a" } { "b" ; "c" } ] - - location: 30 (just consumed gas: 0.010, remaining gas: 1039982.055 units remaining) + - location: 30 (just consumed gas: 0.010) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 31 (just consumed gas: 0.010, remaining gas: 1039982.045 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Left (Pair { "a" } { "b" ; "c" })) ] - - location: 24 (just consumed gas: 0.015, remaining gas: 1039982.030 units remaining) + - location: 24 (just consumed gas: 0.015) [ (Left (Pair { "a" } { "b" ; "c" })) ] - - location: 41 (just consumed gas: 0.015, remaining gas: 1039982.015 units remaining) + - location: 41 (just consumed gas: 0.015) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039982.005 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair { "a" } { "b" ; "c" }) (Pair { "a" } { "b" ; "c" }) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039981.995 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "a" } (Pair { "a" } { "b" ; "c" }) ] - - location: 21 (just consumed gas: 0, remaining gas: 1039981.995 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039981.985 units remaining) + - location: 23 (just consumed gas: 0.010) [ { "b" ; "c" } ] - - location: 21 (just consumed gas: 0.025, remaining gas: 1039981.960 units remaining) + - location: 21 (just consumed gas: 0.025) [ { "a" } { "b" ; "c" } ] - - location: 24 (just consumed gas: 0, remaining gas: 1039981.960 units remaining) + - location: 24 (just consumed gas: 0) [ "a" {} { "b" ; "c" } ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039981.950 units remaining) + - location: 26 (just consumed gas: 0.010) [ {} "a" { "b" ; "c" } ] - - location: 27 (just consumed gas: 0, remaining gas: 1039981.950 units remaining) + - location: 27 (just consumed gas: 0) [ "a" { "b" ; "c" } ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039981.940 units remaining) + - location: 29 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 27 (just consumed gas: 0.025, remaining gas: 1039981.915 units remaining) + - location: 27 (just consumed gas: 0.025) [ {} { "a" ; "b" ; "c" } ] - - location: 30 (just consumed gas: 0.010, remaining gas: 1039981.905 units remaining) + - location: 30 (just consumed gas: 0.010) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 31 (just consumed gas: 0.010, remaining gas: 1039981.895 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Left (Pair {} { "a" ; "b" ; "c" })) ] - - location: 24 (just consumed gas: 0.015, remaining gas: 1039981.880 units remaining) + - location: 24 (just consumed gas: 0.015) [ (Left (Pair {} { "a" ; "b" ; "c" })) ] - - location: 41 (just consumed gas: 0.015, remaining gas: 1039981.865 units remaining) + - location: 41 (just consumed gas: 0.015) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039981.855 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} { "a" ; "b" ; "c" }) (Pair {} { "a" ; "b" ; "c" }) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039981.845 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} (Pair {} { "a" ; "b" ; "c" }) ] - - location: 21 (just consumed gas: 0, remaining gas: 1039981.845 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039981.835 units remaining) + - location: 23 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 21 (just consumed gas: 0.025, remaining gas: 1039981.810 units remaining) + - location: 21 (just consumed gas: 0.025) [ {} { "a" ; "b" ; "c" } ] - - location: 24 (just consumed gas: 0, remaining gas: 1039981.810 units remaining) + - location: 24 (just consumed gas: 0) [ { "a" ; "b" ; "c" } ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039981.800 units remaining) + - location: 35 (just consumed gas: 0.010) [ (Right { "a" ; "b" ; "c" }) ] - - location: 24 (just consumed gas: 0.015, remaining gas: 1039981.785 units remaining) + - location: 24 (just consumed gas: 0.015) [ (Right { "a" ; "b" ; "c" }) ] - - location: 41 (just consumed gas: 0.015, remaining gas: 1039981.770 units remaining) + - location: 41 (just consumed gas: 0.015) [ { "a" ; "b" ; "c" } ] - - location: 41 (just consumed gas: 0.010, remaining gas: 1039981.760 units remaining) + - location: 41 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 43 (just consumed gas: 0.010, 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 c02da3bd9338..b900e4f848e8 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 (just consumed gas: 17.263, remaining gas: 1039982.737 units remaining) + - location: 9 (just consumed gas: 17.263) [ (Pair {} { "" }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039982.727 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039982.717 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} {} ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039982.707 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039982.697 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair {} {}) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039982.687 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair {} {})) ] - - location: 41 (just consumed gas: 0, remaining gas: 1039982.687 units remaining) + - location: 41 (just consumed gas: 0) [ (Pair {} {}) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039982.677 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair {} {}) (Pair {} {}) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039982.667 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} (Pair {} {}) ] - - location: 21 (just consumed gas: 0, remaining gas: 1039982.667 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair {} {}) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039982.657 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} ] - - location: 21 (just consumed gas: 0.025, remaining gas: 1039982.632 units remaining) + - location: 21 (just consumed gas: 0.025) [ {} {} ] - - location: 24 (just consumed gas: 0, remaining gas: 1039982.632 units remaining) + - location: 24 (just consumed gas: 0) [ {} ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039982.622 units remaining) + - location: 35 (just consumed gas: 0.010) [ (Right {}) ] - - location: 24 (just consumed gas: 0.015, remaining gas: 1039982.607 units remaining) + - location: 24 (just consumed gas: 0.015) [ (Right {}) ] - - location: 41 (just consumed gas: 0.015, remaining gas: 1039982.592 units remaining) + - location: 41 (just consumed gas: 0.015) [ {} ] - - location: 41 (just consumed gas: 0.010, remaining gas: 1039982.582 units remaining) + - location: 41 (just consumed gas: 0.010) [ {} {} ] - - location: 43 (just consumed gas: 0.010, 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 075f11973ad7..6ce68c403e6b 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 (just consumed gas: 5.031, remaining gas: 1039994.969 units remaining) + - location: 11 (just consumed gas: 5.031) [ (Pair { Elt 0 0 ; Elt 3 4 } {}) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.959 units remaining) + - location: 11 (just consumed gas: 0.010) [ { Elt 0 0 ; Elt 3 4 } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.949 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} { Elt 0 0 ; Elt 3 4 } ] - - location: 14 (just consumed gas: 0.010, 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 1932bf973c05..05c642fed8de 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 (just consumed gas: 4.716, remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 4.716) [ (Pair { Elt 0 0 } {}) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.274 units remaining) + - location: 11 (just consumed gas: 0.010) [ { Elt 0 0 } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.264 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} { Elt 0 0 } ] - - location: 14 (just consumed gas: 0.010, 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 2ab899757aff..8930bc2ad076 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 (just consumed gas: 4.716, remaining gas: 1039995.284 units remaining) + - location: 11 (just consumed gas: 4.716) [ (Pair { Elt 0 1 } {}) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.274 units remaining) + - location: 11 (just consumed gas: 0.010) [ { Elt 0 1 } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039995.264 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} { Elt 0 1 } ] - - location: 14 (just consumed gas: 0.010, 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 e8ce492d72d9..6df2c978b2ba 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 (just consumed gas: 18.616, remaining gas: 1039981.384 units remaining) + - location: 11 (just consumed gas: 18.616) [ (Pair { Elt 0 100 ; Elt 2 100 } 0 0) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039981.374 units remaining) + - location: 11 (just consumed gas: 0.010) [ { Elt 0 100 ; Elt 2 100 } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039981.364 units remaining) + - location: 12 (just consumed gas: 0.010) [ 0 { Elt 0 100 ; Elt 2 100 } ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039981.354 units remaining) + - location: 15 (just consumed gas: 0.010) [ 0 0 { Elt 0 100 ; Elt 2 100 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039981.344 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair 0 0) { Elt 0 100 ; Elt 2 100 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039981.334 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 0 100 ; Elt 2 100 } (Pair 0 0) ] - - location: 20 (just consumed gas: 0, remaining gas: 1039981.334 units remaining) + - location: 20 (just consumed gas: 0) [ (Pair 0 100) (Pair 0 0) ] - - location: 22 (just consumed gas: 0, remaining gas: 1039981.334 units remaining) + - location: 22 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039981.324 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair 0 0) (Pair 0 0) ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039981.314 units remaining) + - location: 25 (just consumed gas: 0.010) [ 0 (Pair 0 0) ] - - location: 26 (just consumed gas: 0, remaining gas: 1039981.314 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039981.304 units remaining) + - location: 28 (just consumed gas: 0.010) [ 0 ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039981.279 units remaining) + - location: 26 (just consumed gas: 0.025) [ 0 0 ] - - location: 22 (just consumed gas: 0.025, remaining gas: 1039981.254 units remaining) + - location: 22 (just consumed gas: 0.025) [ (Pair 0 100) 0 0 ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039981.244 units remaining) + - location: 29 (just consumed gas: 0.010) [ (Pair 0 100) (Pair 0 100) 0 0 ] - - location: 30 (just consumed gas: 0, remaining gas: 1039981.244 units remaining) + - location: 30 (just consumed gas: 0) [ (Pair 0 100) 0 0 ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039981.234 units remaining) + - location: 32 (just consumed gas: 0.010) [ 0 0 0 ] - - location: 33 (just consumed gas: 0.035, remaining gas: 1039981.199 units remaining) + - location: 33 (just consumed gas: 0.035) [ 0 0 ] - - location: 30 (just consumed gas: 0.025, remaining gas: 1039981.174 units remaining) + - location: 30 (just consumed gas: 0.025) [ (Pair 0 100) 0 0 ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039981.164 units remaining) + - location: 34 (just consumed gas: 0.010) [ 0 (Pair 0 100) 0 ] - - location: 35 (just consumed gas: 0, remaining gas: 1039981.164 units remaining) + - location: 35 (just consumed gas: 0) [ (Pair 0 100) 0 ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039981.154 units remaining) + - location: 37 (just consumed gas: 0.010) [ 100 0 ] - - location: 38 (just consumed gas: 0.035, remaining gas: 1039981.119 units remaining) + - location: 38 (just consumed gas: 0.035) [ 100 ] - - location: 35 (just consumed gas: 0.025, remaining gas: 1039981.094 units remaining) + - location: 35 (just consumed gas: 0.025) [ 0 100 ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039981.084 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair 0 100) ] - - location: 20 (just consumed gas: 0.015, remaining gas: 1039981.069 units remaining) + - location: 20 (just consumed gas: 0.015) [ (Pair 2 100) (Pair 0 100) ] - - location: 22 (just consumed gas: 0, remaining gas: 1039981.069 units remaining) + - location: 22 (just consumed gas: 0) [ (Pair 0 100) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039981.059 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair 0 100) (Pair 0 100) ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039981.049 units remaining) + - location: 25 (just consumed gas: 0.010) [ 0 (Pair 0 100) ] - - location: 26 (just consumed gas: 0, remaining gas: 1039981.049 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair 0 100) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039981.039 units remaining) + - location: 28 (just consumed gas: 0.010) [ 100 ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039981.014 units remaining) + - location: 26 (just consumed gas: 0.025) [ 0 100 ] - - location: 22 (just consumed gas: 0.025, remaining gas: 1039980.989 units remaining) + - location: 22 (just consumed gas: 0.025) [ (Pair 2 100) 0 100 ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039980.979 units remaining) + - location: 29 (just consumed gas: 0.010) [ (Pair 2 100) (Pair 2 100) 0 100 ] - - location: 30 (just consumed gas: 0, remaining gas: 1039980.979 units remaining) + - location: 30 (just consumed gas: 0) [ (Pair 2 100) 0 100 ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039980.969 units remaining) + - location: 32 (just consumed gas: 0.010) [ 2 0 100 ] - - location: 33 (just consumed gas: 0.035, remaining gas: 1039980.934 units remaining) + - location: 33 (just consumed gas: 0.035) [ 2 100 ] - - location: 30 (just consumed gas: 0.025, remaining gas: 1039980.909 units remaining) + - location: 30 (just consumed gas: 0.025) [ (Pair 2 100) 2 100 ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039980.899 units remaining) + - location: 34 (just consumed gas: 0.010) [ 2 (Pair 2 100) 100 ] - - location: 35 (just consumed gas: 0, remaining gas: 1039980.899 units remaining) + - location: 35 (just consumed gas: 0) [ (Pair 2 100) 100 ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039980.889 units remaining) + - location: 37 (just consumed gas: 0.010) [ 100 100 ] - - location: 38 (just consumed gas: 0.035, remaining gas: 1039980.854 units remaining) + - location: 38 (just consumed gas: 0.035) [ 200 ] - - location: 35 (just consumed gas: 0.025, remaining gas: 1039980.829 units remaining) + - location: 35 (just consumed gas: 0.025) [ 2 200 ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039980.819 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair 2 200) ] - - location: 20 (just consumed gas: 0.015, remaining gas: 1039980.804 units remaining) + - location: 20 (just consumed gas: 0.015) [ (Pair 2 200) ] - - location: 40 (just consumed gas: 0.010, remaining gas: 1039980.794 units remaining) + - location: 40 (just consumed gas: 0.010) [ {} (Pair 2 200) ] - - location: 42 (just consumed gas: 0.010, 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 c75f7dce8b66..07b2a5143565 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 (just consumed gas: 18.616, remaining gas: 1039981.384 units remaining) + - location: 11 (just consumed gas: 18.616) [ (Pair { Elt 1 1 ; Elt 2 100 } 0 0) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039981.374 units remaining) + - location: 11 (just consumed gas: 0.010) [ { Elt 1 1 ; Elt 2 100 } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039981.364 units remaining) + - location: 12 (just consumed gas: 0.010) [ 0 { Elt 1 1 ; Elt 2 100 } ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039981.354 units remaining) + - location: 15 (just consumed gas: 0.010) [ 0 0 { Elt 1 1 ; Elt 2 100 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039981.344 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Pair 0 0) { Elt 1 1 ; Elt 2 100 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039981.334 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 1 ; Elt 2 100 } (Pair 0 0) ] - - location: 20 (just consumed gas: 0, remaining gas: 1039981.334 units remaining) + - location: 20 (just consumed gas: 0) [ (Pair 1 1) (Pair 0 0) ] - - location: 22 (just consumed gas: 0, remaining gas: 1039981.334 units remaining) + - location: 22 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039981.324 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair 0 0) (Pair 0 0) ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039981.314 units remaining) + - location: 25 (just consumed gas: 0.010) [ 0 (Pair 0 0) ] - - location: 26 (just consumed gas: 0, remaining gas: 1039981.314 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039981.304 units remaining) + - location: 28 (just consumed gas: 0.010) [ 0 ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039981.279 units remaining) + - location: 26 (just consumed gas: 0.025) [ 0 0 ] - - location: 22 (just consumed gas: 0.025, remaining gas: 1039981.254 units remaining) + - location: 22 (just consumed gas: 0.025) [ (Pair 1 1) 0 0 ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039981.244 units remaining) + - location: 29 (just consumed gas: 0.010) [ (Pair 1 1) (Pair 1 1) 0 0 ] - - location: 30 (just consumed gas: 0, remaining gas: 1039981.244 units remaining) + - location: 30 (just consumed gas: 0) [ (Pair 1 1) 0 0 ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039981.234 units remaining) + - location: 32 (just consumed gas: 0.010) [ 1 0 0 ] - - location: 33 (just consumed gas: 0.035, remaining gas: 1039981.199 units remaining) + - location: 33 (just consumed gas: 0.035) [ 1 0 ] - - location: 30 (just consumed gas: 0.025, remaining gas: 1039981.174 units remaining) + - location: 30 (just consumed gas: 0.025) [ (Pair 1 1) 1 0 ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039981.164 units remaining) + - location: 34 (just consumed gas: 0.010) [ 1 (Pair 1 1) 0 ] - - location: 35 (just consumed gas: 0, remaining gas: 1039981.164 units remaining) + - location: 35 (just consumed gas: 0) [ (Pair 1 1) 0 ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039981.154 units remaining) + - location: 37 (just consumed gas: 0.010) [ 1 0 ] - - location: 38 (just consumed gas: 0.035, remaining gas: 1039981.119 units remaining) + - location: 38 (just consumed gas: 0.035) [ 1 ] - - location: 35 (just consumed gas: 0.025, remaining gas: 1039981.094 units remaining) + - location: 35 (just consumed gas: 0.025) [ 1 1 ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039981.084 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair 1 1) ] - - location: 20 (just consumed gas: 0.015, remaining gas: 1039981.069 units remaining) + - location: 20 (just consumed gas: 0.015) [ (Pair 2 100) (Pair 1 1) ] - - location: 22 (just consumed gas: 0, remaining gas: 1039981.069 units remaining) + - location: 22 (just consumed gas: 0) [ (Pair 1 1) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039981.059 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair 1 1) (Pair 1 1) ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039981.049 units remaining) + - location: 25 (just consumed gas: 0.010) [ 1 (Pair 1 1) ] - - location: 26 (just consumed gas: 0, remaining gas: 1039981.049 units remaining) + - location: 26 (just consumed gas: 0) [ (Pair 1 1) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039981.039 units remaining) + - location: 28 (just consumed gas: 0.010) [ 1 ] - - location: 26 (just consumed gas: 0.025, remaining gas: 1039981.014 units remaining) + - location: 26 (just consumed gas: 0.025) [ 1 1 ] - - location: 22 (just consumed gas: 0.025, remaining gas: 1039980.989 units remaining) + - location: 22 (just consumed gas: 0.025) [ (Pair 2 100) 1 1 ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039980.979 units remaining) + - location: 29 (just consumed gas: 0.010) [ (Pair 2 100) (Pair 2 100) 1 1 ] - - location: 30 (just consumed gas: 0, remaining gas: 1039980.979 units remaining) + - location: 30 (just consumed gas: 0) [ (Pair 2 100) 1 1 ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039980.969 units remaining) + - location: 32 (just consumed gas: 0.010) [ 2 1 1 ] - - location: 33 (just consumed gas: 0.035, remaining gas: 1039980.934 units remaining) + - location: 33 (just consumed gas: 0.035) [ 3 1 ] - - location: 30 (just consumed gas: 0.025, remaining gas: 1039980.909 units remaining) + - location: 30 (just consumed gas: 0.025) [ (Pair 2 100) 3 1 ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039980.899 units remaining) + - location: 34 (just consumed gas: 0.010) [ 3 (Pair 2 100) 1 ] - - location: 35 (just consumed gas: 0, remaining gas: 1039980.899 units remaining) + - location: 35 (just consumed gas: 0) [ (Pair 2 100) 1 ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039980.889 units remaining) + - location: 37 (just consumed gas: 0.010) [ 100 1 ] - - location: 38 (just consumed gas: 0.035, remaining gas: 1039980.854 units remaining) + - location: 38 (just consumed gas: 0.035) [ 101 ] - - location: 35 (just consumed gas: 0.025, remaining gas: 1039980.829 units remaining) + - location: 35 (just consumed gas: 0.025) [ 3 101 ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039980.819 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair 3 101) ] - - location: 20 (just consumed gas: 0.015, remaining gas: 1039980.804 units remaining) + - location: 20 (just consumed gas: 0.015) [ (Pair 3 101) ] - - location: 40 (just consumed gas: 0.010, remaining gas: 1039980.794 units remaining) + - location: 40 (just consumed gas: 0.010) [ {} (Pair 3 101) ] - - location: 42 (just consumed gas: 0.010, 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 6b479b3d849d..2e8217e9e97a 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 (just consumed gas: 9.917, remaining gas: 1039990.083 units remaining) + - location: 9 (just consumed gas: 9.917) [ (Pair 15 { Elt "bar" 5 ; Elt "foo" 1 }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039990.073 units remaining) + - location: 9 (just consumed gas: 0.010) [ 15 { Elt "bar" 5 ; Elt "foo" 1 } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.063 units remaining) + - location: 10 (just consumed gas: 0.010) [ { Elt "bar" 5 ; Elt "foo" 1 } 15 ] - - location: 11 (just consumed gas: 0, remaining gas: 1039990.063 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "bar" 5) 15 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039990.053 units remaining) + - location: 13 (just consumed gas: 0.010) [ 5 15 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039990.053 units remaining) + - location: 14 (just consumed gas: 0) [ 15 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.043 units remaining) + - location: 16 (just consumed gas: 0.010) [ 15 15 ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039990.018 units remaining) + - location: 14 (just consumed gas: 0.025) [ 5 15 15 ] - - location: 17 (just consumed gas: 0.035, remaining gas: 1039989.983 units remaining) + - location: 17 (just consumed gas: 0.035) [ 20 15 ] - - location: 11 (just consumed gas: 0.015, remaining gas: 1039989.968 units remaining) + - location: 11 (just consumed gas: 0.015) [ (Pair "foo" 1) 15 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.958 units remaining) + - location: 13 (just consumed gas: 0.010) [ 1 15 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039989.958 units remaining) + - location: 14 (just consumed gas: 0) [ 15 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.948 units remaining) + - location: 16 (just consumed gas: 0.010) [ 15 15 ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039989.923 units remaining) + - location: 14 (just consumed gas: 0.025) [ 1 15 15 ] - - location: 17 (just consumed gas: 0.035, remaining gas: 1039989.888 units remaining) + - location: 17 (just consumed gas: 0.035) [ 16 15 ] - - location: 11 (just consumed gas: 0.015, remaining gas: 1039989.873 units remaining) + - location: 11 (just consumed gas: 0.015) [ { Elt "bar" 20 ; Elt "foo" 16 } 15 ] - - location: 18 (just consumed gas: 0, remaining gas: 1039989.873 units remaining) + - location: 18 (just consumed gas: 0) [ 15 ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.863 units remaining) + - location: 20 (just consumed gas: 0.010) [ ] - - location: 18 (just consumed gas: 0.025, remaining gas: 1039989.838 units remaining) + - location: 18 (just consumed gas: 0.025) [ { Elt "bar" 20 ; Elt "foo" 16 } ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.828 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} { Elt "bar" 20 ; Elt "foo" 16 } ] - - location: 23 (just consumed gas: 0.010, 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 309da412d720..5899f4b30dd9 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 (just consumed gas: 9.546, remaining gas: 1039990.454 units remaining) + - location: 9 (just consumed gas: 9.546) [ (Pair 10 { Elt "foo" 1 }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039990.444 units remaining) + - location: 9 (just consumed gas: 0.010) [ 10 { Elt "foo" 1 } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.434 units remaining) + - location: 10 (just consumed gas: 0.010) [ { Elt "foo" 1 } 10 ] - - location: 11 (just consumed gas: 0, remaining gas: 1039990.434 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "foo" 1) 10 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039990.424 units remaining) + - location: 13 (just consumed gas: 0.010) [ 1 10 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039990.424 units remaining) + - location: 14 (just consumed gas: 0) [ 10 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.414 units remaining) + - location: 16 (just consumed gas: 0.010) [ 10 10 ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039990.389 units remaining) + - location: 14 (just consumed gas: 0.025) [ 1 10 10 ] - - location: 17 (just consumed gas: 0.035, remaining gas: 1039990.354 units remaining) + - location: 17 (just consumed gas: 0.035) [ 11 10 ] - - location: 11 (just consumed gas: 0.015, remaining gas: 1039990.339 units remaining) + - location: 11 (just consumed gas: 0.015) [ { Elt "foo" 11 } 10 ] - - location: 18 (just consumed gas: 0, remaining gas: 1039990.339 units remaining) + - location: 18 (just consumed gas: 0) [ 10 ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.329 units remaining) + - location: 20 (just consumed gas: 0.010) [ ] - - location: 18 (just consumed gas: 0.025, remaining gas: 1039990.304 units remaining) + - location: 18 (just consumed gas: 0.025) [ { Elt "foo" 11 } ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.294 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} { Elt "foo" 11 } ] - - location: 23 (just consumed gas: 0.010, 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 3ff8542b0740..265232d7c5bc 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 (just consumed gas: 9.216, remaining gas: 1039990.784 units remaining) + - location: 9 (just consumed gas: 9.216) [ (Pair 10 {}) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039990.774 units remaining) + - location: 9 (just consumed gas: 0.010) [ 10 {} ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.764 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 10 ] - - location: 11 (just consumed gas: 0, remaining gas: 1039990.764 units remaining) + - location: 11 (just consumed gas: 0) [ {} 10 ] - - location: 18 (just consumed gas: 0, remaining gas: 1039990.764 units remaining) + - location: 18 (just consumed gas: 0) [ 10 ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.754 units remaining) + - location: 20 (just consumed gas: 0.010) [ ] - - location: 18 (just consumed gas: 0.025, remaining gas: 1039990.729 units remaining) + - location: 18 (just consumed gas: 0.025) [ {} ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.719 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} {} ] - - location: 23 (just consumed gas: 0.010, 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 b1f91f1c86e5..6239da283a3f 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 (just consumed gas: 9.716, remaining gas: 1039990.284 units remaining) + - location: 12 (just consumed gas: 9.716) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.274 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.274 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 0 1 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.264 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 0 1 } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.254 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.229 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (just consumed gas: 0.080, remaining gas: 1039990.149 units remaining) + - location: 17 (just consumed gas: 0.080) [ False { Elt 0 1 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.139 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt 0 1 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.129 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 0 1 } (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.119 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.109 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 1f21c1e22b62..1a6354f7140a 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 (just consumed gas: 9.716, remaining gas: 1039990.284 units remaining) + - location: 12 (just consumed gas: 9.716) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.274 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.274 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 0 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.264 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 0 } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.254 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.229 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (just consumed gas: 0.080, remaining gas: 1039990.149 units remaining) + - location: 17 (just consumed gas: 0.080) [ True { Elt 1 0 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.139 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 0 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.129 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 0 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.119 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.109 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 e42b73452f37..d9e2e8766bc6 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 (just consumed gas: 10.031, remaining gas: 1039989.969 units remaining) + - location: 12 (just consumed gas: 10.031) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.959 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.959 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.949 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.080, remaining gas: 1039989.834 units remaining) + - location: 17 (just consumed gas: 0.080) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.824 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.814 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.804 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.794 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 23cdcfa88a05..686746e554b9 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 (just consumed gas: 10.031, remaining gas: 1039989.969 units remaining) + - location: 12 (just consumed gas: 10.031) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.959 units remaining) + - location: 12 (just consumed gas: 0.010) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.959 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.949 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.080, remaining gas: 1039989.834 units remaining) + - location: 17 (just consumed gas: 0.080) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.824 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.814 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.804 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.794 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 4ecd7afdfc4e..005bbe85dd9b 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 (just consumed gas: 10.031, remaining gas: 1039989.969 units remaining) + - location: 12 (just consumed gas: 10.031) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.959 units remaining) + - location: 12 (just consumed gas: 0.010) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.959 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.949 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.080, remaining gas: 1039989.834 units remaining) + - location: 17 (just consumed gas: 0.080) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.824 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.814 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.804 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.794 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 5e63caea8ec0..96f37ba0d7cf 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 (just consumed gas: 9.436, remaining gas: 1039990.564 units remaining) + - location: 12 (just consumed gas: 9.436) [ (Pair 1 {} None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.554 units remaining) + - location: 12 (just consumed gas: 0.010) [ 1 (Pair {} None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.554 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair {} None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.544 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.534 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.509 units remaining) + - location: 13 (just consumed gas: 0.025) [ 1 {} {} ] - - location: 17 (just consumed gas: 0.080, remaining gas: 1039990.429 units remaining) + - location: 17 (just consumed gas: 0.080) [ False {} ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.419 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) {} ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.409 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.399 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.389 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair {} (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 30c9b0fb6762..dbb89ff2cd38 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 (just consumed gas: 10.181, remaining gas: 1039989.819 units remaining) + - location: 12 (just consumed gas: 10.181) [ (Pair "bar" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.809 units remaining) + - location: 12 (just consumed gas: 0.010) [ "bar" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.809 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.799 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.089, remaining gas: 1039989.675 units remaining) + - location: 17 (just consumed gas: 0.089) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.665 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.655 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.645 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.635 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 6b7a1c963b02..d0837258e5c7 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 (just consumed gas: 10.181, remaining gas: 1039989.819 units remaining) + - location: 12 (just consumed gas: 10.181) [ (Pair "foo" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.809 units remaining) + - location: 12 (just consumed gas: 0.010) [ "foo" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.809 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.799 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.089, remaining gas: 1039989.675 units remaining) + - location: 17 (just consumed gas: 0.089) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.665 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.655 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.645 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.635 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 899239355f36..43f04e7ade81 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 (just consumed gas: 10.181, remaining gas: 1039989.819 units remaining) + - location: 12 (just consumed gas: 10.181) [ (Pair "baz" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039989.809 units remaining) + - location: 12 (just consumed gas: 0.010) [ "baz" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039989.809 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.799 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.089, remaining gas: 1039989.675 units remaining) + - location: 17 (just consumed gas: 0.089) [ False { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.665 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.655 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.645 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039989.635 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 dd697d8b3fec..b3b12c320cf1 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 (just consumed gas: 9.810, remaining gas: 1039990.190 units remaining) + - location: 12 (just consumed gas: 9.810) [ (Pair "foo" { Elt "foo" 0 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.180 units remaining) + - location: 12 (just consumed gas: 0.010) [ "foo" (Pair { Elt "foo" 0 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.180 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "foo" 0 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.170 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "foo" 0 } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.160 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.135 units remaining) + - location: 13 (just consumed gas: 0.025) [ "foo" { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 17 (just consumed gas: 0.086, remaining gas: 1039990.049 units remaining) + - location: 17 (just consumed gas: 0.086) [ True { Elt "foo" 0 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.039 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some True) { Elt "foo" 0 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.029 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "foo" 0 } (Some True) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.019 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "foo" 0 } (Some True)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.009 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "foo" 0 } (Some True)) ] - - location: 23 (just consumed gas: 0.010, 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 6842e6b86f10..659ce0963565 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 (just consumed gas: 9.810, remaining gas: 1039990.190 units remaining) + - location: 12 (just consumed gas: 9.810) [ (Pair "bar" { Elt "foo" 1 } None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.180 units remaining) + - location: 12 (just consumed gas: 0.010) [ "bar" (Pair { Elt "foo" 1 } None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.180 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair { Elt "foo" 1 } None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.170 units remaining) + - location: 15 (just consumed gas: 0.010) [ { Elt "foo" 1 } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.160 units remaining) + - location: 16 (just consumed gas: 0.010) [ { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.135 units remaining) + - location: 13 (just consumed gas: 0.025) [ "bar" { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 17 (just consumed gas: 0.086, remaining gas: 1039990.049 units remaining) + - location: 17 (just consumed gas: 0.086) [ False { Elt "foo" 1 } ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.039 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) { Elt "foo" 1 } ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.029 units remaining) + - location: 19 (just consumed gas: 0.010) [ { Elt "foo" 1 } (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.019 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair { Elt "foo" 1 } (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.009 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair { Elt "foo" 1 } (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 01a86d528dd3..7c2b0dcecf90 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 (just consumed gas: 9.480, remaining gas: 1039990.520 units remaining) + - location: 12 (just consumed gas: 9.480) [ (Pair "bar" {} None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.510 units remaining) + - location: 12 (just consumed gas: 0.010) [ "bar" (Pair {} None) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.510 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair {} None) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.500 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.490 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039990.465 units remaining) + - location: 13 (just consumed gas: 0.025) [ "bar" {} {} ] - - location: 17 (just consumed gas: 0.083, remaining gas: 1039990.382 units remaining) + - location: 17 (just consumed gas: 0.083) [ False {} ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039990.372 units remaining) + - location: 18 (just consumed gas: 0.010) [ (Some False) {} ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.362 units remaining) + - location: 19 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.352 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.342 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair {} (Some False)) ] - - location: 23 (just consumed gas: 0.010, 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 59ebfab1013f..191d3907ba84 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 (just consumed gas: 6.556, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039993.424 units remaining) + - location: 10 (just consumed gas: 0.010) [ 6 ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.414 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} 6 ] - - location: 13 (just consumed gas: 0.010, 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 941f6206d05d..506422a23325 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 (just consumed gas: 5.517, 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 (just consumed gas: 0.010, remaining gas: 1039994.473 units remaining) + - location: 9 (just consumed gas: 0.010) [ { Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.463 units remaining) + - location: 10 (just consumed gas: 0.010) [ 3 ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.453 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} 3 ] - - location: 13 (just consumed gas: 0.010, 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 cab1e92889d0..24da2cbeb85a 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 (just consumed gas: 4.829, remaining gas: 1039995.171 units remaining) + - location: 9 (just consumed gas: 4.829) [ (Pair { Elt "a" 1 } 111) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.161 units remaining) + - location: 9 (just consumed gas: 0.010) [ { Elt "a" 1 } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.151 units remaining) + - location: 10 (just consumed gas: 0.010) [ 1 ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.141 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} 1 ] - - location: 13 (just consumed gas: 0.010, 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 d023df008bbe..fbfe9a0febd3 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 (just consumed gas: 4.523, remaining gas: 1039995.477 units remaining) + - location: 9 (just consumed gas: 4.523) [ (Pair {} 111) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.467 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.457 units remaining) + - location: 10 (just consumed gas: 0.010) [ 0 ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.447 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} 0 ] - - location: 13 (just consumed gas: 0.010, 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 7ada75e92607..c728313a8223 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 (just consumed gas: 50.799, remaining gas: 1039949.201 units remaining) + - location: 7 (just consumed gas: 50.799) [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039949.191 units remaining) + - location: 7 (just consumed gas: 0.010) [ Unit ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039949.181 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039949.171 units remaining) + - location: 9 (just consumed gas: 0.010) [ 7987 ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039949.161 units remaining) + - location: 12 (just consumed gas: 0.010) [ 10 7987 ] - - location: 15 (just consumed gas: 0, remaining gas: 1039949.161 units remaining) + - location: 15 (just consumed gas: 0) [ 79870 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039949.151 units remaining) + - location: 16 (just consumed gas: 0.010) [ 79870 79870 ] - - location: 19 (just consumed gas: 0.035, remaining gas: 1039949.116 units remaining) + - location: 19 (just consumed gas: 0.035) [ 0 ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039949.106 units remaining) + - location: 21 (just consumed gas: 0.010) [ True ] - - location: 22 (just consumed gas: 0, remaining gas: 1039949.106 units remaining) + - location: 22 (just consumed gas: 0) [ ] - - location: 22 (just consumed gas: 0.015, remaining gas: 1039949.091 units remaining) + - location: 22 (just consumed gas: 0.015) [ ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039949.081 units remaining) + - location: 28 (just consumed gas: 0.010) [ 10 ] - - location: 31 (just consumed gas: 0.010, remaining gas: 1039949.071 units remaining) + - location: 31 (just consumed gas: 0.010) [ 7987 10 ] - - location: 34 (just consumed gas: 0, remaining gas: 1039949.071 units remaining) + - location: 34 (just consumed gas: 0) [ 79870 ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039949.061 units remaining) + - location: 35 (just consumed gas: 0.010) [ 79870 79870 ] - - location: 38 (just consumed gas: 0.035, remaining gas: 1039949.026 units remaining) + - location: 38 (just consumed gas: 0.035) [ 0 ] - - location: 40 (just consumed gas: 0.010, remaining gas: 1039949.016 units remaining) + - location: 40 (just consumed gas: 0.010) [ True ] - - location: 41 (just consumed gas: 0, remaining gas: 1039949.016 units remaining) + - location: 41 (just consumed gas: 0) [ ] - - location: 41 (just consumed gas: 0.015, remaining gas: 1039949.001 units remaining) + - location: 41 (just consumed gas: 0.015) [ ] - - location: 47 (just consumed gas: 0.010, remaining gas: 1039948.991 units remaining) + - location: 47 (just consumed gas: 0.010) [ 10 ] - - location: 50 (just consumed gas: 0.010, remaining gas: 1039948.981 units remaining) + - location: 50 (just consumed gas: 0.010) [ -7987 10 ] - - location: 53 (just consumed gas: 0.061, remaining gas: 1039948.920 units remaining) + - location: 53 (just consumed gas: 0.061) [ -79870 ] - - location: 54 (just consumed gas: 0.010, remaining gas: 1039948.910 units remaining) + - location: 54 (just consumed gas: 0.010) [ -79870 -79870 ] - - location: 57 (just consumed gas: 0.035, remaining gas: 1039948.875 units remaining) + - location: 57 (just consumed gas: 0.035) [ 0 ] - - location: 59 (just consumed gas: 0.010, remaining gas: 1039948.865 units remaining) + - location: 59 (just consumed gas: 0.010) [ True ] - - location: 60 (just consumed gas: 0, remaining gas: 1039948.865 units remaining) + - location: 60 (just consumed gas: 0) [ ] - - location: 60 (just consumed gas: 0.015, remaining gas: 1039948.850 units remaining) + - location: 60 (just consumed gas: 0.015) [ ] - - location: 66 (just consumed gas: 0.010, remaining gas: 1039948.840 units remaining) + - location: 66 (just consumed gas: 0.010) [ 10 ] - - location: 69 (just consumed gas: 0.010, remaining gas: 1039948.830 units remaining) + - location: 69 (just consumed gas: 0.010) [ -7987 10 ] - - location: 72 (just consumed gas: 0.061, remaining gas: 1039948.769 units remaining) + - location: 72 (just consumed gas: 0.061) [ -79870 ] - - location: 73 (just consumed gas: 0.010, remaining gas: 1039948.759 units remaining) + - location: 73 (just consumed gas: 0.010) [ -79870 -79870 ] - - location: 76 (just consumed gas: 0.035, remaining gas: 1039948.724 units remaining) + - location: 76 (just consumed gas: 0.035) [ 0 ] - - location: 78 (just consumed gas: 0.010, remaining gas: 1039948.714 units remaining) + - location: 78 (just consumed gas: 0.010) [ True ] - - location: 79 (just consumed gas: 0, remaining gas: 1039948.714 units remaining) + - location: 79 (just consumed gas: 0) [ ] - - location: 79 (just consumed gas: 0.015, remaining gas: 1039948.699 units remaining) + - location: 79 (just consumed gas: 0.015) [ ] - - location: 85 (just consumed gas: 0.010, remaining gas: 1039948.689 units remaining) + - location: 85 (just consumed gas: 0.010) [ -10 ] - - location: 88 (just consumed gas: 0.010, remaining gas: 1039948.679 units remaining) + - location: 88 (just consumed gas: 0.010) [ 7987 -10 ] - - location: 91 (just consumed gas: 0.061, remaining gas: 1039948.618 units remaining) + - location: 91 (just consumed gas: 0.061) [ -79870 ] - - location: 92 (just consumed gas: 0.010, remaining gas: 1039948.608 units remaining) + - location: 92 (just consumed gas: 0.010) [ -79870 -79870 ] - - location: 95 (just consumed gas: 0.035, remaining gas: 1039948.573 units remaining) + - location: 95 (just consumed gas: 0.035) [ 0 ] - - location: 97 (just consumed gas: 0.010, remaining gas: 1039948.563 units remaining) + - location: 97 (just consumed gas: 0.010) [ True ] - - location: 98 (just consumed gas: 0, remaining gas: 1039948.563 units remaining) + - location: 98 (just consumed gas: 0) [ ] - - location: 98 (just consumed gas: 0.015, remaining gas: 1039948.548 units remaining) + - location: 98 (just consumed gas: 0.015) [ ] - - location: 104 (just consumed gas: 0.010, remaining gas: 1039948.538 units remaining) + - location: 104 (just consumed gas: 0.010) [ 10 ] - - location: 107 (just consumed gas: 0.010, remaining gas: 1039948.528 units remaining) + - location: 107 (just consumed gas: 0.010) [ 7987 10 ] - - location: 110 (just consumed gas: 0.061, remaining gas: 1039948.467 units remaining) + - location: 110 (just consumed gas: 0.061) [ 79870 ] - - location: 111 (just consumed gas: 0.010, remaining gas: 1039948.457 units remaining) + - location: 111 (just consumed gas: 0.010) [ 79870 79870 ] - - location: 114 (just consumed gas: 0.035, remaining gas: 1039948.422 units remaining) + - location: 114 (just consumed gas: 0.035) [ 0 ] - - location: 116 (just consumed gas: 0.010, remaining gas: 1039948.412 units remaining) + - location: 116 (just consumed gas: 0.010) [ True ] - - location: 117 (just consumed gas: 0, remaining gas: 1039948.412 units remaining) + - location: 117 (just consumed gas: 0) [ ] - - location: 117 (just consumed gas: 0.015, remaining gas: 1039948.397 units remaining) + - location: 117 (just consumed gas: 0.015) [ ] - - location: 123 (just consumed gas: 0.010, remaining gas: 1039948.387 units remaining) + - location: 123 (just consumed gas: 0.010) [ Unit ] - - location: 124 (just consumed gas: 0.010, remaining gas: 1039948.377 units remaining) + - location: 124 (just consumed gas: 0.010) [ {} Unit ] - - location: 126 (just consumed gas: 0.010, 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 32720c445816..b1c9df3080a3 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 (just consumed gas: 10.947, remaining gas: 1039989.053 units remaining) + - location: 7 (just consumed gas: 10.947) [ (Pair 257 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.043 units remaining) + - location: 7 (just consumed gas: 0.010) [ 257 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.033 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1 257 ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039989.023 units remaining) + - location: 11 (just consumed gas: 0.010) [ 257 1 ] - - location: 12 (just consumed gas: 0.080, remaining gas: 1039988.943 units remaining) + - location: 12 (just consumed gas: 0.080) [ (Some (Pair 257 0)) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039988.943 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair 257 0) ] - - location: 14 (just consumed gas: 0.015, remaining gas: 1039988.928 units remaining) + - location: 14 (just consumed gas: 0.015) [ (Pair 257 0) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.918 units remaining) + - location: 20 (just consumed gas: 0.010) [ 257 ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.908 units remaining) + - location: 21 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 257 ] - - location: 24 (just consumed gas: 0.267, remaining gas: 1039988.641 units remaining) + - location: 24 (just consumed gas: 0.267) [ 0x0101000000000000000000000000000000000000000000000000000000000000 ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039988.631 units remaining) + - location: 25 (just consumed gas: 0.010) [ {} 0x0101000000000000000000000000000000000000000000000000000000000000 ] - - location: 27 (just consumed gas: 0.010, 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 8fb6d3ec96de..99325d4f9816 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 (just consumed gas: 10.947, remaining gas: 1039989.053 units remaining) + - location: 7 (just consumed gas: 10.947) [ (Pair 16 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039989.043 units remaining) + - location: 7 (just consumed gas: 0.010) [ 16 ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039989.033 units remaining) + - location: 8 (just consumed gas: 0.010) [ 1 16 ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039989.023 units remaining) + - location: 11 (just consumed gas: 0.010) [ 16 1 ] - - location: 12 (just consumed gas: 0.080, remaining gas: 1039988.943 units remaining) + - location: 12 (just consumed gas: 0.080) [ (Some (Pair 16 0)) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039988.943 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair 16 0) ] - - location: 14 (just consumed gas: 0.015, remaining gas: 1039988.928 units remaining) + - location: 14 (just consumed gas: 0.015) [ (Pair 16 0) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.918 units remaining) + - location: 20 (just consumed gas: 0.010) [ 16 ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.908 units remaining) + - location: 21 (just consumed gas: 0.010) [ 0x0100000000000000000000000000000000000000000000000000000000000000 16 ] - - location: 24 (just consumed gas: 0.266, remaining gas: 1039988.642 units remaining) + - location: 24 (just consumed gas: 0.266) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039988.632 units remaining) + - location: 25 (just consumed gas: 0.010) [ {} 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 27 (just consumed gas: 0.010, 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 f7c0395d1efc..b3f33a6bef9f 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 (just consumed gas: 6.169, remaining gas: 1039993.831 units remaining) + - location: 9 (just consumed gas: 6.169) [ (Pair (Left -2) 0) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Left -2) ] - - location: 10 (just consumed gas: 0, remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0) [ -2 ] - - location: 12 (just consumed gas: 0.025, remaining gas: 1039993.796 units remaining) + - location: 12 (just consumed gas: 0.025) [ 2 ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015) [ 2 ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} 2 ] - - location: 17 (just consumed gas: 0.010, 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 b2c4d8ed1da9..80e65466029d 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 (just consumed gas: 6.169, remaining gas: 1039993.831 units remaining) + - location: 9 (just consumed gas: 6.169) [ (Pair (Left 0) 0) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Left 0) ] - - location: 10 (just consumed gas: 0, remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0) [ 0 ] - - location: 12 (just consumed gas: 0.025, remaining gas: 1039993.796 units remaining) + - location: 12 (just consumed gas: 0.025) [ 0 ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015) [ 0 ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} 0 ] - - location: 17 (just consumed gas: 0.010, 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 6aa7ceb890bb..1bb90f76cc92 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 (just consumed gas: 6.169, remaining gas: 1039993.831 units remaining) + - location: 9 (just consumed gas: 6.169) [ (Pair (Left 2) 0) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Left 2) ] - - location: 10 (just consumed gas: 0, remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0) [ 2 ] - - location: 12 (just consumed gas: 0.025, remaining gas: 1039993.796 units remaining) + - location: 12 (just consumed gas: 0.025) [ -2 ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015) [ -2 ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} -2 ] - - location: 17 (just consumed gas: 0.010, 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 a1a7eedad774..ab11281df88f 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 (just consumed gas: 6.169, remaining gas: 1039993.831 units remaining) + - location: 9 (just consumed gas: 6.169) [ (Pair (Right 0) 0) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Right 0) ] - - location: 10 (just consumed gas: 0, remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0) [ 0 ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039993.796 units remaining) + - location: 14 (just consumed gas: 0.025) [ 0 ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015) [ 0 ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} 0 ] - - location: 17 (just consumed gas: 0.010, 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 2f611aadaf9d..62f3d61d8ffe 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 (just consumed gas: 6.169, remaining gas: 1039993.831 units remaining) + - location: 9 (just consumed gas: 6.169) [ (Pair (Right 2) 0) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.821 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Right 2) ] - - location: 10 (just consumed gas: 0, remaining gas: 1039993.821 units remaining) + - location: 10 (just consumed gas: 0) [ 2 ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039993.796 units remaining) + - location: 14 (just consumed gas: 0.025) [ -2 ] - - location: 10 (just consumed gas: 0.015, remaining gas: 1039993.781 units remaining) + - location: 10 (just consumed gas: 0.015) [ -2 ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039993.771 units remaining) + - location: 15 (just consumed gas: 0.010) [ {} -2 ] - - location: 17 (just consumed gas: 0.010, 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 8c6327c6badb..d96b3c23254f 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 (just consumed gas: 4.773, remaining gas: 1039995.227 units remaining) + - location: 8 (just consumed gas: 4.773) [ (Pair Unit (Some 10)) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.217 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.207 units remaining) + - location: 9 (just consumed gas: 0.010) [ None ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.197 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} None ] - - location: 13 (just consumed gas: 0.010, 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 43401d3ed6b3..44bdbef04f21 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 (just consumed gas: 5.053, remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair False None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ False ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010) [ True ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some True) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 13 (just consumed gas: 0.010, 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 f1a5e754f316..3f1d2714d6f8 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 (just consumed gas: 5.053, remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair True None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ True ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.927 units remaining) + - location: 9 (just consumed gas: 0.010) [ False ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.917 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some False) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039994.907 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 13 (just consumed gas: 0.010, 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 a85ef48232cd..ffb1daf73b3c 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 (just consumed gas: 6.965, remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Left -8) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Left -8) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ -8 ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025) [ 7 ] - - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ 7 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 7) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some 7) ] - - location: 19 (just consumed gas: 0.010, 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 69639d1902f1..669ae3212815 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 (just consumed gas: 6.965, remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Left -9) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Left -9) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ -9 ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025) [ 8 ] - - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ 8 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some 8) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some 8) ] - - location: 19 (just consumed gas: 0.010, 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 68197836bed8..3a15b67170b5 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 (just consumed gas: 6.965, remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Left 0) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Left 0) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ 0 ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025) [ -1 ] - - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ -1 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some -1) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some -1) ] - - location: 19 (just consumed gas: 0.010, 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 9cd2969ffd1b..5b8249cf7701 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 (just consumed gas: 6.965, remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Left 7) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Left 7) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ 7 ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025) [ -8 ] - - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ -8 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some -8) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some -8) ] - - location: 19 (just consumed gas: 0.010, 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 142363eeee4d..0059a5afc9cb 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 (just consumed gas: 6.965, remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Left 8) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Left 8) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ 8 ] - - location: 13 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) + - location: 13 (just consumed gas: 0.025) [ -9 ] - - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ -9 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some -9) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some -9) ] - - location: 19 (just consumed gas: 0.010, 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 d4a045d9eda3..1a9b9a71b1af 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 (just consumed gas: 6.965, remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Right 0) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Right 0) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ 0 ] - - location: 15 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) + - location: 15 (just consumed gas: 0.025) [ -1 ] - - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ -1 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some -1) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some -1) ] - - location: 19 (just consumed gas: 0.010, 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 b23419d05e5c..12a05c406eff 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 (just consumed gas: 6.965, remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Right 7) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Right 7) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ 7 ] - - location: 15 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) + - location: 15 (just consumed gas: 0.025) [ -8 ] - - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ -8 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some -8) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some -8) ] - - location: 19 (just consumed gas: 0.010, 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 ee62da7f35da..0831fccb72af 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 (just consumed gas: 6.965, remaining gas: 1039993.035 units remaining) + - location: 10 (just consumed gas: 6.965) [ (Pair (Right 8) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.025 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Right 8) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039993.025 units remaining) + - location: 11 (just consumed gas: 0) [ 8 ] - - location: 15 (just consumed gas: 0.025, remaining gas: 1039993 units remaining) + - location: 15 (just consumed gas: 0.025) [ -9 ] - - location: 11 (just consumed gas: 0.015, remaining gas: 1039992.985 units remaining) + - location: 11 (just consumed gas: 0.015) [ -9 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.975 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some -9) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039992.965 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some -9) ] - - location: 19 (just consumed gas: 0.010, 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 bd25fb8dde29..c6c15f968949 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 (just consumed gas: 8.115, remaining gas: 1039991.885 units remaining) + - location: 10 (just consumed gas: 8.115) [ (Pair (Pair False False) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.875 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair False False) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.865 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair False False) (Pair False False) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039991.855 units remaining) + - location: 12 (just consumed gas: 0.010) [ False (Pair False False) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.845 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair False False) False ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.835 units remaining) + - location: 14 (just consumed gas: 0.010) [ False False ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.825 units remaining) + - location: 15 (just consumed gas: 0.010) [ False ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.815 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some False) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.805 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 19 (just consumed gas: 0.010, 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 57c35eba3f14..0ad8a53c9208 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 (just consumed gas: 8.115, remaining gas: 1039991.885 units remaining) + - location: 10 (just consumed gas: 8.115) [ (Pair (Pair False True) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.875 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair False True) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.865 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair False True) (Pair False True) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039991.855 units remaining) + - location: 12 (just consumed gas: 0.010) [ False (Pair False True) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.845 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair False True) False ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.835 units remaining) + - location: 14 (just consumed gas: 0.010) [ True False ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.825 units remaining) + - location: 15 (just consumed gas: 0.010) [ True ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.815 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some True) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.805 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 19 (just consumed gas: 0.010, 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 7985c4848955..72aacca7555f 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 (just consumed gas: 8.115, remaining gas: 1039991.885 units remaining) + - location: 10 (just consumed gas: 8.115) [ (Pair (Pair True False) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.875 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair True False) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.865 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair True False) (Pair True False) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039991.855 units remaining) + - location: 12 (just consumed gas: 0.010) [ True (Pair True False) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.845 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair True False) True ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.835 units remaining) + - location: 14 (just consumed gas: 0.010) [ False True ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.825 units remaining) + - location: 15 (just consumed gas: 0.010) [ True ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.815 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some True) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.805 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 19 (just consumed gas: 0.010, 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 5124b314b343..d06ca90ea6d2 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 (just consumed gas: 8.115, remaining gas: 1039991.885 units remaining) + - location: 10 (just consumed gas: 8.115) [ (Pair (Pair True True) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039991.875 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair True True) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039991.865 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair True True) (Pair True True) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039991.855 units remaining) + - location: 12 (just consumed gas: 0.010) [ True (Pair True True) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039991.845 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair True True) True ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.835 units remaining) + - location: 14 (just consumed gas: 0.010) [ True True ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039991.825 units remaining) + - location: 15 (just consumed gas: 0.010) [ True ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039991.815 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Some True) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.805 units remaining) + - location: 17 (just consumed gas: 0.010) [ {} (Some True) ] - - location: 19 (just consumed gas: 0.010, 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 d6ba93a6a6f4..13f20f87b0c0 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 (just consumed gas: 6.141, remaining gas: 1039993.859 units remaining) + - location: 10 (just consumed gas: 6.141) [ (Pair (Pair 0 8) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 8) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010) [ 0 8 ] - - location: 12 (just consumed gas: 0.035, remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035) [ 8 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 8) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 8) ] - - location: 16 (just consumed gas: 0.010, 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 5811f76e6b81..ee65d43e28d8 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 (just consumed gas: 6.141, remaining gas: 1039993.859 units remaining) + - location: 10 (just consumed gas: 6.141) [ (Pair (Pair 14 1) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 14 1) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010) [ 14 1 ] - - location: 12 (just consumed gas: 0.035, remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035) [ 15 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 15) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 15) ] - - location: 16 (just consumed gas: 0.010, 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 782a4c5df432..9b82d80f3e3f 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 (just consumed gas: 6.141, remaining gas: 1039993.859 units remaining) + - location: 10 (just consumed gas: 6.141) [ (Pair (Pair 15 4) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 15 4) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010) [ 15 4 ] - - location: 12 (just consumed gas: 0.035, remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035) [ 15 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 15) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 15) ] - - location: 16 (just consumed gas: 0.010, 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 5e1c6314e0d9..6365697764f7 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 (just consumed gas: 6.141, remaining gas: 1039993.859 units remaining) + - location: 10 (just consumed gas: 6.141) [ (Pair (Pair 4 8) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 4 8) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010) [ 4 8 ] - - location: 12 (just consumed gas: 0.035, remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035) [ 12 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 12) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 12) ] - - location: 16 (just consumed gas: 0.010, 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 20f5986d0ef8..e45c4409cd81 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 (just consumed gas: 6.141, remaining gas: 1039993.859 units remaining) + - location: 10 (just consumed gas: 6.141) [ (Pair (Pair 7 7) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 7 7) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010) [ 7 7 ] - - location: 12 (just consumed gas: 0.035, remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035) [ 7 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 7) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 7) ] - - location: 16 (just consumed gas: 0.010, 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 aee9780469d9..b67908e4e212 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 (just consumed gas: 6.141, remaining gas: 1039993.859 units remaining) + - location: 10 (just consumed gas: 6.141) [ (Pair (Pair 8 0) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.849 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 8 0) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.839 units remaining) + - location: 11 (just consumed gas: 0.010) [ 8 0 ] - - location: 12 (just consumed gas: 0.035, remaining gas: 1039993.804 units remaining) + - location: 12 (just consumed gas: 0.035) [ 8 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039993.794 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some 8) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039993.784 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some 8) ] - - location: 16 (just consumed gas: 0.010, 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 3445a00f7152..60d731031ca6 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 (just consumed gas: 148.183, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.241, 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 (just consumed gas: 0.421, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.241, 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 (just consumed gas: 0.421, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.276, 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 (just consumed gas: 0.680, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.256, 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 (just consumed gas: 0.565, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039848.201 units remaining) + - location: 111 (just consumed gas: 0) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039848.166 units remaining) + - location: 119 (just consumed gas: 0) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 121 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.266, 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 (just consumed gas: 0.442, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039847.363 units remaining) + - location: 136 (just consumed gas: 0) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (just consumed gas: 0.015, remaining gas: 1039847.348 units remaining) + - location: 136 (just consumed gas: 0.015) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 142 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039847.328 units remaining) + - location: 144 (just consumed gas: 0) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 146 (just consumed gas: 0.010, remaining gas: 1039847.318 units remaining) + - location: 146 (just consumed gas: 0.010) [ False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (just consumed gas: 0.025, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0.421, 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 (just consumed gas: 0, remaining gas: 1039846.656 units remaining) + - location: 151 (just consumed gas: 0) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, remaining gas: 1039846.606 units remaining) + - location: 159 (just consumed gas: 0.035) [ 0 (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 160 (just consumed gas: 0.010, remaining gas: 1039846.596 units remaining) + - location: 160 (just consumed gas: 0.010) [ True (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (just consumed gas: 0, remaining gas: 1039846.596 units remaining) + - location: 161 (just consumed gas: 0) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (just consumed gas: 0.015, remaining gas: 1039846.581 units remaining) + - location: 161 (just consumed gas: 0.015) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 167 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039846.561 units remaining) + - location: 168 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (just consumed gas: 0, remaining gas: 1039846.561 units remaining) + - location: 169 (just consumed gas: 0) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 171 (just consumed gas: 0.010, remaining gas: 1039846.551 units remaining) + - location: 171 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (just consumed gas: 0.025, remaining gas: 1039846.526 units remaining) + - location: 169 (just consumed gas: 0.025) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 172 (just consumed gas: 0.496, remaining gas: 1039846.030 units remaining) + - location: 172 (just consumed gas: 0.496) [ 0x050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 173 (just consumed gas: 0.963, 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 (just consumed gas: 0, remaining gas: 1039845.067 units remaining) + - location: 176 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (just consumed gas: 0.015, remaining gas: 1039845.052 units remaining) + - location: 176 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 184 (just consumed gas: 0.036, remaining gas: 1039845.016 units remaining) + - location: 184 (just consumed gas: 0.036) [ 0 (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 185 (just consumed gas: 0.010, remaining gas: 1039845.006 units remaining) + - location: 185 (just consumed gas: 0.010) [ True (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (just consumed gas: 0, remaining gas: 1039845.006 units remaining) + - location: 186 (just consumed gas: 0) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (just consumed gas: 0.015, remaining gas: 1039844.991 units remaining) + - location: 186 (just consumed gas: 0.015) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 192 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039844.971 units remaining) + - location: 194 (just consumed gas: 0) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 196 (just consumed gas: 0.010, remaining gas: 1039844.961 units remaining) + - location: 196 (just consumed gas: 0.010) [ "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 194 (just consumed gas: 0.025, 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 (just consumed gas: 0.316, remaining gas: 1039844.620 units remaining) + - location: 197 (just consumed gas: 0.316) [ 0x050095bbb0d70b "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 198 (just consumed gas: 0.503, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, remaining gas: 1039844.067 units remaining) + - location: 209 (just consumed gas: 0.035) [ 0 "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 210 (just consumed gas: 0.010, remaining gas: 1039844.057 units remaining) + - location: 210 (just consumed gas: 0.010) [ True "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (just consumed gas: 0, remaining gas: 1039844.057 units remaining) + - location: 211 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (just consumed gas: 0.015, remaining gas: 1039844.042 units remaining) + - location: 211 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 217 (just consumed gas: 0.010, remaining gas: 1039844.032 units remaining) + - location: 217 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 218 (just consumed gas: 0.506, remaining gas: 1039843.526 units remaining) + - location: 218 (just consumed gas: 0.506) [ 0x050a000000160000bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 219 (just consumed gas: 0.984, remaining gas: 1039842.542 units remaining) + - location: 219 (just consumed gas: 0.984) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (just consumed gas: 0, remaining gas: 1039842.542 units remaining) + - location: 222 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (just consumed gas: 0.015, remaining gas: 1039842.527 units remaining) + - location: 222 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 230 (just consumed gas: 0.036, remaining gas: 1039842.491 units remaining) + - location: 230 (just consumed gas: 0.036) [ 0 ] - - location: 231 (just consumed gas: 0.010, remaining gas: 1039842.481 units remaining) + - location: 231 (just consumed gas: 0.010) [ True ] - - location: 232 (just consumed gas: 0, remaining gas: 1039842.481 units remaining) + - location: 232 (just consumed gas: 0) [ ] - - location: 232 (just consumed gas: 0.015, remaining gas: 1039842.466 units remaining) + - location: 232 (just consumed gas: 0.015) [ ] - - location: 238 (just consumed gas: 0.010, remaining gas: 1039842.456 units remaining) + - location: 238 (just consumed gas: 0.010) [ 0 ] - - location: 241 (just consumed gas: 0.216, remaining gas: 1039842.240 units remaining) + - location: 241 (just consumed gas: 0.216) [ 0x050000 ] - - location: 242 (just consumed gas: 0.421, remaining gas: 1039841.819 units remaining) + - location: 242 (just consumed gas: 0.421) [ (Some 0) ] - - location: 245 (just consumed gas: 0, remaining gas: 1039841.819 units remaining) + - location: 245 (just consumed gas: 0) [ 0 ] - - location: 245 (just consumed gas: 0.015, remaining gas: 1039841.804 units remaining) + - location: 245 (just consumed gas: 0.015) [ 0 ] - - location: 251 (just consumed gas: 0.010, remaining gas: 1039841.794 units remaining) + - location: 251 (just consumed gas: 0.010) [ ] - - location: 252 (just consumed gas: 0.010, remaining gas: 1039841.784 units remaining) + - location: 252 (just consumed gas: 0.010) [ -1 ] - - location: 255 (just consumed gas: 0.241, remaining gas: 1039841.543 units remaining) + - location: 255 (just consumed gas: 0.241) [ 0x050041 ] - - location: 256 (just consumed gas: 96.321, remaining gas: 1039745.222 units remaining) + - location: 256 (just consumed gas: 96.321) [ None ] - - location: 259 (just consumed gas: 0, remaining gas: 1039745.222 units remaining) + - location: 259 (just consumed gas: 0) [ ] - - location: 259 (just consumed gas: 0.015, remaining gas: 1039745.207 units remaining) + - location: 259 (just consumed gas: 0.015) [ ] - - location: 265 (just consumed gas: 0.010, remaining gas: 1039745.197 units remaining) + - location: 265 (just consumed gas: 0.010) [ 0x ] - - location: 268 (just consumed gas: 0.260, remaining gas: 1039744.937 units remaining) + - location: 268 (just consumed gas: 0.260) [ None ] - - location: 271 (just consumed gas: 0, remaining gas: 1039744.937 units remaining) + - location: 271 (just consumed gas: 0) [ ] - - location: 271 (just consumed gas: 0.015, remaining gas: 1039744.922 units remaining) + - location: 271 (just consumed gas: 0.015) [ ] - - location: 277 (just consumed gas: 0.010, remaining gas: 1039744.912 units remaining) + - location: 277 (just consumed gas: 0.010) [ 0x04 ] - - location: 280 (just consumed gas: 0.280, remaining gas: 1039744.632 units remaining) + - location: 280 (just consumed gas: 0.280) [ None ] - - location: 283 (just consumed gas: 0, remaining gas: 1039744.632 units remaining) + - location: 283 (just consumed gas: 0) [ ] - - location: 283 (just consumed gas: 0.015, remaining gas: 1039744.617 units remaining) + - location: 283 (just consumed gas: 0.015) [ ] - - location: 289 (just consumed gas: 0.010, remaining gas: 1039744.607 units remaining) + - location: 289 (just consumed gas: 0.010) [ 0x05 ] - - location: 292 (just consumed gas: 0.280, remaining gas: 1039744.327 units remaining) + - location: 292 (just consumed gas: 0.280) [ None ] - - location: 295 (just consumed gas: 0, remaining gas: 1039744.327 units remaining) + - location: 295 (just consumed gas: 0) [ ] - - location: 295 (just consumed gas: 0.015, remaining gas: 1039744.312 units remaining) + - location: 295 (just consumed gas: 0.015) [ ] - - location: 301 (just consumed gas: 0.010, remaining gas: 1039744.302 units remaining) + - location: 301 (just consumed gas: 0.010) [ Unit ] - - location: 302 (just consumed gas: 0.010, remaining gas: 1039744.292 units remaining) + - location: 302 (just consumed gas: 0.010) [ {} Unit ] - - location: 304 (just consumed gas: 0.010, 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 9fb616816b56..169386e41e5e 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 (just consumed gas: 148.183, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.241, 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 (just consumed gas: 0.421, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.241, 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 (just consumed gas: 0.421, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.276, 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 (just consumed gas: 0.680, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.256, 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 (just consumed gas: 0.565, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039848.201 units remaining) + - location: 111 (just consumed gas: 0) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039848.166 units remaining) + - location: 119 (just consumed gas: 0) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 121 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.266, 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 (just consumed gas: 0.442, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039847.363 units remaining) + - location: 136 (just consumed gas: 0) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (just consumed gas: 0.015, remaining gas: 1039847.348 units remaining) + - location: 136 (just consumed gas: 0.015) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 142 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039847.328 units remaining) + - location: 144 (just consumed gas: 0) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 146 (just consumed gas: 0.010, remaining gas: 1039847.318 units remaining) + - location: 146 (just consumed gas: 0.010) [ False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (just consumed gas: 0.025, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0.421, 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 (just consumed gas: 0, remaining gas: 1039846.656 units remaining) + - location: 151 (just consumed gas: 0) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, remaining gas: 1039846.606 units remaining) + - location: 159 (just consumed gas: 0.035) [ 0 (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 160 (just consumed gas: 0.010, remaining gas: 1039846.596 units remaining) + - location: 160 (just consumed gas: 0.010) [ True (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (just consumed gas: 0, remaining gas: 1039846.596 units remaining) + - location: 161 (just consumed gas: 0) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (just consumed gas: 0.015, remaining gas: 1039846.581 units remaining) + - location: 161 (just consumed gas: 0.015) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 167 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039846.561 units remaining) + - location: 168 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (just consumed gas: 0, remaining gas: 1039846.561 units remaining) + - location: 169 (just consumed gas: 0) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 171 (just consumed gas: 0.010, remaining gas: 1039846.551 units remaining) + - location: 171 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (just consumed gas: 0.025, remaining gas: 1039846.526 units remaining) + - location: 169 (just consumed gas: 0.025) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 172 (just consumed gas: 0.496, remaining gas: 1039846.030 units remaining) + - location: 172 (just consumed gas: 0.496) [ 0x050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 173 (just consumed gas: 0.963, 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 (just consumed gas: 0, remaining gas: 1039845.067 units remaining) + - location: 176 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (just consumed gas: 0.015, remaining gas: 1039845.052 units remaining) + - location: 176 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 184 (just consumed gas: 0.036, remaining gas: 1039845.016 units remaining) + - location: 184 (just consumed gas: 0.036) [ 0 (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 185 (just consumed gas: 0.010, remaining gas: 1039845.006 units remaining) + - location: 185 (just consumed gas: 0.010) [ True (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (just consumed gas: 0, remaining gas: 1039845.006 units remaining) + - location: 186 (just consumed gas: 0) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (just consumed gas: 0.015, remaining gas: 1039844.991 units remaining) + - location: 186 (just consumed gas: 0.015) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 192 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039844.971 units remaining) + - location: 194 (just consumed gas: 0) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 196 (just consumed gas: 0.010, remaining gas: 1039844.961 units remaining) + - location: 196 (just consumed gas: 0.010) [ "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 194 (just consumed gas: 0.025, 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 (just consumed gas: 0.316, remaining gas: 1039844.620 units remaining) + - location: 197 (just consumed gas: 0.316) [ 0x050095bbb0d70b "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 198 (just consumed gas: 0.503, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.035, remaining gas: 1039844.067 units remaining) + - location: 209 (just consumed gas: 0.035) [ 0 "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 210 (just consumed gas: 0.010, remaining gas: 1039844.057 units remaining) + - location: 210 (just consumed gas: 0.010) [ True "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (just consumed gas: 0, remaining gas: 1039844.057 units remaining) + - location: 211 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (just consumed gas: 0.015, remaining gas: 1039844.042 units remaining) + - location: 211 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 217 (just consumed gas: 0.010, remaining gas: 1039844.032 units remaining) + - location: 217 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 218 (just consumed gas: 0.506, remaining gas: 1039843.526 units remaining) + - location: 218 (just consumed gas: 0.506) [ 0x050a000000160000bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 219 (just consumed gas: 0.984, remaining gas: 1039842.542 units remaining) + - location: 219 (just consumed gas: 0.984) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (just consumed gas: 0, remaining gas: 1039842.542 units remaining) + - location: 222 (just consumed gas: 0) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (just consumed gas: 0.015, remaining gas: 1039842.527 units remaining) + - location: 222 (just consumed gas: 0.015) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 230 (just consumed gas: 0.036, remaining gas: 1039842.491 units remaining) + - location: 230 (just consumed gas: 0.036) [ 0 ] - - location: 231 (just consumed gas: 0.010, remaining gas: 1039842.481 units remaining) + - location: 231 (just consumed gas: 0.010) [ True ] - - location: 232 (just consumed gas: 0, remaining gas: 1039842.481 units remaining) + - location: 232 (just consumed gas: 0) [ ] - - location: 232 (just consumed gas: 0.015, remaining gas: 1039842.466 units remaining) + - location: 232 (just consumed gas: 0.015) [ ] - - location: 238 (just consumed gas: 0.010, remaining gas: 1039842.456 units remaining) + - location: 238 (just consumed gas: 0.010) [ 0 ] - - location: 241 (just consumed gas: 0.216, remaining gas: 1039842.240 units remaining) + - location: 241 (just consumed gas: 0.216) [ 0x050000 ] - - location: 242 (just consumed gas: 0.421, remaining gas: 1039841.819 units remaining) + - location: 242 (just consumed gas: 0.421) [ (Some 0) ] - - location: 245 (just consumed gas: 0, remaining gas: 1039841.819 units remaining) + - location: 245 (just consumed gas: 0) [ 0 ] - - location: 245 (just consumed gas: 0.015, remaining gas: 1039841.804 units remaining) + - location: 245 (just consumed gas: 0.015) [ 0 ] - - location: 251 (just consumed gas: 0.010, remaining gas: 1039841.794 units remaining) + - location: 251 (just consumed gas: 0.010) [ ] - - location: 252 (just consumed gas: 0.010, remaining gas: 1039841.784 units remaining) + - location: 252 (just consumed gas: 0.010) [ -1 ] - - location: 255 (just consumed gas: 0.241, remaining gas: 1039841.543 units remaining) + - location: 255 (just consumed gas: 0.241) [ 0x050041 ] - - location: 256 (just consumed gas: 96.321, remaining gas: 1039745.222 units remaining) + - location: 256 (just consumed gas: 96.321) [ None ] - - location: 259 (just consumed gas: 0, remaining gas: 1039745.222 units remaining) + - location: 259 (just consumed gas: 0) [ ] - - location: 259 (just consumed gas: 0.015, remaining gas: 1039745.207 units remaining) + - location: 259 (just consumed gas: 0.015) [ ] - - location: 265 (just consumed gas: 0.010, remaining gas: 1039745.197 units remaining) + - location: 265 (just consumed gas: 0.010) [ 0x ] - - location: 268 (just consumed gas: 0.260, remaining gas: 1039744.937 units remaining) + - location: 268 (just consumed gas: 0.260) [ None ] - - location: 271 (just consumed gas: 0, remaining gas: 1039744.937 units remaining) + - location: 271 (just consumed gas: 0) [ ] - - location: 271 (just consumed gas: 0.015, remaining gas: 1039744.922 units remaining) + - location: 271 (just consumed gas: 0.015) [ ] - - location: 277 (just consumed gas: 0.010, remaining gas: 1039744.912 units remaining) + - location: 277 (just consumed gas: 0.010) [ 0x04 ] - - location: 280 (just consumed gas: 0.280, remaining gas: 1039744.632 units remaining) + - location: 280 (just consumed gas: 0.280) [ None ] - - location: 283 (just consumed gas: 0, remaining gas: 1039744.632 units remaining) + - location: 283 (just consumed gas: 0) [ ] - - location: 283 (just consumed gas: 0.015, remaining gas: 1039744.617 units remaining) + - location: 283 (just consumed gas: 0.015) [ ] - - location: 289 (just consumed gas: 0.010, remaining gas: 1039744.607 units remaining) + - location: 289 (just consumed gas: 0.010) [ 0x05 ] - - location: 292 (just consumed gas: 0.280, remaining gas: 1039744.327 units remaining) + - location: 292 (just consumed gas: 0.280) [ None ] - - location: 295 (just consumed gas: 0, remaining gas: 1039744.327 units remaining) + - location: 295 (just consumed gas: 0) [ ] - - location: 295 (just consumed gas: 0.015, remaining gas: 1039744.312 units remaining) + - location: 295 (just consumed gas: 0.015) [ ] - - location: 301 (just consumed gas: 0.010, remaining gas: 1039744.302 units remaining) + - location: 301 (just consumed gas: 0.010) [ Unit ] - - location: 302 (just consumed gas: 0.010, remaining gas: 1039744.292 units remaining) + - location: 302 (just consumed gas: 0.010) [ {} Unit ] - - location: 304 (just consumed gas: 0.010, 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 8e1df9a3a342..9de14737686a 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 (just consumed gas: 502.307, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 1.001, 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 (just consumed gas: 0, 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 (just consumed gas: 1.001, 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 (just consumed gas: 321.159, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 1.001, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0.421, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.901, 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 (just consumed gas: 0, 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 (just consumed gas: 0.901, 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 (just consumed gas: 1.830, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.901, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.036, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 1.117, 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 (just consumed gas: 0, 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 (just consumed gas: 1.117, 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 (just consumed gas: 1.971, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 1.117, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.036, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.432, 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 (just consumed gas: 0, 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 (just consumed gas: 0.432, 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 (just consumed gas: 0.624, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.432, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.432, 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 (just consumed gas: 0, 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 (just consumed gas: 0.432, 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 (just consumed gas: 0.756, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.432, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.698, 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 (just consumed gas: 0, 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 (just consumed gas: 0.698, 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 (just consumed gas: 0.703, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.698, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039154.756 units remaining) + - location: 231 (just consumed gas: 0) [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 231 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039154.721 units remaining) + - location: 239 (just consumed gas: 0) [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 241 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.712, 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 (just consumed gas: 0, remaining gas: 1039153.974 units remaining) + - location: 243 (just consumed gas: 0) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 245 (just consumed gas: 0.712, remaining gas: 1039153.262 units remaining) + - location: 245 (just consumed gas: 0.712) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 246 (just consumed gas: 1.104, 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 (just consumed gas: 0, remaining gas: 1039152.158 units remaining) + - location: 251 (just consumed gas: 0) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 251 (just consumed gas: 0.015, 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 (just consumed gas: 0.712, remaining gas: 1039151.431 units remaining) + - location: 257 (just consumed gas: 0.712) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 243 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, remaining gas: 1039151.371 units remaining) + - location: 260 (just consumed gas: 0.035) [ 0 (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 261 (just consumed gas: 0.010, remaining gas: 1039151.361 units remaining) + - location: 261 (just consumed gas: 0.010) [ True (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 262 (just consumed gas: 0, remaining gas: 1039151.361 units remaining) + - location: 262 (just consumed gas: 0) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 262 (just consumed gas: 0.015, remaining gas: 1039151.346 units remaining) + - location: 262 (just consumed gas: 0.015) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 268 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039151.326 units remaining) + - location: 270 (just consumed gas: 0) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 272 (just consumed gas: 0.010, remaining gas: 1039151.316 units remaining) + - location: 272 (just consumed gas: 0.010) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 270 (just consumed gas: 0.025, 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 (just consumed gas: 1.467, remaining gas: 1039149.824 units remaining) + - location: 273 (just consumed gas: 1.467) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 274 (just consumed gas: 0, remaining gas: 1039149.824 units remaining) + - location: 274 (just consumed gas: 0) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 276 (just consumed gas: 1.467, remaining gas: 1039148.357 units remaining) + - location: 276 (just consumed gas: 1.467) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 277 (just consumed gas: 1.658, remaining gas: 1039146.699 units remaining) + - location: 277 (just consumed gas: 1.658) [ (Some { Elt 0 "foo" ; Elt 1 "bar" }) { PACK } ] - - location: 282 (just consumed gas: 0, remaining gas: 1039146.699 units remaining) + - location: 282 (just consumed gas: 0) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 282 (just consumed gas: 0.015, remaining gas: 1039146.684 units remaining) + - location: 282 (just consumed gas: 0.015) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 288 (just consumed gas: 1.467, remaining gas: 1039145.217 units remaining) + - location: 288 (just consumed gas: 1.467) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 274 (just consumed gas: 0.025, remaining gas: 1039145.192 units remaining) + - location: 274 (just consumed gas: 0.025) [ 0x050200000018070400000100000003666f6f070400010100000003626172 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 291 (just consumed gas: 0.035, remaining gas: 1039145.157 units remaining) + - location: 291 (just consumed gas: 0.035) [ 0 { PACK } ] - - location: 292 (just consumed gas: 0.010, remaining gas: 1039145.147 units remaining) + - location: 292 (just consumed gas: 0.010) [ True { PACK } ] - - location: 293 (just consumed gas: 0, remaining gas: 1039145.147 units remaining) + - location: 293 (just consumed gas: 0) [ { PACK } ] - - location: 293 (just consumed gas: 0.015, remaining gas: 1039145.132 units remaining) + - location: 293 (just consumed gas: 0.015) [ { PACK } ] - - location: 299 (just consumed gas: 0.010, remaining gas: 1039145.122 units remaining) + - location: 299 (just consumed gas: 0.010) [ { PACK } { PACK } ] - - location: 300 (just consumed gas: 0.597, remaining gas: 1039144.525 units remaining) + - location: 300 (just consumed gas: 0.597) [ 0x050200000002030c { PACK } ] - - location: 301 (just consumed gas: 0, remaining gas: 1039144.525 units remaining) + - location: 301 (just consumed gas: 0) [ { PACK } ] - - location: 303 (just consumed gas: 0.597, remaining gas: 1039143.928 units remaining) + - location: 303 (just consumed gas: 0.597) [ 0x050200000002030c ] - - location: 304 (just consumed gas: 1.024, remaining gas: 1039142.904 units remaining) + - location: 304 (just consumed gas: 1.024) [ (Some { PACK }) ] - - location: 309 (just consumed gas: 0, remaining gas: 1039142.904 units remaining) + - location: 309 (just consumed gas: 0) [ { PACK } ] - - location: 309 (just consumed gas: 0.015, remaining gas: 1039142.889 units remaining) + - location: 309 (just consumed gas: 0.015) [ { PACK } ] - - location: 315 (just consumed gas: 0.597, remaining gas: 1039142.292 units remaining) + - location: 315 (just consumed gas: 0.597) [ 0x050200000002030c ] - - location: 301 (just consumed gas: 0.025, remaining gas: 1039142.267 units remaining) + - location: 301 (just consumed gas: 0.025) [ 0x050200000002030c 0x050200000002030c ] - - location: 318 (just consumed gas: 0.035, remaining gas: 1039142.232 units remaining) + - location: 318 (just consumed gas: 0.035) [ 0 ] - - location: 319 (just consumed gas: 0.010, remaining gas: 1039142.222 units remaining) + - location: 319 (just consumed gas: 0.010) [ True ] - - location: 320 (just consumed gas: 0, remaining gas: 1039142.222 units remaining) + - location: 320 (just consumed gas: 0) [ ] - - location: 320 (just consumed gas: 0.015, remaining gas: 1039142.207 units remaining) + - location: 320 (just consumed gas: 0.015) [ ] - - location: 326 (just consumed gas: 0.010, remaining gas: 1039142.197 units remaining) + - location: 326 (just consumed gas: 0.010) [ Unit ] - - location: 327 (just consumed gas: 0.010, remaining gas: 1039142.187 units remaining) + - location: 327 (just consumed gas: 0.010) [ {} Unit ] - - location: 329 (just consumed gas: 0.010, 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 8ffc765b756e..4dc27c311a95 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 (just consumed gas: 492.580, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 1.001, 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 (just consumed gas: 0, 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 (just consumed gas: 1.001, 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 (just consumed gas: 321.159, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 1.001, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0.421, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.901, 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 (just consumed gas: 0, 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 (just consumed gas: 0.901, 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 (just consumed gas: 1.830, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.901, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.036, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0.421, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0.483, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0.483, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.216, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.698, 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 (just consumed gas: 0, 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 (just consumed gas: 0.698, 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 (just consumed gas: 0.703, 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 (just consumed gas: 0, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0.698, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.035, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039170.447 units remaining) + - location: 231 (just consumed gas: 0) [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 231 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039170.412 units remaining) + - location: 239 (just consumed gas: 0) [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 241 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.532, 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 (just consumed gas: 0, remaining gas: 1039169.845 units remaining) + - location: 243 (just consumed gas: 0) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 245 (just consumed gas: 0.532, remaining gas: 1039169.313 units remaining) + - location: 245 (just consumed gas: 0.532) [ 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 246 (just consumed gas: 0.644, 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 (just consumed gas: 0, remaining gas: 1039168.669 units remaining) + - location: 251 (just consumed gas: 0) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 251 (just consumed gas: 0.015, 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 (just consumed gas: 0.532, remaining gas: 1039168.122 units remaining) + - location: 257 (just consumed gas: 0.532) [ 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 243 (just consumed gas: 0.025, remaining gas: 1039168.097 units remaining) + - location: 243 (just consumed gas: 0.025) [ 0x0505080095bbb0d70b 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 260 (just consumed gas: 0.035, remaining gas: 1039168.062 units remaining) + - location: 260 (just consumed gas: 0.035) [ 0 (Pair {} { DUP ; DROP ; PACK }) ] - - location: 261 (just consumed gas: 0.010, remaining gas: 1039168.052 units remaining) + - location: 261 (just consumed gas: 0.010) [ True (Pair {} { DUP ; DROP ; PACK }) ] - - location: 262 (just consumed gas: 0, remaining gas: 1039168.052 units remaining) + - location: 262 (just consumed gas: 0) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 262 (just consumed gas: 0.015, remaining gas: 1039168.037 units remaining) + - location: 262 (just consumed gas: 0.015) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 268 (just consumed gas: 0.010, remaining gas: 1039168.027 units remaining) + - location: 268 (just consumed gas: 0.010) [ (Pair {} { DUP ; DROP ; PACK }) (Pair {} { DUP ; DROP ; PACK }) ] - - location: 269 (just consumed gas: 0.010, remaining gas: 1039168.017 units remaining) + - location: 269 (just consumed gas: 0.010) [ {} (Pair {} { DUP ; DROP ; PACK }) ] - - location: 270 (just consumed gas: 0, remaining gas: 1039168.017 units remaining) + - location: 270 (just consumed gas: 0) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 272 (just consumed gas: 0.010, remaining gas: 1039168.007 units remaining) + - location: 272 (just consumed gas: 0.010) [ {} { DUP ; DROP ; PACK } ] - - location: 270 (just consumed gas: 0.025, remaining gas: 1039167.982 units remaining) + - location: 270 (just consumed gas: 0.025) [ {} {} { DUP ; DROP ; PACK } ] - - location: 273 (just consumed gas: 0.216, remaining gas: 1039167.766 units remaining) + - location: 273 (just consumed gas: 0.216) [ 0x050200000000 {} { DUP ; DROP ; PACK } ] - - location: 274 (just consumed gas: 0, remaining gas: 1039167.766 units remaining) + - location: 274 (just consumed gas: 0) [ {} { DUP ; DROP ; PACK } ] - - location: 276 (just consumed gas: 0.216, remaining gas: 1039167.550 units remaining) + - location: 276 (just consumed gas: 0.216) [ 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 277 (just consumed gas: 0.483, remaining gas: 1039167.067 units remaining) + - location: 277 (just consumed gas: 0.483) [ (Some {}) { DUP ; DROP ; PACK } ] - - location: 282 (just consumed gas: 0, remaining gas: 1039167.067 units remaining) + - location: 282 (just consumed gas: 0) [ {} { DUP ; DROP ; PACK } ] - - location: 282 (just consumed gas: 0.015, remaining gas: 1039167.052 units remaining) + - location: 282 (just consumed gas: 0.015) [ {} { DUP ; DROP ; PACK } ] - - location: 288 (just consumed gas: 0.216, remaining gas: 1039166.836 units remaining) + - location: 288 (just consumed gas: 0.216) [ 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 274 (just consumed gas: 0.025, remaining gas: 1039166.811 units remaining) + - location: 274 (just consumed gas: 0.025) [ 0x050200000000 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 291 (just consumed gas: 0.035, remaining gas: 1039166.776 units remaining) + - location: 291 (just consumed gas: 0.035) [ 0 { DUP ; DROP ; PACK } ] - - location: 292 (just consumed gas: 0.010, remaining gas: 1039166.766 units remaining) + - location: 292 (just consumed gas: 0.010) [ True { DUP ; DROP ; PACK } ] - - location: 293 (just consumed gas: 0, remaining gas: 1039166.766 units remaining) + - location: 293 (just consumed gas: 0) [ { DUP ; DROP ; PACK } ] - - location: 293 (just consumed gas: 0.015, remaining gas: 1039166.751 units remaining) + - location: 293 (just consumed gas: 0.015) [ { DUP ; DROP ; PACK } ] - - location: 299 (just consumed gas: 0.010, remaining gas: 1039166.741 units remaining) + - location: 299 (just consumed gas: 0.010) [ { DUP ; DROP ; PACK } { DUP ; DROP ; PACK } ] - - location: 300 (just consumed gas: 1.129, remaining gas: 1039165.612 units remaining) + - location: 300 (just consumed gas: 1.129) [ 0x05020000000603210320030c { DUP ; DROP ; PACK } ] - - location: 301 (just consumed gas: 0, remaining gas: 1039165.612 units remaining) + - location: 301 (just consumed gas: 0) [ { DUP ; DROP ; PACK } ] - - location: 303 (just consumed gas: 1.129, remaining gas: 1039164.483 units remaining) + - location: 303 (just consumed gas: 1.129) [ 0x05020000000603210320030c ] - - location: 304 (just consumed gas: 2.086, remaining gas: 1039162.397 units remaining) + - location: 304 (just consumed gas: 2.086) [ (Some { DUP ; DROP ; PACK }) ] - - location: 309 (just consumed gas: 0, remaining gas: 1039162.397 units remaining) + - location: 309 (just consumed gas: 0) [ { DUP ; DROP ; PACK } ] - - location: 309 (just consumed gas: 0.015, remaining gas: 1039162.382 units remaining) + - location: 309 (just consumed gas: 0.015) [ { DUP ; DROP ; PACK } ] - - location: 315 (just consumed gas: 1.129, remaining gas: 1039161.253 units remaining) + - location: 315 (just consumed gas: 1.129) [ 0x05020000000603210320030c ] - - location: 301 (just consumed gas: 0.025, remaining gas: 1039161.228 units remaining) + - location: 301 (just consumed gas: 0.025) [ 0x05020000000603210320030c 0x05020000000603210320030c ] - - location: 318 (just consumed gas: 0.035, remaining gas: 1039161.193 units remaining) + - location: 318 (just consumed gas: 0.035) [ 0 ] - - location: 319 (just consumed gas: 0.010, remaining gas: 1039161.183 units remaining) + - location: 319 (just consumed gas: 0.010) [ True ] - - location: 320 (just consumed gas: 0, remaining gas: 1039161.183 units remaining) + - location: 320 (just consumed gas: 0) [ ] - - location: 320 (just consumed gas: 0.015, remaining gas: 1039161.168 units remaining) + - location: 320 (just consumed gas: 0.015) [ ] - - location: 326 (just consumed gas: 0.010, remaining gas: 1039161.158 units remaining) + - location: 326 (just consumed gas: 0.010) [ Unit ] - - location: 327 (just consumed gas: 0.010, remaining gas: 1039161.148 units remaining) + - location: 327 (just consumed gas: 0.010) [ {} Unit ] - - location: 329 (just consumed gas: 0.010, 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 ecea7cf9f2b6..1fe958ce9ae3 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 (just consumed gas: 5.501, remaining gas: 1039994.499 units remaining) + - location: 12 (just consumed gas: 5.501) [ (Pair (Pair False False) None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.489 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair False False) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.479 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some (Pair False False)) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.469 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some (Pair False False)) ] - - location: 16 (just consumed gas: 0.010, 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 cc2144c54bbf..b301011f6fe6 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 (just consumed gas: 5.501, remaining gas: 1039994.499 units remaining) + - location: 12 (just consumed gas: 5.501) [ (Pair (Pair False True) None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.489 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair False True) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.479 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some (Pair False True)) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.469 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some (Pair False True)) ] - - location: 16 (just consumed gas: 0.010, 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 89ffc12f8cf8..d2ff13849396 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 (just consumed gas: 5.501, remaining gas: 1039994.499 units remaining) + - location: 12 (just consumed gas: 5.501) [ (Pair (Pair True False) None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.489 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair True False) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.479 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some (Pair True False)) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.469 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some (Pair True False)) ] - - location: 16 (just consumed gas: 0.010, 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 8506b35ea88b..34c53ca806aa 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 (just consumed gas: 5.501, remaining gas: 1039994.499 units remaining) + - location: 12 (just consumed gas: 5.501) [ (Pair (Pair True True) None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.489 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair True True) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.479 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Some (Pair True True)) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039994.469 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} (Some (Pair True True)) ] - - location: 16 (just consumed gas: 0.010, 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 a661980774c7..45596fcbca6a 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 (just consumed gas: 9.021, remaining gas: 1039990.979 units remaining) + - location: 7 (just consumed gas: 9.021) [ (Pair 38 14) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039990.969 units remaining) + - location: 7 (just consumed gas: 0.010) [ { UNPAIR ; ADD } (Pair 38 14) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.959 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair 38 14) { UNPAIR ; ADD } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.949 units remaining) + - location: 16 (just consumed gas: 0.010) [ 38 14 { UNPAIR ; ADD } ] - - location: 17 (just consumed gas: 0, remaining gas: 1039990.949 units remaining) + - location: 17 (just consumed gas: 0) [ 14 { UNPAIR ; ADD } ] - - location: 19 (just consumed gas: 0.401, remaining gas: 1039990.548 units remaining) + - location: 19 (just consumed gas: 0.401) [ { PUSH nat 14 ; PAIR ; { UNPAIR ; ADD } } ] - - location: 17 (just consumed gas: 0.025, remaining gas: 1039990.523 units remaining) + - location: 17 (just consumed gas: 0.025) [ 38 { PUSH nat 14 ; PAIR ; { UNPAIR ; ADD } } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.513 units remaining) + - location: 12 (just consumed gas: 0.010) [ 14 38 ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039990.503 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair 14 38) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039990.493 units remaining) + - location: 13 (just consumed gas: 0.010) [ 14 38 ] - - location: 14 (just consumed gas: 0.035, remaining gas: 1039990.458 units remaining) + - location: 14 (just consumed gas: 0.035) [ 52 ] - - location: 20 (just consumed gas: 0.025, remaining gas: 1039990.433 units remaining) + - location: 20 (just consumed gas: 0.025) [ 52 ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039990.423 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} 52 ] - - location: 23 (just consumed gas: 0.010, 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 f42a6f07499c..a52a140a58f7 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 (just consumed gas: 17.009, remaining gas: 1039982.991 units remaining) + - location: 8 (just consumed gas: 17.009) [ (Pair 4 { 0 ; 1 ; 2 ; 3 }) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039982.981 units remaining) + - location: 8 (just consumed gas: 0.010) [ 4 { 0 ; 1 ; 2 ; 3 } ] - - location: 9 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.401, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.401, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, remaining gas: 1039982.094 units remaining) + - location: 16 (just consumed gas: 0.010) [ 3 0 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039982.084 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 3 0) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039982.074 units remaining) + - location: 16 (just consumed gas: 0.010) [ 4 (Pair 3 0) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039982.064 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 4 3 0) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039982.054 units remaining) + - location: 17 (just consumed gas: 0.010) [ 4 (Pair 3 0) ] - - location: 18 (just consumed gas: 0, remaining gas: 1039982.054 units remaining) + - location: 18 (just consumed gas: 0) [ (Pair 3 0) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039982.044 units remaining) + - location: 20 (just consumed gas: 0.010) [ 3 0 ] - - location: 18 (just consumed gas: 0.025, remaining gas: 1039982.019 units remaining) + - location: 18 (just consumed gas: 0.025) [ 4 3 0 ] - - location: 21 (just consumed gas: 0.035, remaining gas: 1039981.984 units remaining) + - location: 21 (just consumed gas: 0.035) [ 7 0 ] - - location: 22 (just consumed gas: 0.056, remaining gas: 1039981.928 units remaining) + - location: 22 (just consumed gas: 0.056) [ 0 ] - - location: 35 (just consumed gas: 0.025, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, remaining gas: 1039981.843 units remaining) + - location: 16 (just consumed gas: 0.010) [ 3 1 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.833 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 3 1) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.823 units remaining) + - location: 16 (just consumed gas: 0.010) [ 4 (Pair 3 1) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.813 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 4 3 1) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039981.803 units remaining) + - location: 17 (just consumed gas: 0.010) [ 4 (Pair 3 1) ] - - location: 18 (just consumed gas: 0, remaining gas: 1039981.803 units remaining) + - location: 18 (just consumed gas: 0) [ (Pair 3 1) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039981.793 units remaining) + - location: 20 (just consumed gas: 0.010) [ 3 1 ] - - location: 18 (just consumed gas: 0.025, remaining gas: 1039981.768 units remaining) + - location: 18 (just consumed gas: 0.025) [ 4 3 1 ] - - location: 21 (just consumed gas: 0.035, remaining gas: 1039981.733 units remaining) + - location: 21 (just consumed gas: 0.035) [ 7 1 ] - - location: 22 (just consumed gas: 0.059, remaining gas: 1039981.674 units remaining) + - location: 22 (just consumed gas: 0.059) [ 7 ] - - location: 35 (just consumed gas: 0.025, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, remaining gas: 1039981.589 units remaining) + - location: 16 (just consumed gas: 0.010) [ 3 2 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.579 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 3 2) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.569 units remaining) + - location: 16 (just consumed gas: 0.010) [ 4 (Pair 3 2) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.559 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 4 3 2) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039981.549 units remaining) + - location: 17 (just consumed gas: 0.010) [ 4 (Pair 3 2) ] - - location: 18 (just consumed gas: 0, remaining gas: 1039981.549 units remaining) + - location: 18 (just consumed gas: 0) [ (Pair 3 2) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039981.539 units remaining) + - location: 20 (just consumed gas: 0.010) [ 3 2 ] - - location: 18 (just consumed gas: 0.025, remaining gas: 1039981.514 units remaining) + - location: 18 (just consumed gas: 0.025) [ 4 3 2 ] - - location: 21 (just consumed gas: 0.035, remaining gas: 1039981.479 units remaining) + - location: 21 (just consumed gas: 0.035) [ 7 2 ] - - location: 22 (just consumed gas: 0.059, remaining gas: 1039981.420 units remaining) + - location: 22 (just consumed gas: 0.059) [ 14 ] - - location: 35 (just consumed gas: 0.025, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.025, 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 (just consumed gas: 0.010, remaining gas: 1039981.335 units remaining) + - location: 16 (just consumed gas: 0.010) [ 3 3 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.325 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 3 3) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.315 units remaining) + - location: 16 (just consumed gas: 0.010) [ 4 (Pair 3 3) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039981.305 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair 4 3 3) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039981.295 units remaining) + - location: 17 (just consumed gas: 0.010) [ 4 (Pair 3 3) ] - - location: 18 (just consumed gas: 0, remaining gas: 1039981.295 units remaining) + - location: 18 (just consumed gas: 0) [ (Pair 3 3) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039981.285 units remaining) + - location: 20 (just consumed gas: 0.010) [ 3 3 ] - - location: 18 (just consumed gas: 0.025, remaining gas: 1039981.260 units remaining) + - location: 18 (just consumed gas: 0.025) [ 4 3 3 ] - - location: 21 (just consumed gas: 0.035, remaining gas: 1039981.225 units remaining) + - location: 21 (just consumed gas: 0.035) [ 7 3 ] - - location: 22 (just consumed gas: 0.059, remaining gas: 1039981.166 units remaining) + - location: 22 (just consumed gas: 0.059) [ 21 ] - - location: 35 (just consumed gas: 0.025, 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 (just consumed gas: 0.015, 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 (just consumed gas: 0, 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 (just consumed gas: 0.010, remaining gas: 1039981.116 units remaining) + - location: 38 (just consumed gas: 0.010) [ ] - - location: 36 (just consumed gas: 0.025, remaining gas: 1039981.091 units remaining) + - location: 36 (just consumed gas: 0.025) [ { 0 ; 7 ; 14 ; 21 } ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039981.081 units remaining) + - location: 39 (just consumed gas: 0.010) [ {} { 0 ; 7 ; 14 ; 21 } ] - - location: 41 (just consumed gas: 0.010, 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 b49adeda21a9..aaf8d46c147a 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 (just consumed gas: 5.514, remaining gas: 1039994.486 units remaining) + - location: 8 (just consumed gas: 5.514) [ (Pair Unit None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.476 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.466 units remaining) + - location: 9 (just consumed gas: 0.010) [ 300 ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039994.456 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Some 300) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039994.446 units remaining) + - location: 13 (just consumed gas: 0.010) [ {} (Some 300) ] - - location: 15 (just consumed gas: 0.010, 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 7a309691a1c9..994f5d084083 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 (just consumed gas: 7.328, remaining gas: 1039992.672 units remaining) + - location: 9 (just consumed gas: 7.328) [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039992.662 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039992.652 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "c" ; "b" ; "a" } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.642 units remaining) + - location: 12 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } {} ] - - location: 13 (just consumed gas: 0, remaining gas: 1039992.642 units remaining) + - location: 13 (just consumed gas: 0) [ "c" {} ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039992.632 units remaining) + - location: 15 (just consumed gas: 0.010) [ { "c" } ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.617 units remaining) + - location: 13 (just consumed gas: 0.015) [ "b" { "c" } ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039992.607 units remaining) + - location: 15 (just consumed gas: 0.010) [ { "b" ; "c" } ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.592 units remaining) + - location: 13 (just consumed gas: 0.015) [ "a" { "b" ; "c" } ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039992.582 units remaining) + - location: 15 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.567 units remaining) + - location: 13 (just consumed gas: 0.015) [ { "a" ; "b" ; "c" } ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.557 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 18 (just consumed gas: 0.010, 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 2b3cb855ab03..0736ff8f582c 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 (just consumed gas: 6.956, remaining gas: 1039993.044 units remaining) + - location: 9 (just consumed gas: 6.956) [ (Pair {} { "" }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.034 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.024 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} {} ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.014 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (just consumed gas: 0, remaining gas: 1039993.014 units remaining) + - location: 13 (just consumed gas: 0) [ {} ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.004 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} {} ] - - location: 18 (just consumed gas: 0.010, 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 cbac151f5cd6..6ad1adfa673c 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 (just consumed gas: 14.158, remaining gas: 1039985.842 units remaining) + - location: 9 (just consumed gas: 14.158) [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039985.832 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039985.822 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "c" ; "b" ; "a" } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039985.812 units remaining) + - location: 12 (just consumed gas: 0.010) [ { "c" ; "b" ; "a" } {} ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039985.802 units remaining) + - location: 13 (just consumed gas: 0.010) [ True { "c" ; "b" ; "a" } {} ] - - location: 33 (just consumed gas: 0, remaining gas: 1039985.802 units remaining) + - location: 33 (just consumed gas: 0) [ { "c" ; "b" ; "a" } {} ] - - location: 18 (just consumed gas: 0, remaining gas: 1039985.802 units remaining) + - location: 18 (just consumed gas: 0) [ "c" { "b" ; "a" } {} ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.792 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "b" ; "a" } "c" {} ] - - location: 21 (just consumed gas: 0, remaining gas: 1039985.792 units remaining) + - location: 21 (just consumed gas: 0) [ "c" {} ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039985.782 units remaining) + - location: 23 (just consumed gas: 0.010) [ { "c" } ] - - location: 21 (just consumed gas: 0.025, remaining gas: 1039985.757 units remaining) + - location: 21 (just consumed gas: 0.025) [ { "b" ; "a" } { "c" } ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.747 units remaining) + - location: 24 (just consumed gas: 0.010) [ True { "b" ; "a" } { "c" } ] - - location: 18 (just consumed gas: 0.015, remaining gas: 1039985.732 units remaining) + - location: 18 (just consumed gas: 0.015) [ True { "b" ; "a" } { "c" } ] - - location: 33 (just consumed gas: 0.015, remaining gas: 1039985.717 units remaining) + - location: 33 (just consumed gas: 0.015) [ { "b" ; "a" } { "c" } ] - - location: 18 (just consumed gas: 0, remaining gas: 1039985.717 units remaining) + - location: 18 (just consumed gas: 0) [ "b" { "a" } { "c" } ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.707 units remaining) + - location: 20 (just consumed gas: 0.010) [ { "a" } "b" { "c" } ] - - location: 21 (just consumed gas: 0, remaining gas: 1039985.707 units remaining) + - location: 21 (just consumed gas: 0) [ "b" { "c" } ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039985.697 units remaining) + - location: 23 (just consumed gas: 0.010) [ { "b" ; "c" } ] - - location: 21 (just consumed gas: 0.025, remaining gas: 1039985.672 units remaining) + - location: 21 (just consumed gas: 0.025) [ { "a" } { "b" ; "c" } ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.662 units remaining) + - location: 24 (just consumed gas: 0.010) [ True { "a" } { "b" ; "c" } ] - - location: 18 (just consumed gas: 0.015, remaining gas: 1039985.647 units remaining) + - location: 18 (just consumed gas: 0.015) [ True { "a" } { "b" ; "c" } ] - - location: 33 (just consumed gas: 0.015, remaining gas: 1039985.632 units remaining) + - location: 33 (just consumed gas: 0.015) [ { "a" } { "b" ; "c" } ] - - location: 18 (just consumed gas: 0, remaining gas: 1039985.632 units remaining) + - location: 18 (just consumed gas: 0) [ "a" {} { "b" ; "c" } ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.622 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} "a" { "b" ; "c" } ] - - location: 21 (just consumed gas: 0, remaining gas: 1039985.622 units remaining) + - location: 21 (just consumed gas: 0) [ "a" { "b" ; "c" } ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039985.612 units remaining) + - location: 23 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 21 (just consumed gas: 0.025, remaining gas: 1039985.587 units remaining) + - location: 21 (just consumed gas: 0.025) [ {} { "a" ; "b" ; "c" } ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.577 units remaining) + - location: 24 (just consumed gas: 0.010) [ True {} { "a" ; "b" ; "c" } ] - - location: 18 (just consumed gas: 0.015, remaining gas: 1039985.562 units remaining) + - location: 18 (just consumed gas: 0.015) [ True {} { "a" ; "b" ; "c" } ] - - location: 33 (just consumed gas: 0.015, remaining gas: 1039985.547 units remaining) + - location: 33 (just consumed gas: 0.015) [ {} { "a" ; "b" ; "c" } ] - - location: 18 (just consumed gas: 0, remaining gas: 1039985.547 units remaining) + - location: 18 (just consumed gas: 0) [ { "a" ; "b" ; "c" } ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039985.537 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 30 (just consumed gas: 0.010, remaining gas: 1039985.527 units remaining) + - location: 30 (just consumed gas: 0.010) [ False {} { "a" ; "b" ; "c" } ] - - location: 18 (just consumed gas: 0.015, remaining gas: 1039985.512 units remaining) + - location: 18 (just consumed gas: 0.015) [ False {} { "a" ; "b" ; "c" } ] - - location: 33 (just consumed gas: 0.015, remaining gas: 1039985.497 units remaining) + - location: 33 (just consumed gas: 0.015) [ {} { "a" ; "b" ; "c" } ] - - location: 33 (just consumed gas: 0.010, remaining gas: 1039985.487 units remaining) + - location: 33 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039985.477 units remaining) + - location: 34 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 36 (just consumed gas: 0.010, 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 dba4559cff7f..d1d70016e2a1 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 (just consumed gas: 13.786, remaining gas: 1039986.214 units remaining) + - location: 9 (just consumed gas: 13.786) [ (Pair {} { "" }) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039986.204 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039986.194 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} {} ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039986.184 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039986.174 units remaining) + - location: 13 (just consumed gas: 0.010) [ True {} {} ] - - location: 33 (just consumed gas: 0, remaining gas: 1039986.174 units remaining) + - location: 33 (just consumed gas: 0) [ {} {} ] - - location: 18 (just consumed gas: 0, remaining gas: 1039986.174 units remaining) + - location: 18 (just consumed gas: 0) [ {} ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039986.164 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} {} ] - - location: 30 (just consumed gas: 0.010, remaining gas: 1039986.154 units remaining) + - location: 30 (just consumed gas: 0.010) [ False {} {} ] - - location: 18 (just consumed gas: 0.015, remaining gas: 1039986.139 units remaining) + - location: 18 (just consumed gas: 0.015) [ False {} {} ] - - location: 33 (just consumed gas: 0.015, remaining gas: 1039986.124 units remaining) + - location: 33 (just consumed gas: 0.015) [ {} {} ] - - location: 33 (just consumed gas: 0.010, remaining gas: 1039986.114 units remaining) + - location: 33 (just consumed gas: 0.010) [ {} ] - - location: 34 (just consumed gas: 0.010, remaining gas: 1039986.104 units remaining) + - location: 34 (just consumed gas: 0.010) [ {} {} ] - - location: 36 (just consumed gas: 0.010, 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 fd90cb22fd90..e1e33226b477 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 (just consumed gas: 4.358, remaining gas: 1039995.642 units remaining) + - location: 8 (just consumed gas: 4.358) [ (Pair Unit {}) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.632 units remaining) + - location: 8 (just consumed gas: 0.010) [ ] - - location: 9 (just consumed gas: 0.300, remaining gas: 1039995.332 units remaining) + - location: 9 (just consumed gas: 0.300) [ {} ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039995.322 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} {} ] - - location: 13 (just consumed gas: 0.010, 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 e1df2fad4bb7..e89a4750e655 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 (just consumed gas: 13.726, remaining gas: 1039986.274 units remaining) + - location: 7 (just consumed gas: 13.726) [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039986.264 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039986.254 units remaining) + - location: 8 (just consumed gas: 0.010) [ { DROP ; SELF_ADDRESS } ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039986.244 units remaining) + - location: 14 (just consumed gas: 0.010) [ Unit { DROP ; SELF_ADDRESS } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039986.234 units remaining) + - location: 12 (just consumed gas: 0.010) [ ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039986.224 units remaining) + - location: 13 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 15 (just consumed gas: 0.025, remaining gas: 1039986.199 units remaining) + - location: 15 (just consumed gas: 0.025) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039986.189 units remaining) + - location: 16 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039986.179 units remaining) + - location: 17 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 20 (just consumed gas: 0.036, remaining gas: 1039986.143 units remaining) + - location: 20 (just consumed gas: 0.036) [ 0 ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039986.133 units remaining) + - location: 21 (just consumed gas: 0.010) [ True ] - - location: 22 (just consumed gas: 0, remaining gas: 1039986.133 units remaining) + - location: 22 (just consumed gas: 0) [ ] - - location: 22 (just consumed gas: 0.015, remaining gas: 1039986.118 units remaining) + - location: 22 (just consumed gas: 0.015) [ ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039986.108 units remaining) + - location: 28 (just consumed gas: 0.010) [ Unit ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039986.098 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} Unit ] - - location: 31 (just consumed gas: 0.010, 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 f9fdcbe43f6a..3252a4f1a97d 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 (just consumed gas: 15.515, remaining gas: 1039984.485 units remaining) + - location: 13 (just consumed gas: 15.515) [ (Pair (Right (Left Unit)) Unit) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039984.475 units remaining) + - location: 13 (just consumed gas: 0.010) [ ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039984.465 units remaining) + - location: 14 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039984.455 units remaining) + - location: 15 (just consumed gas: 0.010) [ ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039984.445 units remaining) + - location: 16 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039984.435 units remaining) + - location: 17 (just consumed gas: 0.010) [ ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039984.425 units remaining) + - location: 18 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 19 (just consumed gas: 0.506, remaining gas: 1039983.919 units remaining) + - location: 19 (just consumed gas: 0.506) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039983.909 units remaining) + - location: 20 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 21 (just consumed gas: 0.506, remaining gas: 1039983.403 units remaining) + - location: 21 (just consumed gas: 0.506) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (just consumed gas: 0.035, remaining gas: 1039983.368 units remaining) + - location: 24 (just consumed gas: 0.035) [ 0 ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039983.358 units remaining) + - location: 25 (just consumed gas: 0.010) [ True ] - - location: 26 (just consumed gas: 0, remaining gas: 1039983.358 units remaining) + - location: 26 (just consumed gas: 0) [ ] - - location: 26 (just consumed gas: 0.015, remaining gas: 1039983.343 units remaining) + - location: 26 (just consumed gas: 0.015) [ ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039983.333 units remaining) + - location: 32 (just consumed gas: 0.010) [ Unit ] - - location: 33 (just consumed gas: 0.010, remaining gas: 1039983.323 units remaining) + - location: 33 (just consumed gas: 0.010) [ {} Unit ] - - location: 35 (just consumed gas: 0.010, 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 97f1163cd16b..fcd26e2aea6d 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 (just consumed gas: 40.124, remaining gas: 1039959.876 units remaining) + - location: 13 (just consumed gas: 40.124) [ (Pair (Left (Left 0)) Unit) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039959.866 units remaining) + - location: 13 (just consumed gas: 0.010) [ ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039959.856 units remaining) + - location: 14 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 15 (just consumed gas: 0.516, remaining gas: 1039959.340 units remaining) + - location: 15 (just consumed gas: 0.516) [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039959.330 units remaining) + - location: 16 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 17 (just consumed gas: 0.506, remaining gas: 1039958.824 units remaining) + - location: 17 (just consumed gas: 0.506) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039958.814 units remaining) + - location: 18 (just consumed gas: 0.010) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 19 (just consumed gas: 0, remaining gas: 1039958.814 units remaining) + - location: 19 (just consumed gas: 0) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039958.804 units remaining) + - location: 21 (just consumed gas: 0.010) [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 19 (just consumed gas: 0.025, remaining gas: 1039958.779 units remaining) + - location: 19 (just consumed gas: 0.025) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (just consumed gas: 0.035, remaining gas: 1039958.744 units remaining) + - location: 24 (just consumed gas: 0.035) [ -1 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039958.734 units remaining) + - location: 25 (just consumed gas: 0.010) [ True 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (just consumed gas: 0, remaining gas: 1039958.734 units remaining) + - location: 26 (just consumed gas: 0) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (just consumed gas: 0.015, remaining gas: 1039958.719 units remaining) + - location: 26 (just consumed gas: 0.015) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039958.709 units remaining) + - location: 32 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 33 (just consumed gas: 0.506, remaining gas: 1039958.203 units remaining) + - location: 33 (just consumed gas: 0.506) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 36 (just consumed gas: 0.035, remaining gas: 1039958.168 units remaining) + - location: 36 (just consumed gas: 0.035) [ 0 ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039958.158 units remaining) + - location: 37 (just consumed gas: 0.010) [ True ] - - location: 38 (just consumed gas: 0, remaining gas: 1039958.158 units remaining) + - location: 38 (just consumed gas: 0) [ ] - - location: 38 (just consumed gas: 0.015, remaining gas: 1039958.143 units remaining) + - location: 38 (just consumed gas: 0.015) [ ] - - location: 44 (just consumed gas: 0.010, remaining gas: 1039958.133 units remaining) + - location: 44 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 48 (just consumed gas: 0.010, remaining gas: 1039958.123 units remaining) + - location: 48 (just consumed gas: 0.010) [ ] - - location: 49 (just consumed gas: 0.010, remaining gas: 1039958.113 units remaining) + - location: 49 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%B" ] - - location: 53 (just consumed gas: 0.010, remaining gas: 1039958.103 units remaining) + - location: 53 (just consumed gas: 0.010) [ ] - - location: 54 (just consumed gas: 0.010, remaining gas: 1039958.093 units remaining) + - location: 54 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%maybe_C" ] - - location: 60 (just consumed gas: 0.010, remaining gas: 1039958.083 units remaining) + - location: 60 (just consumed gas: 0.010) [ ] - - location: 61 (just consumed gas: 0.010, remaining gas: 1039958.073 units remaining) + - location: 61 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%Z" ] - - location: 65 (just consumed gas: 0.010, remaining gas: 1039958.063 units remaining) + - location: 65 (just consumed gas: 0.010) [ ] - - location: 66 (just consumed gas: 0.010, remaining gas: 1039958.053 units remaining) + - location: 66 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 76 (just consumed gas: 0.010, remaining gas: 1039958.043 units remaining) + - location: 76 (just consumed gas: 0.010) [ ] - - location: 77 (just consumed gas: 0.010, remaining gas: 1039958.033 units remaining) + - location: 77 (just consumed gas: 0.010) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 87 (just consumed gas: 0.010, remaining gas: 1039958.023 units remaining) + - location: 87 (just consumed gas: 0.010) [ ] - - location: 88 (just consumed gas: 0.010, remaining gas: 1039958.013 units remaining) + - location: 88 (just consumed gas: 0.010) [ Unit ] - - location: 89 (just consumed gas: 0.010, remaining gas: 1039958.003 units remaining) + - location: 89 (just consumed gas: 0.010) [ {} Unit ] - - location: 91 (just consumed gas: 0.010, 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 3946e86e8aca..b6a723c0ddf4 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 (just consumed gas: 10.929, remaining gas: 1039989.071 units remaining) + - location: 9 (just consumed gas: 10.929) [ (Pair "" "hello" 0) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.061 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "" "hello" 0) (Pair "" "hello" 0) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.051 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "" "hello" 0) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039989.051 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "" "hello" 0) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.041 units remaining) + - location: 13 (just consumed gas: 0.010) [ "" ] - - location: 11 (just consumed gas: 0.025, remaining gas: 1039989.016 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "hello" 0) "" ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.006 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "hello" 0) "" ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.996 units remaining) + - location: 16 (just consumed gas: 0.010) [ "hello" (Pair "hello" 0) "" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.986 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair "hello" 0) "" ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.976 units remaining) + - location: 18 (just consumed gas: 0.010) [ 0 "" ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.966 units remaining) + - location: 19 (just consumed gas: 0.010) [ "" 0 ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.956 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair "" 0) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.946 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair "" 0) ] - - location: 23 (just consumed gas: 0.010, 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 136b224dce82..a993a26f1c2b 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 (just consumed gas: 10.959, remaining gas: 1039989.041 units remaining) + - location: 9 (just consumed gas: 10.959) [ (Pair "abc" "hello" 0) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.031 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "abc" "hello" 0) (Pair "abc" "hello" 0) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.021 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "abc" "hello" 0) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039989.021 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "abc" "hello" 0) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.011 units remaining) + - location: 13 (just consumed gas: 0.010) [ "abc" ] - - location: 11 (just consumed gas: 0.025, remaining gas: 1039988.986 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "hello" 0) "abc" ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.976 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "hello" 0) "abc" ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.966 units remaining) + - location: 16 (just consumed gas: 0.010) [ "hello" (Pair "hello" 0) "abc" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.956 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair "hello" 0) "abc" ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.946 units remaining) + - location: 18 (just consumed gas: 0.010) [ 0 "abc" ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.936 units remaining) + - location: 19 (just consumed gas: 0.010) [ "abc" 0 ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.926 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair "abc" 0) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.916 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair "abc" 0) ] - - location: 23 (just consumed gas: 0.010, 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 933818630bea..79f70412b189 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 (just consumed gas: 10.979, remaining gas: 1039989.021 units remaining) + - location: 9 (just consumed gas: 10.979) [ (Pair "world" "hello" 0) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.011 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "world" "hello" 0) (Pair "world" "hello" 0) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.001 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "world" "hello" 0) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039989.001 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair "world" "hello" 0) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039988.991 units remaining) + - location: 13 (just consumed gas: 0.010) [ "world" ] - - location: 11 (just consumed gas: 0.025, remaining gas: 1039988.966 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "hello" 0) "world" ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039988.956 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "hello" 0) "world" ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.946 units remaining) + - location: 16 (just consumed gas: 0.010) [ "hello" (Pair "hello" 0) "world" ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039988.936 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair "hello" 0) "world" ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039988.926 units remaining) + - location: 18 (just consumed gas: 0.010) [ 0 "world" ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.916 units remaining) + - location: 19 (just consumed gas: 0.010) [ "world" 0 ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039988.906 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Pair "world" 0) ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.896 units remaining) + - location: 21 (just consumed gas: 0.010) [ {} (Pair "world" 0) ] - - location: 23 (just consumed gas: 0.010, 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 394b91d839a4..285453ac4994 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 (just consumed gas: 10.357, remaining gas: 1039989.643 units remaining) + - location: 9 (just consumed gas: 10.357) [ (Pair 1 "hello" 0) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.633 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair 1 "hello" 0) (Pair 1 "hello" 0) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.623 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair 1 "hello" 0) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039989.623 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair 1 "hello" 0) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.613 units remaining) + - location: 13 (just consumed gas: 0.010) [ 1 ] - - location: 11 (just consumed gas: 0.025, remaining gas: 1039989.588 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "hello" 0) 1 ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.578 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair "hello" 0) (Pair "hello" 0) 1 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.568 units remaining) + - location: 16 (just consumed gas: 0.010) [ 0 (Pair "hello" 0) 1 ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.558 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair "hello" 0) 1 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.548 units remaining) + - location: 18 (just consumed gas: 0.010) [ "hello" 1 ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.538 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair "hello" 1) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.528 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} (Pair "hello" 1) ] - - location: 22 (just consumed gas: 0.010, 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 c5e24ad1692a..bc7c24e4b009 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 (just consumed gas: 10.357, remaining gas: 1039989.643 units remaining) + - location: 9 (just consumed gas: 10.357) [ (Pair 3 "hello" 500) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.633 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair 3 "hello" 500) (Pair 3 "hello" 500) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.623 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "hello" 500) (Pair 3 "hello" 500) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039989.623 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair 3 "hello" 500) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.613 units remaining) + - location: 13 (just consumed gas: 0.010) [ 3 ] - - location: 11 (just consumed gas: 0.025, remaining gas: 1039989.588 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "hello" 500) 3 ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.578 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair "hello" 500) (Pair "hello" 500) 3 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.568 units remaining) + - location: 16 (just consumed gas: 0.010) [ 500 (Pair "hello" 500) 3 ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.558 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair "hello" 500) 3 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.548 units remaining) + - location: 18 (just consumed gas: 0.010) [ "hello" 3 ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.538 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair "hello" 3) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.528 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} (Pair "hello" 3) ] - - location: 22 (just consumed gas: 0.010, 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 41ab618117c2..6017da5c1116 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 (just consumed gas: 10.357, remaining gas: 1039989.643 units remaining) + - location: 9 (just consumed gas: 10.357) [ (Pair 100 "hello" 7) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039989.633 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair 100 "hello" 7) (Pair 100 "hello" 7) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.623 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair "hello" 7) (Pair 100 "hello" 7) ] - - location: 11 (just consumed gas: 0, remaining gas: 1039989.623 units remaining) + - location: 11 (just consumed gas: 0) [ (Pair 100 "hello" 7) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.613 units remaining) + - location: 13 (just consumed gas: 0.010) [ 100 ] - - location: 11 (just consumed gas: 0.025, remaining gas: 1039989.588 units remaining) + - location: 11 (just consumed gas: 0.025) [ (Pair "hello" 7) 100 ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039989.578 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair "hello" 7) (Pair "hello" 7) 100 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039989.568 units remaining) + - location: 16 (just consumed gas: 0.010) [ 7 (Pair "hello" 7) 100 ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.558 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair "hello" 7) 100 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.548 units remaining) + - location: 18 (just consumed gas: 0.010) [ "hello" 100 ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039989.538 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair "hello" 100) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039989.528 units remaining) + - location: 20 (just consumed gas: 0.010) [ {} (Pair "hello" 100) ] - - location: 22 (just consumed gas: 0.010, 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 cd2b1b1c1fa6..eb1f303e08ad 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 (just consumed gas: 4.919, remaining gas: 1039995.081 units remaining) + - location: 9 (just consumed gas: 4.919) [ (Pair { "a" ; "b" ; "c" } {}) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.071 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "a" ; "b" ; "c" } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.061 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "a" ; "b" ; "c" } ] - - location: 12 (just consumed gas: 0.010, 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 2000dc38a989..605606d99407 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 (just consumed gas: 4.702, remaining gas: 1039995.298 units remaining) + - location: 9 (just consumed gas: 4.702) [ (Pair { "asdf" ; "bcde" } {}) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.288 units remaining) + - location: 9 (just consumed gas: 0.010) [ { "asdf" ; "bcde" } ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.278 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} { "asdf" ; "bcde" } ] - - location: 12 (just consumed gas: 0.010, 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 5dd55a39ad87..f335d69ba2f9 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 (just consumed gas: 4.075, remaining gas: 1039995.925 units remaining) + - location: 9 (just consumed gas: 4.075) [ (Pair {} {}) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.915 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.905 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} {} ] - - location: 12 (just consumed gas: 0.010, 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 0bb0c0e1a468..c4adffc6630b 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 (just consumed gas: 7.727, remaining gas: 1039992.273 units remaining) + - location: 8 (just consumed gas: 7.727) [ (Pair { -100 ; 1 ; 2 ; 3 } 111) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039992.263 units remaining) + - location: 8 (just consumed gas: 0.010) [ { -100 ; 1 ; 2 ; 3 } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039992.253 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0 { -100 ; 1 ; 2 ; 3 } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039992.243 units remaining) + - location: 12 (just consumed gas: 0.010) [ { -100 ; 1 ; 2 ; 3 } 0 ] - - location: 13 (just consumed gas: 0, remaining gas: 1039992.243 units remaining) + - location: 13 (just consumed gas: 0) [ -100 0 ] - - location: 15 (just consumed gas: 0.035, remaining gas: 1039992.208 units remaining) + - location: 15 (just consumed gas: 0.035) [ -100 ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.193 units remaining) + - location: 13 (just consumed gas: 0.015) [ 1 -100 ] - - location: 15 (just consumed gas: 0.035, remaining gas: 1039992.158 units remaining) + - location: 15 (just consumed gas: 0.035) [ -99 ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.143 units remaining) + - location: 13 (just consumed gas: 0.015) [ 2 -99 ] - - location: 15 (just consumed gas: 0.035, remaining gas: 1039992.108 units remaining) + - location: 15 (just consumed gas: 0.035) [ -97 ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.093 units remaining) + - location: 13 (just consumed gas: 0.015) [ 3 -97 ] - - location: 15 (just consumed gas: 0.035, remaining gas: 1039992.058 units remaining) + - location: 15 (just consumed gas: 0.035) [ -94 ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.043 units remaining) + - location: 13 (just consumed gas: 0.015) [ -94 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.033 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} -94 ] - - location: 18 (just consumed gas: 0.010, 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 c888f8b5d5d3..7dfba734726c 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 (just consumed gas: 6.932, remaining gas: 1039993.068 units remaining) + - location: 8 (just consumed gas: 6.932) [ (Pair { 1 } 111) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039993.058 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.048 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0 { 1 } ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.038 units remaining) + - location: 12 (just consumed gas: 0.010) [ { 1 } 0 ] - - location: 13 (just consumed gas: 0, remaining gas: 1039993.038 units remaining) + - location: 13 (just consumed gas: 0) [ 1 0 ] - - location: 15 (just consumed gas: 0.035, remaining gas: 1039993.003 units remaining) + - location: 15 (just consumed gas: 0.035) [ 1 ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039992.988 units remaining) + - location: 13 (just consumed gas: 0.015) [ 1 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.978 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 1 ] - - location: 18 (just consumed gas: 0.010, 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 d7fe0e30719e..95b44922116a 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 (just consumed gas: 6.702, remaining gas: 1039993.298 units remaining) + - location: 8 (just consumed gas: 6.702) [ (Pair {} 111) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039993.288 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039993.278 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0 {} ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039993.268 units remaining) + - location: 12 (just consumed gas: 0.010) [ {} 0 ] - - location: 13 (just consumed gas: 0, remaining gas: 1039993.268 units remaining) + - location: 13 (just consumed gas: 0) [ 0 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039993.258 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} 0 ] - - location: 18 (just consumed gas: 0.010, 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 90a40a360fa0..2f4dc29106bb 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 (just consumed gas: 14.357, remaining gas: 1039985.643 units remaining) + - location: 11 (just consumed gas: 14.357) [ (Pair "" { "Hello" ; "World" } None) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039985.633 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 12 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039985.613 units remaining) + - location: 13 (just consumed gas: 0.010) [ "" (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039985.613 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039985.603 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039985.593 units remaining) + - location: 18 (just consumed gas: 0.010) [ { "Hello" ; "World" } (Pair "" { "Hello" ; "World" } None) ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039985.568 units remaining) + - location: 14 (just consumed gas: 0.025) [ "" { "Hello" ; "World" } (Pair "" { "Hello" ; "World" } None) ] - - location: 19 (just consumed gas: 0.115, remaining gas: 1039985.453 units remaining) + - location: 19 (just consumed gas: 0.115) [ False (Pair "" { "Hello" ; "World" } None) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.443 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Some False) (Pair "" { "Hello" ; "World" } None) ] - - location: 21 (just consumed gas: 0, remaining gas: 1039985.443 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair "" { "Hello" ; "World" } None) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.433 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair { "Hello" ; "World" } None) ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039985.423 units remaining) + - location: 25 (just consumed gas: 0.010) [ { "Hello" ; "World" } ] - - location: 21 (just consumed gas: 0.025, remaining gas: 1039985.398 units remaining) + - location: 21 (just consumed gas: 0.025) [ (Some False) { "Hello" ; "World" } ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039985.388 units remaining) + - location: 26 (just consumed gas: 0.010) [ { "Hello" ; "World" } (Some False) ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039985.378 units remaining) + - location: 27 (just consumed gas: 0.010) [ (Pair { "Hello" ; "World" } (Some False)) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039985.368 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} (Pair { "Hello" ; "World" } (Some False)) ] - - location: 30 (just consumed gas: 0.010, 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 e01e95ee04ce..526ef95441e9 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 (just consumed gas: 13.992, remaining gas: 1039986.008 units remaining) + - location: 11 (just consumed gas: 13.992) [ (Pair "Hi" { "Hi" } None) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039985.998 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 12 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, remaining gas: 1039985.978 units remaining) + - location: 13 (just consumed gas: 0.010) [ "Hi" (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039985.978 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039985.968 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039985.958 units remaining) + - location: 18 (just consumed gas: 0.010) [ { "Hi" } (Pair "Hi" { "Hi" } None) ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039985.933 units remaining) + - location: 14 (just consumed gas: 0.025) [ "Hi" { "Hi" } (Pair "Hi" { "Hi" } None) ] - - location: 19 (just consumed gas: 0.119, remaining gas: 1039985.814 units remaining) + - location: 19 (just consumed gas: 0.119) [ True (Pair "Hi" { "Hi" } None) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039985.804 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Some True) (Pair "Hi" { "Hi" } None) ] - - location: 21 (just consumed gas: 0, remaining gas: 1039985.804 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair "Hi" { "Hi" } None) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039985.794 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair { "Hi" } None) ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039985.784 units remaining) + - location: 25 (just consumed gas: 0.010) [ { "Hi" } ] - - location: 21 (just consumed gas: 0.025, remaining gas: 1039985.759 units remaining) + - location: 21 (just consumed gas: 0.025) [ (Some True) { "Hi" } ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039985.749 units remaining) + - location: 26 (just consumed gas: 0.010) [ { "Hi" } (Some True) ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039985.739 units remaining) + - location: 27 (just consumed gas: 0.010) [ (Pair { "Hi" } (Some True)) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039985.729 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} (Pair { "Hi" } (Some True)) ] - - location: 30 (just consumed gas: 0.010, 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 8d305ec15242..bd2cf869e9b7 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 (just consumed gas: 13.724, remaining gas: 1039986.276 units remaining) + - location: 11 (just consumed gas: 13.724) [ (Pair "Hi" {} None) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039986.266 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039986.256 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair "Hi" {} None) (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039986.246 units remaining) + - location: 13 (just consumed gas: 0.010) [ "Hi" (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 14 (just consumed gas: 0, remaining gas: 1039986.246 units remaining) + - location: 14 (just consumed gas: 0) [ (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039986.236 units remaining) + - location: 17 (just consumed gas: 0.010) [ (Pair {} None) (Pair "Hi" {} None) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039986.226 units remaining) + - location: 18 (just consumed gas: 0.010) [ {} (Pair "Hi" {} None) ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039986.201 units remaining) + - location: 14 (just consumed gas: 0.025) [ "Hi" {} (Pair "Hi" {} None) ] - - location: 19 (just consumed gas: 0.117, remaining gas: 1039986.084 units remaining) + - location: 19 (just consumed gas: 0.117) [ False (Pair "Hi" {} None) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039986.074 units remaining) + - location: 20 (just consumed gas: 0.010) [ (Some False) (Pair "Hi" {} None) ] - - location: 21 (just consumed gas: 0, remaining gas: 1039986.074 units remaining) + - location: 21 (just consumed gas: 0) [ (Pair "Hi" {} None) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039986.064 units remaining) + - location: 24 (just consumed gas: 0.010) [ (Pair {} None) ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039986.054 units remaining) + - location: 25 (just consumed gas: 0.010) [ {} ] - - location: 21 (just consumed gas: 0.025, remaining gas: 1039986.029 units remaining) + - location: 21 (just consumed gas: 0.025) [ (Some False) {} ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039986.019 units remaining) + - location: 26 (just consumed gas: 0.010) [ {} (Some False) ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039986.009 units remaining) + - location: 27 (just consumed gas: 0.010) [ (Pair {} (Some False)) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039985.999 units remaining) + - location: 28 (just consumed gas: 0.010) [ {} (Pair {} (Some False)) ] - - location: 30 (just consumed gas: 0.010, 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 1e8a0093a6ff..bb5ded785b61 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 (just consumed gas: 5.950, remaining gas: 1039994.050 units remaining) + - location: 8 (just consumed gas: 5.950) [ (Pair { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } 111) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.040 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.030 units remaining) + - location: 9 (just consumed gas: 0.010) [ 6 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.020 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 6 ] - - location: 12 (just consumed gas: 0.010, 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 3c202ae2aad8..111272c28a07 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 (just consumed gas: 5.155, remaining gas: 1039994.845 units remaining) + - location: 8 (just consumed gas: 5.155) [ (Pair { 1 ; 2 ; 3 } 111) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.835 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039994.825 units remaining) + - location: 9 (just consumed gas: 0.010) [ 3 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039994.815 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 3 ] - - location: 12 (just consumed gas: 0.010, 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 f006ce19de3f..253585f5b5e8 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 (just consumed gas: 4.625, remaining gas: 1039995.375 units remaining) + - location: 8 (just consumed gas: 4.625) [ (Pair { 1 } 111) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.365 units remaining) + - location: 8 (just consumed gas: 0.010) [ { 1 } ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.355 units remaining) + - location: 9 (just consumed gas: 0.010) [ 1 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.345 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 1 ] - - location: 12 (just consumed gas: 0.010, 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 9e86f59e3b44..8f4129eec2c4 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 (just consumed gas: 4.395, remaining gas: 1039995.605 units remaining) + - location: 8 (just consumed gas: 4.395) [ (Pair {} 111) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.595 units remaining) + - location: 8 (just consumed gas: 0.010) [ {} ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.585 units remaining) + - location: 9 (just consumed gas: 0.010) [ 0 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.575 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} 0 ] - - location: 12 (just consumed gas: 0.010, 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 a5fda8333c0a..c9167d5d5125 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 (just consumed gas: 5.053, remaining gas: 1039994.947 units remaining) + - location: 8 (just consumed gas: 5.053) [ (Pair 0x48656c6c6f2c20776f726c6421 None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039994.937 units remaining) + - location: 8 (just consumed gas: 0.010) [ 0x48656c6c6f2c20776f726c6421 ] - - location: 9 (just consumed gas: 1.457, remaining gas: 1039993.480 units remaining) + - location: 9 (just consumed gas: 1.457) [ 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722 ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039993.470 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039993.460 units remaining) + - location: 11 (just consumed gas: 0.010) [ {} (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) ] - - location: 13 (just consumed gas: 0.010, 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 7906d820b230..6412d83dc2a5 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 0 0)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 0 0)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010) [ 0 0 ] - - location: 18 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0) [ 0 ] - - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 0 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 0) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 0) ] - - location: 25 (just consumed gas: 0.010, 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 80dc9021791d..b50c4d6e39ea 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 0 1)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 0 1)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 0 1) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010) [ 0 1 ] - - location: 18 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0) [ 0 ] - - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 0 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 0) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 0) ] - - location: 25 (just consumed gas: 0.010, 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 f41f8885015f..c187f26c9550 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 1 2)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 1 2)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 1 2) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010) [ 1 2 ] - - location: 18 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0) [ 4 ] - - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 4 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 4) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 4) ] - - location: 25 (just consumed gas: 0.010, 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 5e9a4329f9b5..a5ee974c79a2 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 15 2)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 15 2)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 15 2) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010) [ 15 2 ] - - location: 18 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0) [ 60 ] - - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 60 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 60) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 60) ] - - location: 25 (just consumed gas: 0.010, 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 8d5432b2ed48..c4c684a738af 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Left (Pair 8 1)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Left (Pair 8 1)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 8 1) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) + - location: 17 (just consumed gas: 0.010) [ 8 1 ] - - location: 18 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) + - location: 18 (just consumed gas: 0) [ 16 ] - - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 16 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 16) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 16) ] - - location: 25 (just consumed gas: 0.010, 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 bc646d61bf46..a1858961f175 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 0 0)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 0 0)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 0 ] - - location: 21 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0) [ 0 ] - - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 0 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 0) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 0) ] - - location: 25 (just consumed gas: 0.010, 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 9c902d40515c..10c5326b3d6e 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 0 1)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 0 1)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 0 1) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 1 ] - - location: 21 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0) [ 0 ] - - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 0 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 0) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 0) ] - - location: 25 (just consumed gas: 0.010, 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 4f75cf60c585..d30244a0870c 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 1 2)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 1 2)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 1 2) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 2 ] - - location: 21 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0) [ 0 ] - - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 0 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 0) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 0) ] - - location: 25 (just consumed gas: 0.010, 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 3d1737799adc..4838f8b62d89 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 15 2)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 15 2)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 15 2) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010) [ 15 2 ] - - location: 21 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0) [ 3 ] - - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 3 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 3) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 3) ] - - location: 25 (just consumed gas: 0.010, 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 9ece53133392..3126bd5963bc 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 (just consumed gas: 8.811, remaining gas: 1039991.189 units remaining) + - location: 14 (just consumed gas: 8.811) [ (Pair (Right (Pair 8 1)) None) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039991.179 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Right (Pair 8 1)) ] - - location: 15 (just consumed gas: 0, remaining gas: 1039991.179 units remaining) + - location: 15 (just consumed gas: 0) [ (Pair 8 1) ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039991.169 units remaining) + - location: 20 (just consumed gas: 0.010) [ 8 1 ] - - location: 21 (just consumed gas: 0, remaining gas: 1039991.169 units remaining) + - location: 21 (just consumed gas: 0) [ 4 ] - - location: 15 (just consumed gas: 0.015, remaining gas: 1039991.154 units remaining) + - location: 15 (just consumed gas: 0.015) [ 4 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039991.144 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Some 4) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039991.134 units remaining) + - location: 23 (just consumed gas: 0.010) [ {} (Some 4) ] - - location: 25 (just consumed gas: 0.010, 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 f80e8b129752..da01b134c1d7 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 (just consumed gas: 9.198, remaining gas: 1039990.802 units remaining) + - location: 10 (just consumed gas: 9.198) [ (Pair (Pair 0 0) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.792 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 0) None ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.782 units remaining) + - location: 11 (just consumed gas: 0.010) [ None (Pair 0 0) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.782 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.772 units remaining) + - location: 15 (just consumed gas: 0.010) [ ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.762 units remaining) + - location: 16 (just consumed gas: 0.010) [ None ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.747 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.737 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (just consumed gas: 0.010, 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 7ddf49803089..226d4ef084fa 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 (just consumed gas: 9.342, remaining gas: 1039990.658 units remaining) + - location: 10 (just consumed gas: 9.342) [ (Pair (Pair 0 0) (Some "Foo")) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 0) (Some "Foo") ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "Foo") (Pair 0 0) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0) [ "Foo" (Pair 0 0) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 0 0) "Foo" ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 0 "Foo" ] - - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some "") ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some "") ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some "") ] - - location: 24 (just consumed gas: 0.010, 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 70b408034d81..68ee260b39af 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 (just consumed gas: 9.342, remaining gas: 1039990.658 units remaining) + - location: 10 (just consumed gas: 9.342) [ (Pair (Pair 0 10) (Some "Foo")) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 10) (Some "Foo") ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "Foo") (Pair 0 10) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0) [ "Foo" (Pair 0 10) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 0 10) "Foo" ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 10 "Foo" ] - - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026) [ None ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (just consumed gas: 0.010, 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 0fef32afb4b2..34911739723e 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 (just consumed gas: 9.342, remaining gas: 1039990.658 units remaining) + - location: 10 (just consumed gas: 9.342) [ (Pair (Pair 0 2) (Some "Foo")) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 2) (Some "Foo") ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "Foo") (Pair 0 2) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0) [ "Foo" (Pair 0 2) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 0 2) "Foo" ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 2 "Foo" ] - - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some "Fo") ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some "Fo") ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some "Fo") ] - - location: 24 (just consumed gas: 0.010, 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 8ad3c2ee2eaf..1b429cd7dcf1 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 (just consumed gas: 9.342, remaining gas: 1039990.658 units remaining) + - location: 10 (just consumed gas: 9.342) [ (Pair (Pair 1 1) (Some "Foo")) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 1) (Some "Foo") ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "Foo") (Pair 1 1) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0) [ "Foo" (Pair 1 1) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 1) "Foo" ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 1 "Foo" ] - - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some "o") ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some "o") ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some "o") ] - - location: 24 (just consumed gas: 0.010, 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 4537dcebb375..db9a8a59f6c9 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 (just consumed gas: 9.342, remaining gas: 1039990.658 units remaining) + - location: 10 (just consumed gas: 9.342) [ (Pair (Pair 1 3) (Some "Foo")) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 3) (Some "Foo") ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "Foo") (Pair 1 3) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0) [ "Foo" (Pair 1 3) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 3) "Foo" ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 3 "Foo" ] - - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026) [ None ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (just consumed gas: 0.010, 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 d0d853b53cfa..999fc71166a3 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 (just consumed gas: 9.342, remaining gas: 1039990.658 units remaining) + - location: 10 (just consumed gas: 9.342) [ (Pair (Pair 10 5) (Some "Foo")) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.648 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 10 5) (Some "Foo") ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.638 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "Foo") (Pair 10 5) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.638 units remaining) + - location: 13 (just consumed gas: 0) [ "Foo" (Pair 10 5) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.628 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 10 5) "Foo" ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.618 units remaining) + - location: 20 (just consumed gas: 0.010) [ 10 5 "Foo" ] - - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.592 units remaining) + - location: 21 (just consumed gas: 0.026) [ None ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.577 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.567 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (just consumed gas: 0.010, 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 3faab8635d03..be51a531fae1 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 (just consumed gas: 69.312, remaining gas: 1039930.688 units remaining) + - location: 10 (just consumed gas: 69.312) [ (Pair (Pair 1 10000) (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo")) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039930.678 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 10000) (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo") ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039930.668 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo") (Pair 1 10000) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039930.668 units remaining) + - location: 13 (just consumed gas: 0) [ "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" (Pair 1 10000) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039930.658 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 10000) "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039930.648 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 10000 "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" ] - - location: 21 (just consumed gas: 3.025, remaining gas: 1039927.623 units remaining) + - location: 21 (just consumed gas: 3.025) [ None ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039927.608 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039927.598 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (just consumed gas: 0.010, 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 c1a3d1f6fbf9..af940c73bb17 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 (just consumed gas: 9.198, remaining gas: 1039990.802 units remaining) + - location: 10 (just consumed gas: 9.198) [ (Pair (Pair 0 1) None) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.792 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 1) None ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.782 units remaining) + - location: 11 (just consumed gas: 0.010) [ None (Pair 0 1) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.782 units remaining) + - location: 13 (just consumed gas: 0) [ (Pair 0 1) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039990.772 units remaining) + - location: 15 (just consumed gas: 0.010) [ ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039990.762 units remaining) + - location: 16 (just consumed gas: 0.010) [ None ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.747 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.737 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (just consumed gas: 0.010, 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 d67f02b1ea28..011f1aa4ac57 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 (just consumed gas: 9.298, remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 0 0) (Some 0xaabbcc)) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 0) (Some 0xaabbcc) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbcc) (Pair 0 0) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbcc (Pair 0 0) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 0 0) 0xaabbcc ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 0 0xaabbcc ] - - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some 0x) ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some 0x) ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some 0x) ] - - location: 24 (just consumed gas: 0.010, 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 8a9d656f68fa..e3882c73b6b7 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 (just consumed gas: 9.298, remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 0 1) (Some 0xaabbcc)) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 0 1) (Some 0xaabbcc) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbcc) (Pair 0 1) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbcc (Pair 0 1) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 0 1) 0xaabbcc ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 0 1 0xaabbcc ] - - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some 0xaa) ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some 0xaa) ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some 0xaa) ] - - location: 24 (just consumed gas: 0.010, 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 e63513fdf3e7..a605436b2668 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 (just consumed gas: 9.298, remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 1 1) (Some 0xaabbcc)) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 1) (Some 0xaabbcc) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbcc) (Pair 1 1) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbcc (Pair 1 1) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 1) 0xaabbcc ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 1 0xaabbcc ] - - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some 0xbb) ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some 0xbb) ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some 0xbb) ] - - location: 24 (just consumed gas: 0.010, 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 b9e62bc11713..c7e8e253ee16 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 (just consumed gas: 9.298, remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 1 1) (Some 0xaabbcc)) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 1) (Some 0xaabbcc) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbcc) (Pair 1 1) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbcc (Pair 1 1) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 1) 0xaabbcc ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 1 0xaabbcc ] - - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some 0xbb) ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some 0xbb) ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some 0xbb) ] - - location: 24 (just consumed gas: 0.010, 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 bb41a10ab379..4e98bf6ecee1 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 (just consumed gas: 9.298, remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 1 2) (Some 0xaabbcc)) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 2) (Some 0xaabbcc) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbcc) (Pair 1 2) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbcc (Pair 1 2) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 2) 0xaabbcc ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 2 0xaabbcc ] - - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026) [ (Some 0xbbcc) ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015) [ (Some 0xbbcc) ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} (Some 0xbbcc) ] - - location: 24 (just consumed gas: 0.010, 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 4e1356bc867f..febf94f38d5e 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 (just consumed gas: 9.298, remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 1 3) (Some 0xaabbcc)) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 3) (Some 0xaabbcc) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbcc) (Pair 1 3) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbcc (Pair 1 3) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 3) 0xaabbcc ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 3 0xaabbcc ] - - location: 21 (just consumed gas: 0.026, remaining gas: 1039990.636 units remaining) + - location: 21 (just consumed gas: 0.026) [ None ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039990.621 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039990.611 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (just consumed gas: 0.010, 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 673aaf0c2fdc..efc07cdaaf55 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 (just consumed gas: 9.298, remaining gas: 1039990.702 units remaining) + - location: 10 (just consumed gas: 9.298) [ (Pair (Pair 1 10000) (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc)) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039990.692 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 10000) (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039990.682 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc) (Pair 1 10000) ] - - location: 13 (just consumed gas: 0, remaining gas: 1039990.682 units remaining) + - location: 13 (just consumed gas: 0) [ 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc (Pair 1 10000) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039990.672 units remaining) + - location: 19 (just consumed gas: 0.010) [ (Pair 1 10000) 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039990.662 units remaining) + - location: 20 (just consumed gas: 0.010) [ 1 10000 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc ] - - location: 21 (just consumed gas: 3.025, remaining gas: 1039987.637 units remaining) + - location: 21 (just consumed gas: 3.025) [ None ] - - location: 13 (just consumed gas: 0.015, remaining gas: 1039987.622 units remaining) + - location: 13 (just consumed gas: 0.015) [ None ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039987.612 units remaining) + - location: 22 (just consumed gas: 0.010) [ {} None ] - - location: 24 (just consumed gas: 0.010, 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 ffa6381af498..568a6998e5e2 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 (just consumed gas: 4.564, remaining gas: 1039995.436 units remaining) + - location: 8 (just consumed gas: 4.564) [ (Pair "Hello" None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.426 units remaining) + - location: 8 (just consumed gas: 0.010) [ "Hello" ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.416 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Some "Hello") ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.406 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} (Some "Hello") ] - - location: 12 (just consumed gas: 0.010, 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 e39c02d2ce88..82a86f861748 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 (just consumed gas: 4.554, remaining gas: 1039995.446 units remaining) + - location: 8 (just consumed gas: 4.554) [ (Pair "abcd" None) ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.436 units remaining) + - location: 8 (just consumed gas: 0.010) [ "abcd" ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.426 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Some "abcd") ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039995.416 units remaining) + - location: 10 (just consumed gas: 0.010) [ {} (Some "abcd") ] - - location: 12 (just consumed gas: 0.010, 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 19d88a168a76..8bfb2d93f1b7 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 (just consumed gas: 7.437, 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 (just consumed gas: 0.010, remaining gas: 1039992.553 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 10 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039992.533 units remaining) + - location: 12 (just consumed gas: 0) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010) [ -100 ] - - location: 12 (just consumed gas: 0.025, remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025) [ "1970-01-01T00:01:40Z" -100 ] - - location: 15 (just consumed gas: 0.035, remaining gas: 1039992.463 units remaining) + - location: 15 (just consumed gas: 0.035) [ "1970-01-01T00:03:20Z" ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} "1970-01-01T00:03:20Z" ] - - location: 18 (just consumed gas: 0.010, 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 34288141b971..d9795b14bf2c 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 (just consumed gas: 7.437, 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 (just consumed gas: 0.010, remaining gas: 1039992.553 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 10 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039992.533 units remaining) + - location: 12 (just consumed gas: 0) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010) [ 100 ] - - location: 12 (just consumed gas: 0.025, remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025) [ "1970-01-01T00:01:40Z" 100 ] - - location: 15 (just consumed gas: 0.035, remaining gas: 1039992.463 units remaining) + - location: 15 (just consumed gas: 0.035) [ "1970-01-01T00:00:00Z" ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.453 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} "1970-01-01T00:00:00Z" ] - - location: 18 (just consumed gas: 0.010, 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 c4b6ee68392a..9a2cc4b69de5 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 (just consumed gas: 7.437, 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 (just consumed gas: 0.010, remaining gas: 1039992.553 units remaining) + - location: 9 (just consumed gas: 0.010) [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 10 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039992.533 units remaining) + - location: 12 (just consumed gas: 0) [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.523 units remaining) + - location: 14 (just consumed gas: 0.010) [ 2000000000000000000 ] - - location: 12 (just consumed gas: 0.025, remaining gas: 1039992.498 units remaining) + - location: 12 (just consumed gas: 0.025) [ "1970-01-01T00:01:40Z" 2000000000000000000 ] - - location: 15 (just consumed gas: 0.039, remaining gas: 1039992.459 units remaining) + - location: 15 (just consumed gas: 0.039) [ -1999999999999999900 ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039992.449 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} -1999999999999999900 ] - - location: 18 (just consumed gas: 0.010, 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 fbdbea2808e7..0bb2b37e59c1 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 (just consumed gas: 16.995, remaining gas: 1039983.005 units remaining) + - location: 12 (just consumed gas: 16.995) [ (Pair (Pair 2000000 1000000) None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039982.995 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair 2000000 1000000) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039982.985 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039982.975 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair 2000000 1000000) (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039982.965 units remaining) + - location: 15 (just consumed gas: 0.010) [ 2000000 (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 16 (just consumed gas: 0, remaining gas: 1039982.965 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039982.955 units remaining) + - location: 18 (just consumed gas: 0.010) [ 1000000 (Pair 2000000 1000000) ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039982.930 units remaining) + - location: 16 (just consumed gas: 0.025) [ 2000000 1000000 (Pair 2000000 1000000) ] - - location: 19 (just consumed gas: 0.020, remaining gas: 1039982.910 units remaining) + - location: 19 (just consumed gas: 0.020) [ 3000000 (Pair 2000000 1000000) ] - - location: 20 (just consumed gas: 0, remaining gas: 1039982.910 units remaining) + - location: 20 (just consumed gas: 0) [ (Pair 2000000 1000000) ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039982.900 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039982.890 units remaining) + - location: 23 (just consumed gas: 0.010) [ 2000000 (Pair 2000000 1000000) ] - - location: 24 (just consumed gas: 0, remaining gas: 1039982.890 units remaining) + - location: 24 (just consumed gas: 0) [ (Pair 2000000 1000000) ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039982.880 units remaining) + - location: 26 (just consumed gas: 0.010) [ 1000000 ] - - location: 24 (just consumed gas: 0.025, remaining gas: 1039982.855 units remaining) + - location: 24 (just consumed gas: 0.025) [ 2000000 1000000 ] - - location: 27 (just consumed gas: 0.015, remaining gas: 1039982.840 units remaining) + - location: 27 (just consumed gas: 0.015) [ (Some 1000000) ] - - location: 29 (just consumed gas: 0, remaining gas: 1039982.840 units remaining) + - location: 29 (just consumed gas: 0) [ 1000000 ] - - location: 29 (just consumed gas: 0.015, remaining gas: 1039982.825 units remaining) + - location: 29 (just consumed gas: 0.015) [ 1000000 ] - - location: 20 (just consumed gas: 0.025, remaining gas: 1039982.800 units remaining) + - location: 20 (just consumed gas: 0.025) [ 3000000 1000000 ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039982.790 units remaining) + - location: 35 (just consumed gas: 0.010) [ (Pair 3000000 1000000) ] - - location: 36 (just consumed gas: 0.010, remaining gas: 1039982.780 units remaining) + - location: 36 (just consumed gas: 0.010) [ (Some (Pair 3000000 1000000)) ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039982.770 units remaining) + - location: 37 (just consumed gas: 0.010) [ {} (Some (Pair 3000000 1000000)) ] - - location: 39 (just consumed gas: 0.010, 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 900d81d67f4c..37a20f5b0d68 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 (just consumed gas: 16.995, remaining gas: 1039983.005 units remaining) + - location: 12 (just consumed gas: 16.995) [ (Pair (Pair 2310000 1010000) None) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039982.995 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair 2310000 1010000) ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039982.985 units remaining) + - location: 13 (just consumed gas: 0.010) [ (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039982.975 units remaining) + - location: 14 (just consumed gas: 0.010) [ (Pair 2310000 1010000) (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039982.965 units remaining) + - location: 15 (just consumed gas: 0.010) [ 2310000 (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 16 (just consumed gas: 0, remaining gas: 1039982.965 units remaining) + - location: 16 (just consumed gas: 0) [ (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039982.955 units remaining) + - location: 18 (just consumed gas: 0.010) [ 1010000 (Pair 2310000 1010000) ] - - location: 16 (just consumed gas: 0.025, remaining gas: 1039982.930 units remaining) + - location: 16 (just consumed gas: 0.025) [ 2310000 1010000 (Pair 2310000 1010000) ] - - location: 19 (just consumed gas: 0.020, remaining gas: 1039982.910 units remaining) + - location: 19 (just consumed gas: 0.020) [ 3320000 (Pair 2310000 1010000) ] - - location: 20 (just consumed gas: 0, remaining gas: 1039982.910 units remaining) + - location: 20 (just consumed gas: 0) [ (Pair 2310000 1010000) ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039982.900 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039982.890 units remaining) + - location: 23 (just consumed gas: 0.010) [ 2310000 (Pair 2310000 1010000) ] - - location: 24 (just consumed gas: 0, remaining gas: 1039982.890 units remaining) + - location: 24 (just consumed gas: 0) [ (Pair 2310000 1010000) ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039982.880 units remaining) + - location: 26 (just consumed gas: 0.010) [ 1010000 ] - - location: 24 (just consumed gas: 0.025, remaining gas: 1039982.855 units remaining) + - location: 24 (just consumed gas: 0.025) [ 2310000 1010000 ] - - location: 27 (just consumed gas: 0.015, remaining gas: 1039982.840 units remaining) + - location: 27 (just consumed gas: 0.015) [ (Some 1300000) ] - - location: 29 (just consumed gas: 0, remaining gas: 1039982.840 units remaining) + - location: 29 (just consumed gas: 0) [ 1300000 ] - - location: 29 (just consumed gas: 0.015, remaining gas: 1039982.825 units remaining) + - location: 29 (just consumed gas: 0.015) [ 1300000 ] - - location: 20 (just consumed gas: 0.025, remaining gas: 1039982.800 units remaining) + - location: 20 (just consumed gas: 0.025) [ 3320000 1300000 ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039982.790 units remaining) + - location: 35 (just consumed gas: 0.010) [ (Pair 3320000 1300000) ] - - location: 36 (just consumed gas: 0.010, remaining gas: 1039982.780 units remaining) + - location: 36 (just consumed gas: 0.010) [ (Some (Pair 3320000 1300000)) ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039982.770 units remaining) + - location: 37 (just consumed gas: 0.010) [ {} (Some (Pair 3320000 1300000)) ] - - location: 39 (just consumed gas: 0.010, 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 ebde571c288f..e39ce71f8445 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 (just consumed gas: 10.144, remaining gas: 1039989.856 units remaining) + - location: 10 (just consumed gas: 10.144) [ (Pair (Pair 1 4 2) 0) ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039989.846 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair 1 4 2) ] - - location: 11 (just consumed gas: 0.037, remaining gas: 1039989.809 units remaining) + - location: 11 (just consumed gas: 0.037) [ 1 4 2 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039989.799 units remaining) + - location: 13 (just consumed gas: 0.010) [ 100 1 4 2 ] - - location: 16 (just consumed gas: 0.059, remaining gas: 1039989.740 units remaining) + - location: 16 (just consumed gas: 0.059) [ 100 4 2 ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039989.730 units remaining) + - location: 17 (just consumed gas: 0.010) [ 4 100 2 ] - - location: 18 (just consumed gas: 0.010, remaining gas: 1039989.720 units remaining) + - location: 18 (just consumed gas: 0.010) [ 10 4 100 2 ] - - location: 21 (just consumed gas: 0.059, remaining gas: 1039989.661 units remaining) + - location: 21 (just consumed gas: 0.059) [ 40 100 2 ] - - location: 22 (just consumed gas: 0.035, remaining gas: 1039989.626 units remaining) + - location: 22 (just consumed gas: 0.035) [ 140 2 ] - - location: 23 (just consumed gas: 0.035, remaining gas: 1039989.591 units remaining) + - location: 23 (just consumed gas: 0.035) [ 142 ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039989.581 units remaining) + - location: 24 (just consumed gas: 0.010) [ {} 142 ] - - location: 26 (just consumed gas: 0.010, 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 54edd3ff151d..699a9ecc79b2 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 (just consumed gas: 127.791, remaining gas: 1039872.209 units remaining) + - location: 7 (just consumed gas: 127.791) [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039872.199 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039872.189 units remaining) + - location: 8 (just consumed gas: 0.010) [ Unit ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039872.179 units remaining) + - location: 9 (just consumed gas: 0.010) [ Unit Unit ] - - location: 10 (just consumed gas: 0.010, remaining gas: 1039872.169 units remaining) + - location: 10 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039872.159 units remaining) + - location: 11 (just consumed gas: 0.010) [ Unit Unit ] - - location: 12 (just consumed gas: 0.035, remaining gas: 1039872.124 units remaining) + - location: 12 (just consumed gas: 0.035) [ ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039872.114 units remaining) + - location: 14 (just consumed gas: 0.010) [ Unit ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039872.104 units remaining) + - location: 15 (just consumed gas: 0.010) [ Unit Unit ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039872.094 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039872.084 units remaining) + - location: 17 (just consumed gas: 0.010) [ Unit Unit ] - - location: 18 (just consumed gas: 0.035, remaining gas: 1039872.049 units remaining) + - location: 18 (just consumed gas: 0.035) [ ] - - location: 20 (just consumed gas: 0.010, remaining gas: 1039872.039 units remaining) + - location: 20 (just consumed gas: 0.010) [ Unit ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039872.029 units remaining) + - location: 21 (just consumed gas: 0.010) [ Unit Unit ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039872.019 units remaining) + - location: 22 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 23 (just consumed gas: 0.010, remaining gas: 1039872.009 units remaining) + - location: 23 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039871.999 units remaining) + - location: 24 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039871.964 units remaining) + - location: 25 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039871.954 units remaining) + - location: 27 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039871.944 units remaining) + - location: 28 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 29 (just consumed gas: 0.035, remaining gas: 1039871.909 units remaining) + - location: 29 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 31 (just consumed gas: 0.010, remaining gas: 1039871.899 units remaining) + - location: 31 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 32 (just consumed gas: 0.010, remaining gas: 1039871.889 units remaining) + - location: 32 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 33 (just consumed gas: 0.035, remaining gas: 1039871.854 units remaining) + - location: 33 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 35 (just consumed gas: 0.010, remaining gas: 1039871.844 units remaining) + - location: 35 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 36 (just consumed gas: 0.010, remaining gas: 1039871.834 units remaining) + - location: 36 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 37 (just consumed gas: 0.035, remaining gas: 1039871.799 units remaining) + - location: 37 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 39 (just consumed gas: 0.010, remaining gas: 1039871.789 units remaining) + - location: 39 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 40 (just consumed gas: 0.010, remaining gas: 1039871.779 units remaining) + - location: 40 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 41 (just consumed gas: 0.035, remaining gas: 1039871.744 units remaining) + - location: 41 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 43 (just consumed gas: 0.010, remaining gas: 1039871.734 units remaining) + - location: 43 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 44 (just consumed gas: 0.010, remaining gas: 1039871.724 units remaining) + - location: 44 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 45 (just consumed gas: 0.035, remaining gas: 1039871.689 units remaining) + - location: 45 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 47 (just consumed gas: 0.010, remaining gas: 1039871.679 units remaining) + - location: 47 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 48 (just consumed gas: 0.010, remaining gas: 1039871.669 units remaining) + - location: 48 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 49 (just consumed gas: 0.035, remaining gas: 1039871.634 units remaining) + - location: 49 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 51 (just consumed gas: 0.010, remaining gas: 1039871.624 units remaining) + - location: 51 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 52 (just consumed gas: 0.010, remaining gas: 1039871.614 units remaining) + - location: 52 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 53 (just consumed gas: 0.035, remaining gas: 1039871.579 units remaining) + - location: 53 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 55 (just consumed gas: 0.010, remaining gas: 1039871.569 units remaining) + - location: 55 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 56 (just consumed gas: 0.010, remaining gas: 1039871.559 units remaining) + - location: 56 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 57 (just consumed gas: 0.035, remaining gas: 1039871.524 units remaining) + - location: 57 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 59 (just consumed gas: 0.010, remaining gas: 1039871.514 units remaining) + - location: 59 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 60 (just consumed gas: 0.010, remaining gas: 1039871.504 units remaining) + - location: 60 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 61 (just consumed gas: 0.035, remaining gas: 1039871.469 units remaining) + - location: 61 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 63 (just consumed gas: 0.010, remaining gas: 1039871.459 units remaining) + - location: 63 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 64 (just consumed gas: 0.010, remaining gas: 1039871.449 units remaining) + - location: 64 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 65 (just consumed gas: 0.035, remaining gas: 1039871.414 units remaining) + - location: 65 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 67 (just consumed gas: 0.010, remaining gas: 1039871.404 units remaining) + - location: 67 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 68 (just consumed gas: 0.010, remaining gas: 1039871.394 units remaining) + - location: 68 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 69 (just consumed gas: 0.035, remaining gas: 1039871.359 units remaining) + - location: 69 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 71 (just consumed gas: 0.010, remaining gas: 1039871.349 units remaining) + - location: 71 (just consumed gas: 0.010) [ ] - - location: 72 (just consumed gas: 0.010, remaining gas: 1039871.339 units remaining) + - location: 72 (just consumed gas: 0.010) [ Unit ] - - location: 73 (just consumed gas: 0.010, remaining gas: 1039871.329 units remaining) + - location: 73 (just consumed gas: 0.010) [ Unit Unit ] - - location: 74 (just consumed gas: 0.010, remaining gas: 1039871.319 units remaining) + - location: 74 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 75 (just consumed gas: 0.010, remaining gas: 1039871.309 units remaining) + - location: 75 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 76 (just consumed gas: 0.010, remaining gas: 1039871.299 units remaining) + - location: 76 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 77 (just consumed gas: 0.035, remaining gas: 1039871.264 units remaining) + - location: 77 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 79 (just consumed gas: 0.010, remaining gas: 1039871.254 units remaining) + - location: 79 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 80 (just consumed gas: 0.010, remaining gas: 1039871.244 units remaining) + - location: 80 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 81 (just consumed gas: 0.035, remaining gas: 1039871.209 units remaining) + - location: 81 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 83 (just consumed gas: 0.010, remaining gas: 1039871.199 units remaining) + - location: 83 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 84 (just consumed gas: 0.010, remaining gas: 1039871.189 units remaining) + - location: 84 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 85 (just consumed gas: 0.035, remaining gas: 1039871.154 units remaining) + - location: 85 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 87 (just consumed gas: 0.010, remaining gas: 1039871.144 units remaining) + - location: 87 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 88 (just consumed gas: 0.010, remaining gas: 1039871.134 units remaining) + - location: 88 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 89 (just consumed gas: 0.035, remaining gas: 1039871.099 units remaining) + - location: 89 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 91 (just consumed gas: 0.010, remaining gas: 1039871.089 units remaining) + - location: 91 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 92 (just consumed gas: 0.010, remaining gas: 1039871.079 units remaining) + - location: 92 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 93 (just consumed gas: 0.035, remaining gas: 1039871.044 units remaining) + - location: 93 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 95 (just consumed gas: 0.010, remaining gas: 1039871.034 units remaining) + - location: 95 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 96 (just consumed gas: 0.010, remaining gas: 1039871.024 units remaining) + - location: 96 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 97 (just consumed gas: 0.035, remaining gas: 1039870.989 units remaining) + - location: 97 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 99 (just consumed gas: 0.010, remaining gas: 1039870.979 units remaining) + - location: 99 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 100 (just consumed gas: 0.010, remaining gas: 1039870.969 units remaining) + - location: 100 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 101 (just consumed gas: 0.035, remaining gas: 1039870.934 units remaining) + - location: 101 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 103 (just consumed gas: 0.010, remaining gas: 1039870.924 units remaining) + - location: 103 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 104 (just consumed gas: 0.010, remaining gas: 1039870.914 units remaining) + - location: 104 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 105 (just consumed gas: 0.035, remaining gas: 1039870.879 units remaining) + - location: 105 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 107 (just consumed gas: 0.010, remaining gas: 1039870.869 units remaining) + - location: 107 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 108 (just consumed gas: 0.010, remaining gas: 1039870.859 units remaining) + - location: 108 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 109 (just consumed gas: 0.035, remaining gas: 1039870.824 units remaining) + - location: 109 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 111 (just consumed gas: 0.010, remaining gas: 1039870.814 units remaining) + - location: 111 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 112 (just consumed gas: 0.010, remaining gas: 1039870.804 units remaining) + - location: 112 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 113 (just consumed gas: 0.035, remaining gas: 1039870.769 units remaining) + - location: 113 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 115 (just consumed gas: 0.010, remaining gas: 1039870.759 units remaining) + - location: 115 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 116 (just consumed gas: 0.010, remaining gas: 1039870.749 units remaining) + - location: 116 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 117 (just consumed gas: 0.035, remaining gas: 1039870.714 units remaining) + - location: 117 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 119 (just consumed gas: 0.010, remaining gas: 1039870.704 units remaining) + - location: 119 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 120 (just consumed gas: 0.010, remaining gas: 1039870.694 units remaining) + - location: 120 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 121 (just consumed gas: 0.035, remaining gas: 1039870.659 units remaining) + - location: 121 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 123 (just consumed gas: 0.010, remaining gas: 1039870.649 units remaining) + - location: 123 (just consumed gas: 0.010) [ ] - - location: 124 (just consumed gas: 0.010, remaining gas: 1039870.639 units remaining) + - location: 124 (just consumed gas: 0.010) [ Unit ] - - location: 125 (just consumed gas: 0.010, remaining gas: 1039870.629 units remaining) + - location: 125 (just consumed gas: 0.010) [ Unit Unit ] - - location: 126 (just consumed gas: 0.010, remaining gas: 1039870.619 units remaining) + - location: 126 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 127 (just consumed gas: 0.010, remaining gas: 1039870.609 units remaining) + - location: 127 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 128 (just consumed gas: 0.010, remaining gas: 1039870.599 units remaining) + - location: 128 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 129 (just consumed gas: 0.035, remaining gas: 1039870.564 units remaining) + - location: 129 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 131 (just consumed gas: 0.010, remaining gas: 1039870.554 units remaining) + - location: 131 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 132 (just consumed gas: 0.010, remaining gas: 1039870.544 units remaining) + - location: 132 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 133 (just consumed gas: 0.035, remaining gas: 1039870.509 units remaining) + - location: 133 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 135 (just consumed gas: 0.010, remaining gas: 1039870.499 units remaining) + - location: 135 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 136 (just consumed gas: 0.010, remaining gas: 1039870.489 units remaining) + - location: 136 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 137 (just consumed gas: 0.035, remaining gas: 1039870.454 units remaining) + - location: 137 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 139 (just consumed gas: 0.010, remaining gas: 1039870.444 units remaining) + - location: 139 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 140 (just consumed gas: 0.010, remaining gas: 1039870.434 units remaining) + - location: 140 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 141 (just consumed gas: 0.035, remaining gas: 1039870.399 units remaining) + - location: 141 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 143 (just consumed gas: 0.010, remaining gas: 1039870.389 units remaining) + - location: 143 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 144 (just consumed gas: 0.010, remaining gas: 1039870.379 units remaining) + - location: 144 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 145 (just consumed gas: 0.035, remaining gas: 1039870.344 units remaining) + - location: 145 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 147 (just consumed gas: 0.010, remaining gas: 1039870.334 units remaining) + - location: 147 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 148 (just consumed gas: 0.010, remaining gas: 1039870.324 units remaining) + - location: 148 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 149 (just consumed gas: 0.035, remaining gas: 1039870.289 units remaining) + - location: 149 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 151 (just consumed gas: 0.010, remaining gas: 1039870.279 units remaining) + - location: 151 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 152 (just consumed gas: 0.010, remaining gas: 1039870.269 units remaining) + - location: 152 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 153 (just consumed gas: 0.035, remaining gas: 1039870.234 units remaining) + - location: 153 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 155 (just consumed gas: 0.010, remaining gas: 1039870.224 units remaining) + - location: 155 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 156 (just consumed gas: 0.010, remaining gas: 1039870.214 units remaining) + - location: 156 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 157 (just consumed gas: 0.035, remaining gas: 1039870.179 units remaining) + - location: 157 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 159 (just consumed gas: 0.010, remaining gas: 1039870.169 units remaining) + - location: 159 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 160 (just consumed gas: 0.010, remaining gas: 1039870.159 units remaining) + - location: 160 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 161 (just consumed gas: 0.035, remaining gas: 1039870.124 units remaining) + - location: 161 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 163 (just consumed gas: 0.010, remaining gas: 1039870.114 units remaining) + - location: 163 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 164 (just consumed gas: 0.010, remaining gas: 1039870.104 units remaining) + - location: 164 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 165 (just consumed gas: 0.035, remaining gas: 1039870.069 units remaining) + - location: 165 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 167 (just consumed gas: 0.010, remaining gas: 1039870.059 units remaining) + - location: 167 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 168 (just consumed gas: 0.010, remaining gas: 1039870.049 units remaining) + - location: 168 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 169 (just consumed gas: 0.035, remaining gas: 1039870.014 units remaining) + - location: 169 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 171 (just consumed gas: 0.010, remaining gas: 1039870.004 units remaining) + - location: 171 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 172 (just consumed gas: 0.010, remaining gas: 1039869.994 units remaining) + - location: 172 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 173 (just consumed gas: 0.035, remaining gas: 1039869.959 units remaining) + - location: 173 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 175 (just consumed gas: 0.010, remaining gas: 1039869.949 units remaining) + - location: 175 (just consumed gas: 0.010) [ ] - - location: 176 (just consumed gas: 0.010, remaining gas: 1039869.939 units remaining) + - location: 176 (just consumed gas: 0.010) [ Unit ] - - location: 177 (just consumed gas: 0.010, remaining gas: 1039869.929 units remaining) + - location: 177 (just consumed gas: 0.010) [ Unit Unit ] - - location: 178 (just consumed gas: 0.010, remaining gas: 1039869.919 units remaining) + - location: 178 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 179 (just consumed gas: 0.010, remaining gas: 1039869.909 units remaining) + - location: 179 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 180 (just consumed gas: 0.010, remaining gas: 1039869.899 units remaining) + - location: 180 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 181 (just consumed gas: 0.035, remaining gas: 1039869.864 units remaining) + - location: 181 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 183 (just consumed gas: 0.010, remaining gas: 1039869.854 units remaining) + - location: 183 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 184 (just consumed gas: 0.010, remaining gas: 1039869.844 units remaining) + - location: 184 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 185 (just consumed gas: 0.035, remaining gas: 1039869.809 units remaining) + - location: 185 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 187 (just consumed gas: 0.010, remaining gas: 1039869.799 units remaining) + - location: 187 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 188 (just consumed gas: 0.010, remaining gas: 1039869.789 units remaining) + - location: 188 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 189 (just consumed gas: 0.035, remaining gas: 1039869.754 units remaining) + - location: 189 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 191 (just consumed gas: 0.010, remaining gas: 1039869.744 units remaining) + - location: 191 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 192 (just consumed gas: 0.010, remaining gas: 1039869.734 units remaining) + - location: 192 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 193 (just consumed gas: 0.035, remaining gas: 1039869.699 units remaining) + - location: 193 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 195 (just consumed gas: 0.010, remaining gas: 1039869.689 units remaining) + - location: 195 (just consumed gas: 0.010) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 196 (just consumed gas: 0.010, remaining gas: 1039869.679 units remaining) + - location: 196 (just consumed gas: 0.010) [ Unit Unit (Pair Unit Unit) ] - - location: 197 (just consumed gas: 0.035, remaining gas: 1039869.644 units remaining) + - location: 197 (just consumed gas: 0.035) [ (Pair Unit Unit) ] - - location: 199 (just consumed gas: 0.010, remaining gas: 1039869.634 units remaining) + - location: 199 (just consumed gas: 0.010) [ ] - - location: 200 (just consumed gas: 0.010, remaining gas: 1039869.624 units remaining) + - location: 200 (just consumed gas: 0.010) [ Unit ] - - location: 201 (just consumed gas: 0.010, remaining gas: 1039869.614 units remaining) + - location: 201 (just consumed gas: 0.010) [ Unit Unit ] - - location: 202 (just consumed gas: 0.010, remaining gas: 1039869.604 units remaining) + - location: 202 (just consumed gas: 0.010) [ (Pair Unit Unit) ] - - location: 203 (just consumed gas: 0.010, remaining gas: 1039869.594 units remaining) + - location: 203 (just consumed gas: 0.010) [ Unit Unit ] - - location: 204 (just consumed gas: 0.035, remaining gas: 1039869.559 units remaining) + - location: 204 (just consumed gas: 0.035) [ ] - - location: 206 (just consumed gas: 0.010, remaining gas: 1039869.549 units remaining) + - location: 206 (just consumed gas: 0.010) [ Unit ] - - location: 207 (just consumed gas: 0.010, remaining gas: 1039869.539 units remaining) + - location: 207 (just consumed gas: 0.010) [ {} Unit ] - - location: 209 (just consumed gas: 0.010, 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 386779edd598..29e30dd912eb 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 (just consumed gas: 332.347, remaining gas: 1039667.653 units remaining) + - location: 9 (just consumed gas: 332.347) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" 0 0) ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039667.643 units remaining) + - location: 9 (just consumed gas: 0.010) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" ] - - location: 10 (just consumed gas: 0.605, remaining gas: 1039667.038 units remaining) + - location: 10 (just consumed gas: 0.605) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 11 (just consumed gas: 220.656, remaining gas: 1039446.382 units remaining) + - location: 11 (just consumed gas: 220.656) [ 4000000000000 ] - - location: 12 (just consumed gas: 0, remaining gas: 1039446.382 units remaining) + - location: 12 (just consumed gas: 0) [ ] - - location: 14 (just consumed gas: 210.466, remaining gas: 1039235.916 units remaining) + - location: 14 (just consumed gas: 210.466) [ 20000000000000 ] - - location: 12 (just consumed gas: 0.025, remaining gas: 1039235.891 units remaining) + - location: 12 (just consumed gas: 0.025) [ 4000000000000 20000000000000 ] - - location: 15 (just consumed gas: 0.010, remaining gas: 1039235.881 units remaining) + - location: 15 (just consumed gas: 0.010) [ (Pair 4000000000000 20000000000000) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039235.871 units remaining) + - location: 16 (just consumed gas: 0.010) [ {} (Pair 4000000000000 20000000000000) ] - - location: 18 (just consumed gas: 0.010, 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 f67e2e4d8d9e..818c46745367 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 (just consumed gas: 11.026, remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Left (Pair False False)) None) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Left (Pair False False)) ] - - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair False False) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) + - location: 19 (just consumed gas: 0.010) [ False False ] - - location: 20 (just consumed gas: 0.015, remaining gas: 1039988.939 units remaining) + - location: 20 (just consumed gas: 0.015) [ False ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.929 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left False) ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.914 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Left False) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.904 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Left False)) ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.894 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Left False)) ] - - location: 31 (just consumed gas: 0.010, 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 f38fe6762968..5ea3e4fd31d7 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 (just consumed gas: 11.026, remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Left (Pair False True)) None) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Left (Pair False True)) ] - - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair False True) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) + - location: 19 (just consumed gas: 0.010) [ False True ] - - location: 20 (just consumed gas: 0.015, remaining gas: 1039988.939 units remaining) + - location: 20 (just consumed gas: 0.015) [ True ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.929 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left True) ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.914 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Left True) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.904 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Left True)) ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.894 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Left True)) ] - - location: 31 (just consumed gas: 0.010, 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 62b793a0977e..9ca50094190f 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 (just consumed gas: 11.026, remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Left (Pair True False)) None) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Left (Pair True False)) ] - - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair True False) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) + - location: 19 (just consumed gas: 0.010) [ True False ] - - location: 20 (just consumed gas: 0.015, remaining gas: 1039988.939 units remaining) + - location: 20 (just consumed gas: 0.015) [ True ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.929 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left True) ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.914 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Left True) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.904 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Left True)) ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.894 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Left True)) ] - - location: 31 (just consumed gas: 0.010, 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 2d43111817a7..57daf82638c1 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 (just consumed gas: 11.026, remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Left (Pair True True)) None) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Left (Pair True True)) ] - - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair True True) ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) + - location: 19 (just consumed gas: 0.010) [ True True ] - - location: 20 (just consumed gas: 0.015, remaining gas: 1039988.939 units remaining) + - location: 20 (just consumed gas: 0.015) [ False ] - - location: 21 (just consumed gas: 0.010, remaining gas: 1039988.929 units remaining) + - location: 21 (just consumed gas: 0.010) [ (Left False) ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.914 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Left False) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.904 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Left False)) ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.894 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Left False)) ] - - location: 31 (just consumed gas: 0.010, 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 4ce0f079fc10..504c20123b21 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 (just consumed gas: 11.026, remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Right (Pair 0 0)) None) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Right (Pair 0 0)) ] - - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair 0 0) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010) [ 0 0 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035) [ 0 ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Right 0) ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Right 0) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Right 0)) ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Right 0)) ] - - location: 31 (just consumed gas: 0.010, 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 4de73abb0b19..2e4ab9ac6529 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 (just consumed gas: 11.026, remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Right (Pair 0 1)) None) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Right (Pair 0 1)) ] - - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair 0 1) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010) [ 0 1 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035) [ 1 ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Right 1) ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Right 1) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Right 1)) ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Right 1)) ] - - location: 31 (just consumed gas: 0.010, 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 7d114da2dfe2..260258f82599 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 (just consumed gas: 11.026, remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Right (Pair 1 0)) None) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Right (Pair 1 0)) ] - - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair 1 0) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010) [ 1 0 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035) [ 1 ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Right 1) ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Right 1) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Right 1)) ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Right 1)) ] - - location: 31 (just consumed gas: 0.010, 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 c6748a211161..8cbddbd8b4c4 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 (just consumed gas: 11.026, remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Right (Pair 1 1)) None) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Right (Pair 1 1)) ] - - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair 1 1) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010) [ 1 1 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035) [ 0 ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Right 0) ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Right 0) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Right 0)) ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Right 0)) ] - - location: 31 (just consumed gas: 0.010, 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 84d06c2e9153..4e84f9b145ee 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 (just consumed gas: 11.026, remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Right (Pair 42 21)) None) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Right (Pair 42 21)) ] - - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair 42 21) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010) [ 42 21 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035) [ 63 ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Right 63) ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Right 63) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Right 63)) ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Right 63)) ] - - location: 31 (just consumed gas: 0.010, 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 56b83702654d..12da5f927b1e 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 (just consumed gas: 11.026, remaining gas: 1039988.974 units remaining) + - location: 16 (just consumed gas: 11.026) [ (Pair (Right (Pair 42 63)) None) ] - - location: 16 (just consumed gas: 0.010, remaining gas: 1039988.964 units remaining) + - location: 16 (just consumed gas: 0.010) [ (Right (Pair 42 63)) ] - - location: 17 (just consumed gas: 0, remaining gas: 1039988.964 units remaining) + - location: 17 (just consumed gas: 0) [ (Pair 42 63) ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039988.954 units remaining) + - location: 24 (just consumed gas: 0.010) [ 42 63 ] - - location: 25 (just consumed gas: 0.035, remaining gas: 1039988.919 units remaining) + - location: 25 (just consumed gas: 0.035) [ 21 ] - - location: 26 (just consumed gas: 0.010, remaining gas: 1039988.909 units remaining) + - location: 26 (just consumed gas: 0.010) [ (Right 21) ] - - location: 17 (just consumed gas: 0.015, remaining gas: 1039988.894 units remaining) + - location: 17 (just consumed gas: 0.015) [ (Right 21) ] - - location: 28 (just consumed gas: 0.010, remaining gas: 1039988.884 units remaining) + - location: 28 (just consumed gas: 0.010) [ (Some (Right 21)) ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039988.874 units remaining) + - location: 29 (just consumed gas: 0.010) [ {} (Some (Right 21)) ] - - location: 31 (just consumed gas: 0.010, 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 b8d17f2faeef..0f0d1f6cdcbe 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 (just consumed gas: 6.144, 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 (just consumed gas: 0.010, remaining gas: 1039993.846 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 22220000000 "2017-12-13T04:49:00Z" 34) ] - - location: 12 (just consumed gas: 1.330, remaining gas: 1039992.516 units remaining) + - location: 12 (just consumed gas: 1.330) [ 0x0507070080acd2c6a501070700bcc485a30b0022 ] - - location: 13 (just consumed gas: 0.452, remaining gas: 1039992.064 units remaining) + - location: 13 (just consumed gas: 0.452) [ 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.054 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 16 (just consumed gas: 0.010, 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 (just consumed gas: 6.144, 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 (just consumed gas: 0.010, remaining gas: 1039993.846 units remaining) + - location: 11 (just consumed gas: 0.010) [ (Pair 22220000000 "2017-12-13T04:49:00Z" 34) ] - - location: 12 (just consumed gas: 1.330, remaining gas: 1039992.516 units remaining) + - location: 12 (just consumed gas: 1.330) [ 0x0507070080acd2c6a501070700bcc485a30b0022 ] - - location: 13 (just consumed gas: 0.452, remaining gas: 1039992.064 units remaining) + - location: 13 (just consumed gas: 0.452) [ 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039992.054 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 16 (just consumed gas: 0.010, 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 4cfa4d5d690d..6d81558e6abe 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 (just consumed gas: 4.267, remaining gas: 1039995.733 units remaining) + - location: 7 (just consumed gas: 4.267) [ (Pair Unit 9999999) ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.723 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.713 units remaining) + - location: 8 (just consumed gas: 0.010) [ 10 ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.703 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} 10 ] - - location: 11 (just consumed gas: 0.010, 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 5d9d7fe44565..32df9ade45eb 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 (just consumed gas: 17.272, remaining gas: 1039982.728 units remaining) + - location: 11 (just consumed gas: 17.272) [ (Pair 15 { Elt "bar" 5 ; Elt "foo" 1 } 6) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039982.718 units remaining) + - location: 11 (just consumed gas: 0.010) [ 15 (Pair { Elt "bar" 5 ; Elt "foo" 1 } 6) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039982.708 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { Elt "bar" 5 ; Elt "foo" 1 } 6) 15 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039982.698 units remaining) + - location: 13 (just consumed gas: 0.010) [ { Elt "bar" 5 ; Elt "foo" 1 } 15 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039982.698 units remaining) + - location: 14 (just consumed gas: 0) [ ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039982.688 units remaining) + - location: 17 (just consumed gas: 0.010) [ 0 ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039982.663 units remaining) + - location: 14 (just consumed gas: 0.025) [ 15 0 ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039982.653 units remaining) + - location: 14 (just consumed gas: 0.010) [ { Elt "bar" 5 ; Elt "foo" 1 } 15 0 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039982.653 units remaining) + - location: 14 (just consumed gas: 0) [ { Elt "bar" 5 ; Elt "foo" 1 } 15 0 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039982.653 units remaining) + - location: 20 (just consumed gas: 0) [ (Pair "bar" 5) 15 0 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039982.643 units remaining) + - location: 22 (just consumed gas: 0.010) [ 5 15 0 ] - - location: 23 (just consumed gas: 0, remaining gas: 1039982.643 units remaining) + - location: 23 (just consumed gas: 0) [ 15 0 ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039982.633 units remaining) + - location: 25 (just consumed gas: 0.010) [ 15 15 0 ] - - location: 23 (just consumed gas: 0.025, remaining gas: 1039982.608 units remaining) + - location: 23 (just consumed gas: 0.025) [ 5 15 15 0 ] - - location: 26 (just consumed gas: 0.035, remaining gas: 1039982.573 units remaining) + - location: 26 (just consumed gas: 0.035) [ 20 15 0 ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039982.563 units remaining) + - location: 27 (just consumed gas: 0.010) [ 20 20 15 0 ] - - location: 28 (just consumed gas: 0.048, remaining gas: 1039982.515 units remaining) + - location: 28 (just consumed gas: 0.048) [ 20 15 20 0 ] - - location: 30 (just consumed gas: 0, remaining gas: 1039982.515 units remaining) + - location: 30 (just consumed gas: 0) [ 20 0 ] - - location: 33 (just consumed gas: 0.035, remaining gas: 1039982.480 units remaining) + - location: 33 (just consumed gas: 0.035) [ 20 ] - - location: 30 (just consumed gas: 0.025, remaining gas: 1039982.455 units remaining) + - location: 30 (just consumed gas: 0.025) [ 15 20 ] - - location: 30 (just consumed gas: 0.010, remaining gas: 1039982.445 units remaining) + - location: 30 (just consumed gas: 0.010) [ 20 15 20 ] - - location: 30 (just consumed gas: 0, remaining gas: 1039982.445 units remaining) + - location: 30 (just consumed gas: 0) [ 20 15 20 ] - - location: 20 (just consumed gas: 0.015, remaining gas: 1039982.430 units remaining) + - location: 20 (just consumed gas: 0.015) [ (Pair "foo" 1) 15 20 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039982.420 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 15 20 ] - - location: 23 (just consumed gas: 0, remaining gas: 1039982.420 units remaining) + - location: 23 (just consumed gas: 0) [ 15 20 ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039982.410 units remaining) + - location: 25 (just consumed gas: 0.010) [ 15 15 20 ] - - location: 23 (just consumed gas: 0.025, remaining gas: 1039982.385 units remaining) + - location: 23 (just consumed gas: 0.025) [ 1 15 15 20 ] - - location: 26 (just consumed gas: 0.035, remaining gas: 1039982.350 units remaining) + - location: 26 (just consumed gas: 0.035) [ 16 15 20 ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039982.340 units remaining) + - location: 27 (just consumed gas: 0.010) [ 16 16 15 20 ] - - location: 28 (just consumed gas: 0.048, remaining gas: 1039982.292 units remaining) + - location: 28 (just consumed gas: 0.048) [ 16 15 16 20 ] - - location: 30 (just consumed gas: 0, remaining gas: 1039982.292 units remaining) + - location: 30 (just consumed gas: 0) [ 16 20 ] - - location: 33 (just consumed gas: 0.035, remaining gas: 1039982.257 units remaining) + - location: 33 (just consumed gas: 0.035) [ 36 ] - - location: 30 (just consumed gas: 0.025, remaining gas: 1039982.232 units remaining) + - location: 30 (just consumed gas: 0.025) [ 15 36 ] - - location: 30 (just consumed gas: 0.010, remaining gas: 1039982.222 units remaining) + - location: 30 (just consumed gas: 0.010) [ 16 15 36 ] - - location: 30 (just consumed gas: 0, remaining gas: 1039982.222 units remaining) + - location: 30 (just consumed gas: 0) [ 16 15 36 ] - - location: 20 (just consumed gas: 0.015, remaining gas: 1039982.207 units remaining) + - location: 20 (just consumed gas: 0.015) [ { Elt "bar" 20 ; Elt "foo" 16 } 15 36 ] - - location: 34 (just consumed gas: 0, remaining gas: 1039982.207 units remaining) + - location: 34 (just consumed gas: 0) [ 15 36 ] - - location: 36 (just consumed gas: 0.010, remaining gas: 1039982.197 units remaining) + - location: 36 (just consumed gas: 0.010) [ 36 ] - - location: 34 (just consumed gas: 0.025, remaining gas: 1039982.172 units remaining) + - location: 34 (just consumed gas: 0.025) [ { Elt "bar" 20 ; Elt "foo" 16 } 36 ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039982.162 units remaining) + - location: 37 (just consumed gas: 0.010) [ (Pair { Elt "bar" 20 ; Elt "foo" 16 } 36) ] - - location: 38 (just consumed gas: 0.010, remaining gas: 1039982.152 units remaining) + - location: 38 (just consumed gas: 0.010) [ {} (Pair { Elt "bar" 20 ; Elt "foo" 16 } 36) ] - - location: 40 (just consumed gas: 0.010, 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 12113c70dbfa..eaf182bacb31 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 (just consumed gas: 16.901, remaining gas: 1039983.099 units remaining) + - location: 11 (just consumed gas: 16.901) [ (Pair 10 { Elt "foo" 1 } 1) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039983.089 units remaining) + - location: 11 (just consumed gas: 0.010) [ 10 (Pair { Elt "foo" 1 } 1) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039983.079 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair { Elt "foo" 1 } 1) 10 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039983.069 units remaining) + - location: 13 (just consumed gas: 0.010) [ { Elt "foo" 1 } 10 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039983.069 units remaining) + - location: 14 (just consumed gas: 0) [ ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039983.059 units remaining) + - location: 17 (just consumed gas: 0.010) [ 0 ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039983.034 units remaining) + - location: 14 (just consumed gas: 0.025) [ 10 0 ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039983.024 units remaining) + - location: 14 (just consumed gas: 0.010) [ { Elt "foo" 1 } 10 0 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039983.024 units remaining) + - location: 14 (just consumed gas: 0) [ { Elt "foo" 1 } 10 0 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039983.024 units remaining) + - location: 20 (just consumed gas: 0) [ (Pair "foo" 1) 10 0 ] - - location: 22 (just consumed gas: 0.010, remaining gas: 1039983.014 units remaining) + - location: 22 (just consumed gas: 0.010) [ 1 10 0 ] - - location: 23 (just consumed gas: 0, remaining gas: 1039983.014 units remaining) + - location: 23 (just consumed gas: 0) [ 10 0 ] - - location: 25 (just consumed gas: 0.010, remaining gas: 1039983.004 units remaining) + - location: 25 (just consumed gas: 0.010) [ 10 10 0 ] - - location: 23 (just consumed gas: 0.025, remaining gas: 1039982.979 units remaining) + - location: 23 (just consumed gas: 0.025) [ 1 10 10 0 ] - - location: 26 (just consumed gas: 0.035, remaining gas: 1039982.944 units remaining) + - location: 26 (just consumed gas: 0.035) [ 11 10 0 ] - - location: 27 (just consumed gas: 0.010, remaining gas: 1039982.934 units remaining) + - location: 27 (just consumed gas: 0.010) [ 11 11 10 0 ] - - location: 28 (just consumed gas: 0.048, remaining gas: 1039982.886 units remaining) + - location: 28 (just consumed gas: 0.048) [ 11 10 11 0 ] - - location: 30 (just consumed gas: 0, remaining gas: 1039982.886 units remaining) + - location: 30 (just consumed gas: 0) [ 11 0 ] - - location: 33 (just consumed gas: 0.035, remaining gas: 1039982.851 units remaining) + - location: 33 (just consumed gas: 0.035) [ 11 ] - - location: 30 (just consumed gas: 0.025, remaining gas: 1039982.826 units remaining) + - location: 30 (just consumed gas: 0.025) [ 10 11 ] - - location: 30 (just consumed gas: 0.010, remaining gas: 1039982.816 units remaining) + - location: 30 (just consumed gas: 0.010) [ 11 10 11 ] - - location: 30 (just consumed gas: 0, remaining gas: 1039982.816 units remaining) + - location: 30 (just consumed gas: 0) [ 11 10 11 ] - - location: 20 (just consumed gas: 0.015, remaining gas: 1039982.801 units remaining) + - location: 20 (just consumed gas: 0.015) [ { Elt "foo" 11 } 10 11 ] - - location: 34 (just consumed gas: 0, remaining gas: 1039982.801 units remaining) + - location: 34 (just consumed gas: 0) [ 10 11 ] - - location: 36 (just consumed gas: 0.010, remaining gas: 1039982.791 units remaining) + - location: 36 (just consumed gas: 0.010) [ 11 ] - - location: 34 (just consumed gas: 0.025, remaining gas: 1039982.766 units remaining) + - location: 34 (just consumed gas: 0.025) [ { Elt "foo" 11 } 11 ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039982.756 units remaining) + - location: 37 (just consumed gas: 0.010) [ (Pair { Elt "foo" 11 } 11) ] - - location: 38 (just consumed gas: 0.010, remaining gas: 1039982.746 units remaining) + - location: 38 (just consumed gas: 0.010) [ {} (Pair { Elt "foo" 11 } 11) ] - - location: 40 (just consumed gas: 0.010, 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 f1cdc31c382f..40eae9ea6a86 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 (just consumed gas: 16.571, remaining gas: 1039983.429 units remaining) + - location: 11 (just consumed gas: 16.571) [ (Pair 10 {} 0) ] - - location: 11 (just consumed gas: 0.010, remaining gas: 1039983.419 units remaining) + - location: 11 (just consumed gas: 0.010) [ 10 (Pair {} 0) ] - - location: 12 (just consumed gas: 0.010, remaining gas: 1039983.409 units remaining) + - location: 12 (just consumed gas: 0.010) [ (Pair {} 0) 10 ] - - location: 13 (just consumed gas: 0.010, remaining gas: 1039983.399 units remaining) + - location: 13 (just consumed gas: 0.010) [ {} 10 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039983.399 units remaining) + - location: 14 (just consumed gas: 0) [ ] - - location: 17 (just consumed gas: 0.010, remaining gas: 1039983.389 units remaining) + - location: 17 (just consumed gas: 0.010) [ 0 ] - - location: 14 (just consumed gas: 0.025, remaining gas: 1039983.364 units remaining) + - location: 14 (just consumed gas: 0.025) [ 10 0 ] - - location: 14 (just consumed gas: 0.010, remaining gas: 1039983.354 units remaining) + - location: 14 (just consumed gas: 0.010) [ {} 10 0 ] - - location: 14 (just consumed gas: 0, remaining gas: 1039983.354 units remaining) + - location: 14 (just consumed gas: 0) [ {} 10 0 ] - - location: 20 (just consumed gas: 0, remaining gas: 1039983.354 units remaining) + - location: 20 (just consumed gas: 0) [ {} 10 0 ] - - location: 34 (just consumed gas: 0, remaining gas: 1039983.354 units remaining) + - location: 34 (just consumed gas: 0) [ 10 0 ] - - location: 36 (just consumed gas: 0.010, remaining gas: 1039983.344 units remaining) + - location: 36 (just consumed gas: 0.010) [ 0 ] - - location: 34 (just consumed gas: 0.025, remaining gas: 1039983.319 units remaining) + - location: 34 (just consumed gas: 0.025) [ {} 0 ] - - location: 37 (just consumed gas: 0.010, remaining gas: 1039983.309 units remaining) + - location: 37 (just consumed gas: 0.010) [ (Pair {} 0) ] - - location: 38 (just consumed gas: 0.010, remaining gas: 1039983.299 units remaining) + - location: 38 (just consumed gas: 0.010) [ {} (Pair {} 0) ] - - location: 40 (just consumed gas: 0.010, 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 250c52e1f0e4..0aa15c4a8353 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 (just consumed gas: 4.375, remaining gas: 1039995.625 units remaining) + - location: 7 (just consumed gas: 4.375) [ (Pair Unit "2017-07-13T09:19:01Z") ] - - location: 7 (just consumed gas: 0.010, remaining gas: 1039995.615 units remaining) + - location: 7 (just consumed gas: 0.010) [ ] - - location: 8 (just consumed gas: 0.010, remaining gas: 1039995.605 units remaining) + - location: 8 (just consumed gas: 0.010) [ "2021-10-13T10:16:52Z" ] - - location: 9 (just consumed gas: 0.010, remaining gas: 1039995.595 units remaining) + - location: 9 (just consumed gas: 0.010) [ {} "2021-10-13T10:16:52Z" ] - - location: 11 (just consumed gas: 0.010, 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 6093edbe610a..8a1a26f09950 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 (just consumed gas: 19.769, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039980.211 units remaining) + - location: 17 (just consumed gas: 0) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039980.201 units remaining) + - location: 19 (just consumed gas: 0.010) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 17 (just consumed gas: 0.025, 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 (just consumed gas: 2.807, remaining gas: 1039977.369 units remaining) + - location: 20 (just consumed gas: 2.807) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 23 (just consumed gas: 0.035, remaining gas: 1039977.334 units remaining) + - location: 23 (just consumed gas: 0.035) [ 0 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039977.324 units remaining) + - location: 24 (just consumed gas: 0.010) [ True 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 25 (just consumed gas: 0, remaining gas: 1039977.324 units remaining) + - location: 25 (just consumed gas: 0) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 25 (just consumed gas: 0.015, remaining gas: 1039977.309 units remaining) + - location: 25 (just consumed gas: 0.015) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 31 (just consumed gas: 2.753, 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 (just consumed gas: 0, remaining gas: 1039974.556 units remaining) + - location: 40 (just consumed gas: 0) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) ] - - location: 40 (just consumed gas: 0.015, 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 (just consumed gas: 0.010, remaining gas: 1039974.531 units remaining) + - location: 46 (just consumed gas: 0.010) [ ] - - location: 47 (just consumed gas: 0.010, remaining gas: 1039974.521 units remaining) + - location: 47 (just consumed gas: 0.010) [ Unit ] - - location: 48 (just consumed gas: 0.010, remaining gas: 1039974.511 units remaining) + - location: 48 (just consumed gas: 0.010) [ {} Unit ] - - location: 50 (just consumed gas: 0.010, 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 (just consumed gas: 19.769, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0.010, 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 (just consumed gas: 0, remaining gas: 1039980.211 units remaining) + - location: 17 (just consumed gas: 0) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 19 (just consumed gas: 0.010, remaining gas: 1039980.201 units remaining) + - location: 19 (just consumed gas: 0.010) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 17 (just consumed gas: 0.025, 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 (just consumed gas: 2.807, remaining gas: 1039977.369 units remaining) + - location: 20 (just consumed gas: 2.807) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 23 (just consumed gas: 0.035, remaining gas: 1039977.334 units remaining) + - location: 23 (just consumed gas: 0.035) [ -1 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 24 (just consumed gas: 0.010, remaining gas: 1039977.324 units remaining) + - location: 24 (just consumed gas: 0.010) [ False 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 25 (just consumed gas: 0, remaining gas: 1039977.324 units remaining) + - location: 25 (just consumed gas: 0) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 29 (just consumed gas: 0.010, remaining gas: 1039977.314 units remaining) + - location: 29 (just consumed gas: 0.010) [ Unit 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] Fatal error: -- GitLab From 53e6396bf2f2d9bc0f5cfc75a97aaa62bef7eaa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Cauderlier?= Date: Tue, 11 Oct 2022 23:03:24 +0200 Subject: [PATCH 5/5] Devtools: update the git-gas-diff script to new trace format --- devtools/git-gas-diff/bin/main.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/git-gas-diff/bin/main.ml b/devtools/git-gas-diff/bin/main.ml index ae207c79a48c..dc725032248a 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); -- GitLab