From a350567d28fff01d85d9511742b98fb84f231b79 Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Tue, 25 Jul 2023 11:57:18 +0200 Subject: [PATCH 1/2] Scripts: Adds scripts for measuring tezt test peak memory consumption --- tezt_cgmemtime_all.sh | 43 +++++++++++++++++++++++++++++++++ tezt_cgmemtime_import_sqlite.sh | 23 ++++++++++++++++++ tezt_cgmemtime_top_pigs.sh | 30 +++++++++++++++++++++++ 3 files changed, 96 insertions(+) create mode 100755 tezt_cgmemtime_all.sh create mode 100755 tezt_cgmemtime_import_sqlite.sh create mode 100755 tezt_cgmemtime_top_pigs.sh diff --git a/tezt_cgmemtime_all.sh b/tezt_cgmemtime_all.sh new file mode 100755 index 000000000000..1f3cbd758b72 --- /dev/null +++ b/tezt_cgmemtime_all.sh @@ -0,0 +1,43 @@ +#!/bin/sh + +set -eu + +if [ -n "${TRACE:-}" ]; then set -x; fi + +usage() { + echo "Usage: $0 " + echo + echo "This script runs a set of Tezt tests and reports on their peak memory usage using cgmemtime. " + echo "Each test is run in isolation." + echo "Output is in CSV format, with the columns: " + echo "USER;REAL;WALL;CHILD_RSS_HIGH;GROUP_MEM_HIGH" + echo "For more info on CHILD_RSS_HIGH and GROUP_MEM_HIGH, see https://github.com/gsauthof/cgmemtime" + exit 1 +} + +if [ "${1:-}" = "--help" ]; then + usage +fi + +tezt() { + _build/default/tezt/tests/main.exe "$@" +} + +tezt "$@" --list-tsv > tezts.tsv +cut -f 2 tezts.tsv | grep -v -i "random seed" > titles.txt +index_max=$(wc -l titles.txt | cut -d' ' -f1) +rm tezt_cgmemtime_all.log +mem=$(mktemp) +for index in $(seq "$index_max"); do + title=$(sed "${index}!d" < titles.txt) + # hacky title sanitation + title=$(echo "$title" | sed 's@"@\\"@g') + echo -n "${index}/${index_max};\"${title}\";" + # Remove spurious output + if { timeout 300 cgmemtime -t _build/default/tezt/tests/main.exe --title "$title" >> tezt_cgmemtime_all.log ; } 2>&1 | tail -n1 > "${mem}"; then + cat "${mem}" + else + # user;real;wall;child_rss_high;group_mem_high + echo ";;;;" + fi +done diff --git a/tezt_cgmemtime_import_sqlite.sh b/tezt_cgmemtime_import_sqlite.sh new file mode 100755 index 000000000000..009ba60d9d95 --- /dev/null +++ b/tezt_cgmemtime_import_sqlite.sh @@ -0,0 +1,23 @@ +#!/bin/sh + +set -eu + +if [ -n "${TRACE:-}" ]; then set -x; fi + +usage() { + echo "Usage: $0 " + echo + echo "Import the cgmemtime results from tezt_cgmemtime_all.csv into the sqlite3 database " + echo "tezt_cgmemtime_all.db." + echo "Requires csvkit." + exit 1 +} + +if [ "${1:-}" = "--help" ]; then + usage +fi + +with_headers=$(mktemp) +{ echo "index;title;user;sys;wall;child_rss_high;group_mem_high" ; cat "$1" ; } > "$with_headers" +csvsql --tables tezt_cgmemtime -d';' "$with_headers" --insert --db sqlite:///tezt_cgmemtime_all.db +rm -f "$with_headers" diff --git a/tezt_cgmemtime_top_pigs.sh b/tezt_cgmemtime_top_pigs.sh new file mode 100755 index 000000000000..d52abb19fa81 --- /dev/null +++ b/tezt_cgmemtime_top_pigs.sh @@ -0,0 +1,30 @@ +#!/bin/sh + +set -eu + +if [ -n "${TRACE:-}" ]; then set -x; fi + +usage() { + echo "Usage: $0 []" + echo + echo "Prints the top N (defaults to 10) tests in terms of memory consumption (CHILD_RSS_HIGH and GROUP_MEM_HIGH)" + exit 1 +} + +if [ "${1:-}" = "--help" ]; then + usage +fi + + +db=${1:-tezt_cgmemtime_all.db} +N=${N:-10} + + +echo "Largest test consumers in terms of CHILD_RSS_HIGH:" +echo +sqlite3 --header --column "$db" "select title, child_rss_high / 1024 as child_rss_high_mb from tezt_cgmemtime order by child_rss_high desc limit ${N}" +echo + +echo "Largest test consumers in terms of GROUP_MEM_HIGH:" +echo +sqlite3 --header --column "$db" "select title, group_mem_high / 1024 as group_mem_high_mb from tezt_cgmemtime order by group_mem_high desc limit ${N}" -- GitLab From ec014a0d52aaab249a6c0628cef7c6579837a46f Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Tue, 25 Jul 2023 11:57:28 +0200 Subject: [PATCH 2/2] Add results for tezt tests memory consumption --- tezt_cgmemtime_all.csv | 11675 +++++++++++++++++++++++++++++++++++++++ tezt_cgmemtime_all.db | Bin 0 -> 1417216 bytes 2 files changed, 11675 insertions(+) create mode 100644 tezt_cgmemtime_all.csv create mode 100644 tezt_cgmemtime_all.db diff --git a/tezt_cgmemtime_all.csv b/tezt_cgmemtime_all.csv new file mode 100644 index 000000000000..ae86049d5aac --- /dev/null +++ b/tezt_cgmemtime_all.csv @@ -0,0 +1,11675 @@ +1/11678;michelson_scripts: all;0.32212;0.069252;0.390236;206160;111976 +2/11678;michelson_scripts: find;0.272401;0.056592;0.328716;192976;98068 +3/11678;michelson_scripts: version_range1;0.296981;0.037612;0.334256;193364;98476 +4/11678;michelson_scripts: version_range2;0.305859;0.034671;0.340045;193492;98536 +5/11678;michelson_scripts: version_range3;0.300429;0.030385;0.330549;192984;98000 +6/11678;michelson_scripts: version_range4;0.285501;0.046957;0.33217;193232;97940 +7/11678;michelson_scripts: version_range5;0.319704;0.014332;0.333768;193104;97960 +8/11678;michelson_scripts: version_range6;0.294005;0.035105;0.328815;193236;98084 +9/11678;michelson_scripts: version_range7;0.289923;0.041433;0.331035;193144;98132 +10/11678;Daemon.n_events should evaluate in the list of given events;0.294682;0.027875;0.322663;193072;96248 +11/11678;Daemon.n_events calls should independent;0.303098;0.01994;0.323151;193112;96400 +12/11678;Daemon.n_events should fail if n < 0;0.295504;0.027953;0.323555;193236;96396 +13/11678;Daemon.n_events should fail if n = 0;0.309084;0.012042;0.321239;192852;96140 +14/11678;Daemon.nth_event should evaluate in the nth given event;0.285821;0.03623;0.322147;193108;96304 +15/11678;Daemon.nth_event calls should independent;0.28196;0.032224;0.314281;193232;96136 +16/11678;Daemon.nth_event should fail if n < 0;0.295372;0.023949;0.319429;193104;96396 +17/11678;Daemon.nth_event should fail if n = 0;0.306896;0.015942;0.322944;193108;96396 +18/11678;alpha: Smart rollup types octez conversions: roundtrip (roundtrip address);0.29359;0.02413;0.31781;192908;96136 +19/11678;alpha: Smart rollup types octez conversions: roundtrip (roundtrip state_hash);0.284063;0.032007;0.31617;192940;96140 +20/11678;alpha: Smart rollup types octez conversions: roundtrip (roundtrip payload_hash);0.269061;0.056221;0.32539;193068;96140 +21/11678;alpha: Smart rollup types octez conversions: roundtrip (roundtrip commitment_hash);0.282684;0.031851;0.314629;193196;96396 +22/11678;alpha: Smart rollup types octez conversions: roundtrip (roundtrip commitment);0.284301;0.032033;0.316443;193072;96136 +23/11678;alpha: Smart rollup types octez conversions: roundtrip (roundtrip stakers);0.397458;0.020073;0.417677;193072;96296 +24/11678;alpha: Smart rollup types octez conversions: roundtrip (roundtrip refutation);0.292487;0.032053;0.324638;193196;96400 +25/11678;alpha: Smart rollup types octez conversions: roundtrip (roundtrip inbox);0.333083;0.032104;0.365304;199600;102708 +26/11678;alpha: Smart rollup types octez conversions: roundtrip (roundtrip dal_slot_index);0.293521;0.020104;0.313739;193072;96136 +27/11678;alpha: Smart rollup types octez conversions: roundtrip (roundtrip dal_page_index);0.29992;0.015995;0.31602;193068;96396 +28/11678;alpha: Smart rollup types octez conversions: roundtrip (roundtrip dal_slot_header);0.377011;0.032086;0.409206;193072;96136 +29/11678;alpha: Smart rollup types octez conversions: roundtrip (roundtrip dal_slot_history);0.91509;0.035964;0.951151;193072;96140 +30/11678;alpha: Smart rollup types octez conversions: roundtrip (roundtrip dal_slot_history_cache);1.46554;0.036037;1.50167;209200;112428 +31/11678;canary: alpha: canary (canary arith);0.324205;0.020012;0.344411;199640;103524 +32/11678;canary: alpha: canary (canary wasm);0.360538;0.024035;0.384781;203732;105540 +33/11678;alpha: zk rollup storage (origination_pending_is_empty);0.799148;0.011987;0.811234;203604;106792 +34/11678;alpha: zk rollup storage (pending_list_append);0.790092;0.032084;0.822286;203604;106536 +35/11678;alpha: zk rollup storage (pending_list_append errors);0.791473;0.027981;0.819567;203472;106796 +36/11678;alpha: zk rollup storage (pending_list_get);0.787029;0.035955;0.82314;203216;106680 +37/11678;alpha: zk rollup storage (pending_list_get errors);0.783263;0.035966;0.819343;203480;106792 +38/11678;alpha: zk rollup storage (update);0.795991;0.023999;0.820099;203480;106792 +39/11678;alpha: zk rollup storage (update errors);0.812473;0.028016;0.840621;203476;106756 +40/11678;alpha: time (non-overflowing addition);0.295836;0.019988;0.315946;193108;96396 +41/11678;alpha: time (overflowing addition);0.29253;0.024043;0.316679;192984;96140 +42/11678;alpha: Tez_repr.ml (Check if predefined values hold expected values);0.30065;0.020043;0.320795;192816;96140 +43/11678;alpha: Tez_repr.ml (Tez.substract: basic behaviour);0.286746;0.03186;0.31875;193108;96388 +44/11678;alpha: Tez_repr.ml (Tez.substract: underflow case);0.290824;0.031871;0.322806;193112;96140 +45/11678;alpha: Tez_repr.ml (Tez.add: basic behaviour (one + zero));0.307714;0.015985;0.323797;192940;96136 +46/11678;alpha: Tez_repr.ml (Tez.add: overflow);0.286473;0.03183;0.3184;192980;96136 +47/11678;alpha: Tez_repr.ml (Tez.mul: basic case);0.286626;0.035828;0.322561;192980;96140 +48/11678;alpha: Tez_repr.ml (Tez.mul: overflow case);0.290597;0.027865;0.318568;193232;96396 +49/11678;alpha: Tez_repr.ml (Tez.div: basic case);0.270639;0.047759;0.318503;193232;96136 +50/11678;alpha: Tez_repr.ml (Tez.div: division by zero);0.292507;0.032055;0.324667;193364;96304 +51/11678;alpha: Tez_repr.ml (Tez.to_mutez: basic assertion);0.284706;0.032079;0.316897;193108;96140 +52/11678;alpha: Tez_repr.ml (Tez.of_mutez: of non-negative ints);0.290927;0.027897;0.31892;192984;96304 +53/11678;alpha: Tez_repr.ml (Tez.of_mutez: of negative ints);0.272866;0.04414;0.317109;193108;96300 +54/11678;alpha: Tez_repr.ml (Tez.of_mutez_exn: of non-negative ints);0.297782;0.024144;0.322035;193200;96396 +55/11678;alpha: Tez_repr.ml (Tez.of_mutez_exn: of negative ints);0.285462;0.036185;0.321755;193104;96296 +56/11678;alpha: Tez_repr.ml (Tez.data_encoding: must encode tezzies correctly);0.299563;0.015976;0.315643;193072;96136 +57/11678;alpha: skip list (Skip list: check if the best basis for merkelized skip list is indeed the best);2.07446;0.083937;2.15851;491692;395560 +58/11678;alpha: sc rollup wasm (initial state hash for Wasm);0.298812;0.023905;0.322813;193112;96140 +59/11678;alpha: sc rollup wasm (initial state hash for Wasm machine);0.293092;0.028104;0.321305;193068;96136 +60/11678;alpha: sc rollup wasm (size of a rollup metadata);0.283791;0.031976;0.315868;193368;96396 +61/11678;alpha: sc rollup wasm (l1 input kind);0.291663;0.027967;0.319737;193108;96140 +62/11678;alpha: sc rollup wasm (output proofs);0.292322;0.02803;0.320457;193620;96404 +63/11678;alpha: sc rollup wasm (protocol names consistency);0.289542;0.032171;0.321837;192980;96140 +64/11678;alpha: sc rollup storage (deposit);0.299302;0.019953;0.319386;193232;96140 +65/11678;alpha: sc rollup storage (deposit by underfunded staker);0.300019;0.024001;0.324125;193072;96136 +66/11678;alpha: sc rollup storage (deposit then withdraw);0.299688;0.023975;0.323758;193108;96140 +67/11678;alpha: sc rollup storage (deposit on two rollups);0.301904;0.016101;0.318255;193108;96344 +68/11678;alpha: sc rollup storage (deposit twice fails);0.307758;0.01199;0.319851;193108;96396 +69/11678;alpha: sc rollup storage (publish);0.293482;0.024121;0.317708;192976;96140 +70/11678;alpha: sc rollup storage (publish twice);0.310536;0.015924;0.326562;192976;96140 +71/11678;alpha: sc rollup storage (publish to missing rollup fails);0.29765;0.024133;0.321867;192824;96144 +72/11678;alpha: sc rollup storage (publish to wrong inbox level);0.284432;0.036054;0.320628;193240;96396 +73/11678;alpha: sc rollup storage (publish existing commitment);0.284296;0.044045;0.328451;193104;96140 +74/11678;alpha: sc rollup storage (publish commitment returns level when commitment was first published);0.295212;0.023936;0.319256;193068;96140 +75/11678;alpha: sc rollup storage (publish from the future is not allowed);0.30401;0.016;0.320116;193200;96396 +76/11678;alpha: sc rollup storage (publish from behind lcc is allowed);0.314803;0.011954;0.326912;193196;96236 +77/11678;alpha: sc rollup storage (publish to any commitment of a branch);0.300102;0.024008;0.324228;193068;96140 +78/11678;alpha: sc rollup storage (publish needs a predecessor);0.285506;0.03619;0.32181;193104;96144 +79/11678;alpha: sc rollup storage (publish behind or at LCC);0.29146;0.03194;0.323507;193108;96140 +80/11678;alpha: sc rollup storage (cement);0.293456;0.024119;0.317672;193104;96396 +81/11678;alpha: sc rollup storage (cement to missing rollup fails);0.28955;0.032172;0.321872;193068;96148 +82/11678;alpha: sc rollup storage (cement with n stakers);0.300812;0.020054;0.320967;193232;96140 +83/11678;alpha: sc rollup storage (cement n commitments);0.288005;0.032;0.320107;193112;96140 +84/11678;alpha: sc rollup storage (cement clean commitment(s));0.286941;0.035867;0.322914;193104;96396 +85/11678;alpha: sc rollup storage (cement conflicted branches);0.308179;0.020011;0.328321;193104;96396 +86/11678;alpha: sc rollup storage (withdraw to missing rollup fails);0.287734;0.03197;0.319817;192948;96136 +87/11678;alpha: sc rollup storage (withdraw when not staked fails);0.301151;0.020076;0.321326;193068;96396 +88/11678;alpha: sc rollup storage (withdraw twice fails);0.305058;0.016055;0.32122;193236;96140 +89/11678;alpha: sc rollup storage (withdraw fails when staked after LCC);0.296278;0.024022;0.320424;193072;96140 +90/11678;alpha: sc rollup storage (withdraw when staked before or at LCC);0.287882;0.035985;0.32397;193072;96140 +91/11678;alpha: sc rollup storage (remove staker);0.296587;0.028055;0.324755;192976;96140 +92/11678;alpha: sc rollup storage (staker come back after being slashed);0.294254;0.031811;0.326169;193072;96396 +93/11678;alpha: sc rollup storage (cement fails when too recent);0.312644;0.012024;0.32481;193108;96272 +94/11678;alpha: sc rollup storage (cement deadline uses oldest add time);0.296931;0.024075;0.321112;193196;96140 +95/11678;alpha: sc rollup storage (last cemented commitment hash and level returns correct information);0.296368;0.020024;0.316502;193196;96396 +96/11678;alpha: sc rollup storage (cement with two stakers);0.297582;0.020106;0.317798;193108;96136 +97/11678;alpha: sc rollup storage (no cement on conflict);0.291081;0.035886;0.32708;192976;96140 +98/11678;alpha: sc rollup storage (finds conflict point at LCC);0.289834;0.036229;0.326164;192980;96208 +99/11678;alpha: sc rollup storage (finds conflict point beneath LCC);0.291573;0.027959;0.319691;193072;96408 +100/11678;alpha: sc rollup storage (finds first point of disagreement when as point of conflict);0.305726;0.01609;0.321919;192944;96140 +101/11678;alpha: sc rollup storage (finds no conflict point with two stakers, one of which is at LCC (PVM in preboot));0.303787;0.019986;0.323877;192944;96136 +102/11678;alpha: sc rollup storage (finds no conflict point when both stakers commit to LCC (PVM in preboot));0.277136;0.040164;0.317439;193200;96396 +103/11678;alpha: sc rollup storage (finds no conflict point with two stakers, one of which is at LCC);0.28733;0.031925;0.319363;193196;96396 +104/11678;alpha: sc rollup storage (finds no conflict point when both stakers commit to LCC);0.304324;0.020021;0.324458;193072;96256 +105/11678;alpha: sc rollup storage (conflict_point_computation_fits_in_gas_limit);0.521256;0.036086;0.557442;209328;112432 +106/11678;alpha: sc rollup storage (can remove staker 1);0.30095;0.020063;0.321122;192976;96136 +107/11678;alpha: sc rollup storage (can remove staker 2);0.286684;0.031853;0.318663;193112;96140 +108/11678;alpha: sc rollup storage (removed staker can not withdraw);0.293094;0.024089;0.317288;193328;96396 +109/11678;alpha: sc rollup storage (fetching last final commitment of missing rollup fails);0.283263;0.039896;0.32328;192940;96140 +110/11678;alpha: sc rollup storage (fetching last final commitment hash and level of missing rollup fails);0.2828;0.039831;0.322732;193072;96140 +111/11678;alpha: sc rollup storage (fetching commitment of missing rollup fails);0.307576;0.015977;0.323656;192940;96140 +112/11678;alpha: sc rollup storage (fetching non-existing commitment of rollup fails);0.303737;0.015986;0.319847;193072;96140 +113/11678;alpha: sc rollup storage (initial level of missing rollup fails);0.294008;0.03222;0.326327;193076;96308 +114/11678;alpha: sc rollup storage (Refinement operations are commutative (point of conflict));0.315242;0.011971;0.327319;192944;96140 +115/11678;alpha: sc rollup storage (Refinement operations are commutative (cement));0.294628;0.02787;0.322662;193068;96404 +116/11678;alpha: sc rollup storage (Record messages in storage outbox);0.293565;0.036192;0.329878;192944;96140 +117/11678;alpha: sc rollup storage (Record messages in storage outbox limits);0.304702;0.024055;0.32888;193200;96396 +118/11678;alpha: sc rollup storage (Record messages size diffs);0.287008;0.031889;0.319025;192980;96140 +119/11678;alpha: sc rollup storage (Originating a rollup creates a genesis commitment);0.286917;0.039849;0.326873;193032;96320 +120/11678;alpha: sc rollup storage (Getting cemented commitments with levels of missing rollups fails);0.282173;0.039742;0.322079;193076;96140 +121/11678;alpha: sc rollup storage (Getting cemented commitments returns multiple cemented commitments);0.300092;0.024007;0.324214;193076;96396 +122/11678;alpha: sc rollup storage (All cemented commitments are ancestors of last cemented commitment);0.301022;0.020068;0.32119;193200;96392 +123/11678;alpha: sc rollup storage (Unrelated commitments are classified as such);0.295279;0.027931;0.323359;192840;96412 +124/11678;alpha: sc rollup storage (fresh index is correcly incremented);0.303781;0.015988;0.319872;192944;96140 +125/11678;alpha: sc rollup storage (initial_level returns correct level);0.296937;0.024076;0.321112;193076;96396 +126/11678;alpha: sc rollup storage (rollup starts in pre-boot state);0.295503;0.027953;0.323597;192708;96236 +127/11678;alpha: sc rollup storage (kind of missing rollup is None);0.29343;0.024117;0.317648;192944;96140 +128/11678;alpha: sc rollup management protocol (Encode/decode internal inbox message transfer);0.281293;0.040184;0.321594;192944;96144 +129/11678;alpha: sc rollup management protocol (Encode/decode internal inbox message start of level);0.308363;0.012014;0.320479;193200;96140 +130/11678;alpha: sc rollup management protocol (Encode/decode internal inbox message end of level);0.289727;0.032191;0.322023;193068;96140 +131/11678;alpha: sc rollup management protocol (Encode/decode external inbox message);0.300718;0.024057;0.324889;192816;96140 +132/11678;alpha: sc rollup management protocol (Encode/decode outbox message);0.292732;0.03208;0.324918;193068;96140 +133/11678;alpha: sc rollup inbox (Add payloads to merkelized payload hashes then retrieve them from history.);0.352153;0.032013;0.384269;192940;96140 +134/11678;alpha: sc rollup inbox (Produce a merkelized payload hashes proof and verify its validity.);0.324926;0.032091;0.357144;193072;96092 +135/11678;alpha: sc rollup inbox (Empty merkelized payload hashes proof fails.);0.290169;0.035774;0.326051;193200;96140 +136/11678;alpha: sc rollup inbox (Invalid merkelized payload hashes proof fails.);0.456471;0.040041;0.496675;205868;108960 +137/11678;alpha: sc rollup inbox (produce inclusion proof and verifies it.);0.864795;0.04404;0.908948;254692;158000 +138/11678;alpha: sc rollup inbox (negative test of inclusion proof.);0.853124;0.032042;0.885284;253636;156716 +139/11678;alpha: sc rollup inbox (verify empty inclusion proof fails.);0.330676;0.023904;0.354686;193588;96820 +140/11678;alpha: sc rollup inbox (produce payloads proof and verifies it.);0.355384;0.035937;0.39145;196908;100140 +141/11678;alpha: sc rollup inbox (test to verify a proof not using the correct current level proof.);0.368194;0.02001;0.38831;198832;101936 +142/11678;alpha: sc rollup inbox (test to verify a proof without the payload.);0.359334;0.01597;0.37542;196656;99892 +143/11678;alpha: sc rollup inbox (test to verify a proof with payload when none is expected.);0.364953;0.020052;0.385106;199084;102196 +144/11678;alpha: sc rollup inbox (test to verify a proof with a proof for another payload.);0.355758;0.027981;0.383883;198188;101396 +145/11678;alpha: sc rollup inbox (test to verify a proof with another payload.);0.380342;0.016014;0.396457;197932;101172 +146/11678;alpha: sc rollup inbox (test to verify a proof with a payload with an incorrect index.);0.37017;0.019901;0.390227;198704;101676 +147/11678;alpha: sc rollup inbox (test to verify a proof with an out of bound index.);0.354433;0.031859;0.386397;199088;102200 +148/11678;alpha: sc rollup inbox (produce inbox proof and verifies it.);0.868273;0.028008;0.896394;255188;158764 +149/11678;alpha: sc rollup inbox (negative test of inbox proof.);0.853797;0.040084;0.893981;264680;167720 +150/11678;alpha: sc rollup inbox (messages are correctly added in payloads history);0.340516;0.036054;0.376673;196912;100144 +151/11678;alpha: sc rollup inbox (Checking inboxes history length);0.292146;0.032016;0.324289;193036;96268 +152/11678;alpha: sc rollup inbox (Checking inboxes history content and order);0.301706;0.028159;0.329946;192872;96096 +153/11678;alpha: sc rollup inbox (Checking inclusion proofs validity depending on history capacity);0.297909;0.020129;0.318147;193200;96392 +154/11678;alpha: sc rollup inbox (Checking results of add_messages when histories have different capacities);0.274818;0.047794;0.322726;193072;96140 +155/11678;alpha: sc rollup game (A badly distributed dissection is an invalid move.);0.292464;0.024038;0.316615;193072;96396 +156/11678;alpha: sc rollup game (A single game move with a valid dissection);0.307238;0.01596;0.323317;192948;96144 +157/11678;alpha: sc rollup game (Invalid serialized inbox proof is rejected.);0.298476;0.023878;0.322462;193072;96140 +158/11678;alpha: sc rollup game (start a game with invalid commitment hash (swap commitment).);0.293887;0.02818;0.322177;193072;96136 +159/11678;alpha: sc rollup game (start a game with invalid commitment hash (op from outsider).);0.291409;0.027943;0.319538;193328;96464 +160/11678;alpha: sc rollup game (start a game with invalid commitment hash (opponent is not in game).);0.297329;0.028125;0.325563;192944;96136 +161/11678;alpha: sc rollup game (start a game with commitment hash that are not the first conflict.);0.279322;0.043893;0.323335;193068;96396 +162/11678;alpha: sc rollup arith (PreBoot);0.295324;0.019954;0.315377;192980;96136 +163/11678;alpha: sc rollup arith (Boot);0.300785;0.016041;0.31694;193364;96396 +164/11678;alpha: sc rollup arith (Metadata);0.291298;0.023942;0.315339;193240;96396 +165/11678;alpha: sc rollup arith (Input message);0.299303;0.019953;0.319363;193368;96396 +166/11678;alpha: sc rollup arith (Parsing message);0.300442;0.024035;0.324585;193236;96392 +167/11678;alpha: sc rollup arith (Evaluating message);0.291707;0.039959;0.331766;193492;96812 +168/11678;alpha: sc rollup arith (Valid output messages);0.301889;0.028176;0.330171;193488;96816 +169/11678;alpha: sc rollup arith (Invalid output messages);0.290447;0.027851;0.318408;193108;96136 +170/11678;alpha: sc rollup arith (Invalid outbox level);0.297649;0.020111;0.317864;192984;96304 +171/11678;alpha: sc rollup arith (Initial state hash for Arith);0.285412;0.028139;0.313696;193076;96296 +172/11678;alpha: sc rollup arith (Filter internal message);0.295295;0.027933;0.323334;193236;96296 +173/11678;alpha: sc rollup arith (Reveal below threshold);0.291012;0.023918;0.315051;193108;96208 +174/11678;alpha: sc rollup arith (Reveal at threshold (block level zero));0.29143;0.035929;0.327462;193068;96396 +175/11678;alpha: sc rollup arith (Reveal below threshold (block level zero));0.292544;0.032059;0.324706;193328;96396 +176/11678;alpha: sc rollup arith (Reveal at threshold);0.296573;0.020038;0.316715;193104;96392 +177/11678;alpha: sc rollup arith (Reveal above threshold);0.296823;0.024066;0.321009;192996;96396 +178/11678;alpha: sc rollup arith (Invalid serialized reveal proof);0.294979;0.019931;0.315009;193196;96400 +179/11678;alpha: sc rollup arith (Valid serialized reveal proof);0.283782;0.031975;0.31587;193108;96396 +180/11678;alpha: saturation arithmetic (Addition);0.276857;0.040124;0.317085;193236;96292 +181/11678;alpha: saturation arithmetic (Subtraction);0.299969;0.015998;0.316073;193236;96392 +182/11678;alpha: saturation arithmetic (Multiplication);0.287845;0.027985;0.315941;193112;96140 +183/11678;alpha: saturation arithmetic (Multiplication (fast version));0.294745;0.027881;0.322801;192944;96376 +184/11678;alpha: saturation arithmetic (Shift left);0.279955;0.043992;0.324046;193364;96396 +185/11678;alpha: saturation arithmetic (Scale fast);0.29999;0.023999;0.324095;193236;96140 +186/11678;alpha: saturation arithmetic (Square root);0.293826;0.028175;0.322104;193104;96396 +187/11678;alpha: saturation arithmetic (Conversion from Z);0.289534;0.03217;0.321807;193108;96396 +188/11678;alpha: saturation arithmetic (Encoding through z);0.273191;0.044192;0.317488;193076;96384 +189/11678;alpha: saturation arithmetic (Encoding through n);0.294559;0.027863;0.322527;192848;96260 +190/11678;alpha: round (level_offset_of_round);0.302617;0.011945;0.314664;193108;96140 +191/11678;alpha: round (Round_duration);0.290325;0.027839;0.318279;192976;96136 +192/11678;alpha: round (round_of_timestamp);0.257227;0.060287;0.317632;193236;96396 +193/11678;alpha: round (round_of_timestamp_perf);0.418658;0.023923;0.442687;193232;96396 +194/11678;alpha: round (timestamp_of_round_perf);0.302758;0.015934;0.318802;193236;96396 +195/11678;alpha: round (level offset too high error is triggered);0.302484;0.01592;0.318506;193112;96140 +196/11678;alpha: round (round_of_ts (ts_of_round r) = r);0.289144;0.032127;0.321402;193204;96556 +197/11678;alpha: round (ts_of_round (round_of_ts ts) <= ts);0.931663;0.031988;0.963748;192980;96136 +198/11678;alpha: round (round_and_offset is correct);0.27982;0.039974;0.319952;193108;96160 +199/11678;alpha: receipt (receipt - encoding);0.304645;0.020042;0.32481;193232;96252 +200/11678;alpha: qty (tez-literals);0.298147;0.027827;0.326084;193108;96140 +201/11678;alpha: qty (rnd-tez-literals);0.365143;0.028087;0.393327;193232;96136 +202/11678;alpha: Operation_repr.ml (of_list: single element input list);0.304293;0.020019;0.324431;193072;96396 +203/11678;alpha: Operation_repr.ml (of_list: multiple element input list);0.289645;0.032182;0.32193;192944;96184 +204/11678;alpha: Operation_repr.ml (of_list: empty input list);0.289281;0.028124;0.317542;193236;96344 +205/11678;alpha: Operation_repr.ml (protocol_data_encoding: only signature prefix);0.282592;0.039801;0.32257;193200;96108 +206/11678;alpha: Operation_repr.ml (protocol_data_encoding: empty list);0.287192;0.03191;0.319245;192940;96140 +207/11678;alpha: Operation_repr.ml (protocol_data_encoding: multiple signature prefix);0.281199;0.036154;0.317458;192988;96552 +208/11678;alpha: Operation_repr.ml (protocol_data_encoding: signature prefix not final);0.270703;0.047771;0.318573;193328;96396 +209/11678;alpha: Operation_repr.ml (protocol_data_encoding: multiple non manager);0.291248;0.027927;0.319286;192944;96396 +210/11678;alpha: merkle list (compute);0.295958;0.023996;0.320055;193108;96140 +211/11678;alpha: merkle list (snoc);0.28729;0.031921;0.319315;193236;96396 +212/11678;alpha: merkle list (snoc_non_tr);0.2976;0.020108;0.317813;193108;96140 +213/11678;alpha: merkle list (compute_path);0.295738;0.019982;0.315824;192980;96140 +214/11678;alpha: merkle list (check_path);0.291461;0.027948;0.319519;192980;96140 +215/11678;alpha: merkle list (path_encoding);0.292926;0.032101;0.325135;193112;96400 +216/11678;alpha: merkle list (compute_path_negative_pos);0.289171;0.028113;0.317431;192976;96192 +217/11678;alpha: merkle list (compute_path_out_of_bounds);0.285592;0.028157;0.313849;193112;96300 +218/11678;alpha: merkle list (check_path_negative_pos);0.299101;0.023928;0.323188;192984;96232 +219/11678;alpha: merkle list (check_path_out_of_bounds);0.294864;0.019923;0.31491;192980;96140 +220/11678;alpha: merkle list (compute_path_out_of_bounds_full);0.281725;0.036221;0.31805;192984;96140 +221/11678;alpha: merkle list (check_path_wrong_pos);0.2965;0.02404;0.320646;192976;96140 +222/11678;alpha: merkle list (check_invalidated_path);0.288783;0.028076;0.316973;192868;96244 +223/11678;alpha: local contexts (Local.remove_existing: check whether local access has the same behavior);0.29302;0.028097;0.321233;193068;96196 +224/11678;alpha: liquidity baking (EMA does not change when vote is Pass);0.278724;0.039817;0.318646;193324;96392 +225/11678;alpha: liquidity baking (EMA remains in bounds when vote is Off);0.291937;0.031993;0.32406;193220;96340 +226/11678;alpha: liquidity baking (EMA increases when vote is Off);0.301039;0.016055;0.317261;193072;96208 +227/11678;alpha: liquidity baking (EMA does not increase too much when vote is Off);0.283602;0.031955;0.315681;192940;96140 +228/11678;alpha: liquidity baking (EMA remains in bounds when vote is On);0.264699;0.052137;0.31694;193072;96396 +229/11678;alpha: liquidity baking (EMA decreases when vote is On);0.279779;0.035971;0.315858;193236;96396 +230/11678;alpha: liquidity baking (EMA does not decrease too much when vote is On);0.295064;0.027911;0.323077;193072;96140 +231/11678;alpha: liquidity baking (EMA goes from 0 to one billion in 1386 Off votes);0.291925;0.023993;0.316071;193204;96364 +232/11678;alpha: liquidity baking (EMA goes from two billions to one billion in 1386 On votes);0.295118;0.01994;0.315166;193072;96140 +233/11678;alpha: liquidity baking (voting On and Off have symmetric effects on the EMA);0.288859;0.024071;0.313063;192948;96140 +234/11678;alpha: level module (create_cycle_eras);0.290888;0.027893;0.31893;193112;96336 +235/11678;alpha: level module (level_from_raw);0.289413;0.036176;0.325693;192980;96140 +236/11678;alpha: level module (first_level_in_cycle);0.296169;0.024013;0.320284;193108;96208 +237/11678;alpha: Global constants storage (get on a nonexistent global constants fails);0.294385;0.039781;0.334274;202156;105260 +238/11678;alpha: Global constants storage (get always returned the registered constant);0.364518;0.024034;0.38866;231396;134700 +239/11678;alpha: Global constants storage (register: fails with unregistered references);0.302281;0.015909;0.318305;192940;96136 +240/11678;alpha: Global constants storage (register: fails with unregistered references pbt);0.353028;0.032093;0.385308;240232;143576 +241/11678;alpha: Global constants storage (register: fails if expression too deep);0.299964;0.023997;0.324069;192948;96136 +242/11678;alpha: Global constants storage (expand on an expression containing a nonexistent global constant fails);0.347972;0.035997;0.384071;228452;131632 +243/11678;alpha: Global constants storage (expand: no constants case);0.291067;0.02791;0.319087;193200;96140 +244/11678;alpha: Global constants storage (register and expand are orthogonal);0.309399;0.032145;0.341645;207404;110636 +245/11678;alpha: Global constants storage (expand: deep constants);2.34433;0.024003;2.36847;216748;119856 +246/11678;alpha: Global constants storage (expand: ill formed constants are rejected);0.27569;0.04395;0.31977;193332;96396 +247/11678;alpha: Global constants storage (expand: use of 'constant (constant ...)' is rejected);0.297974;0.02416;0.322241;192944;96140 +248/11678;alpha: Global constants storage (expand: data);0.2911;0.031901;0.323101;193364;96392 +249/11678;alpha: Global constants storage (expand: types);0.276885;0.044141;0.321141;192976;96136 +250/11678;alpha: Global constants storage (expand: instr);0.289039;0.032115;0.321263;192980;96252 +251/11678;alpha: Global constants storage (expand: random);0.307737;0.015986;0.323832;193364;96400 +252/11678;alpha: Global constants storage (expand is idempotent);0.349196;0.036123;0.385427;234984;138024 +253/11678;alpha: Global constants storage (bottom_up_fold_cps: does not stack overflow);0.443213;0.0559;0.499313;364396;267580 +254/11678;alpha: gas monad (exhaustion);0.296852;0.024069;0.321029;192976;96140 +255/11678;alpha: gas monad (exhaustion before error);0.294636;0.023889;0.318635;193108;96396 +256/11678;alpha: gas monad (successful result with remaining gas);0.278703;0.039814;0.318635;192980;96140 +257/11678;alpha: gas monad (successful result with spare gas);0.295347;0.023947;0.319407;192980;96140 +258/11678;alpha: gas monad (inner error);0.279232;0.043879;0.32323;192976;96356 +259/11678;alpha: gas monad (unlimited);0.282639;0.039808;0.322574;193236;96392 +260/11678;alpha: gas monad (syntax module);0.288162;0.028015;0.316281;193112;96304 +261/11678;alpha: fixed point computation (Integral tests (3 decimals));0.293346;0.02411;0.317576;193072;96392 +262/11678;alpha: fixed point computation (FP tests (3 decimals));0.277497;0.036195;0.313836;193112;96160 +263/11678;alpha: fixed point computation (FP pp tests (3 decimals));0.29756;0.024126;0.321812;193204;96136 +264/11678;alpha: fitness (from/to raw fitness is identity);0.300985;0.020065;0.321148;192980;96140 +265/11678;alpha: fitness (locked round is smaller than round);0.296107;0.02801;0.324224;192976;96228 +266/11678;alpha: fitness (compare fitness = compare raw_fitness);0.281827;0.040261;0.322207;193240;96396 +267/11678;alpha: Destination_repr.ml (Json decoding compat implicit contract (null address));0.305513;0.016079;0.321712;192944;96140 +268/11678;alpha: Destination_repr.ml (Json decoding compat smart contract (liquidity baking dex));0.287081;0.031897;0.319098;192944;96140 +269/11678;alpha: Destination_repr.ml (Binary Contract_repr to Destination_repr (null address));0.29045;0.027851;0.318437;192940;96140 +270/11678;alpha: Destination_repr.ml (Binary Contract_repr to Destination_repr (liquidity baking dex));0.287094;0.031899;0.319096;192940;96140 +271/11678;alpha: Destination_repr.ml (Binary Destination_repr to Contract_repr (null address));0.277339;0.044213;0.321662;193072;96336 +272/11678;alpha: Destination_repr.ml (Binary Destination_repr to Contract_repr (liquidity baking dex));0.280332;0.036042;0.31648;193068;96396 +273/11678;alpha: Destination_repr.ml (Json encoding compatibility Contract_repr to Destination_repr with dummy contracts);0.293007;0.020068;0.313226;193200;96356 +274/11678;alpha: Destination_repr.ml (Binary encoding compatibility Contract_repr to Destination_repr with dummy contracts);0.297378;0.020093;0.317568;192948;96140 +275/11678;alpha: Destination_repr.ml (Comparison of destinations);0.304558;0.016029;0.320689;193232;96396 +276/11678;alpha: dal slot proof ([test] add a slot on top of genesis that breaks ordering);0.420838;0.036071;0.457029;193328;96564 +277/11678;alpha: dal slot proof ([test] add a slot on top of genesis that satisfies ordering (1/2));0.43506;0.023948;0.459116;193452;96564 +278/11678;alpha: dal slot proof ([test] add a slot on top of genesis that satisfies ordering (2/2));0.434205;0.019917;0.454283;193088;96564 +279/11678;alpha: dal slot proof ([test] add two slots on top of genesis that satisfy ordering);0.436021;0.028001;0.464126;193328;96564 +280/11678;alpha: dal slot proof ([test] Confirmed page on genesis);0.266911;0.051788;0.318819;192948;96136 +281/11678;alpha: dal slot proof ([test] Unconfirmed page on genesis);0.308135;0.012005;0.320241;192944;96396 +282/11678;alpha: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with good data);0.435251;0.031945;0.467309;193584;96564 +283/11678;alpha: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with no data);0.456489;0.016017;0.472604;193332;96560 +284/11678;alpha: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with bad proof);0.449544;0.024082;0.473727;193452;96564 +285/11678;alpha: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with bad data);0.425068;0.03609;0.461266;193460;96560 +286/11678;alpha: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with too short data);0.427617;0.039964;0.467678;193456;96560 +287/11678;alpha: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with too long data);0.444529;0.016019;0.460662;193456;96564 +288/11678;alpha: dal slot proof ([test] Confirmed slot on top of genesis: unconfirmed page with good data);0.422347;0.039844;0.462289;193200;96308 +289/11678;alpha: dal slot proof ([test] Confirmed slot on top of genesis: unconfirmed page with no data);0.429338;0.036112;0.465557;193456;96308 +290/11678;alpha: dal slot proof ([test] Confirmed slot on top of genesis: unconfirmed page with bad proof);0.453837;0.020081;0.474035;193328;96564 +291/11678;alpha: dal slot proof ([test] Confirmed slot on top of genesis: unconfirmed page with bad data (altered));0.447378;0.023966;0.471453;193584;96552 +292/11678;alpha: Contract_repr.ml (Contract_repr.to_b58check: must correctly stringify, b58check encoded, an implicit contract);0.292881;0.024072;0.317141;193076;96312 +293/11678;alpha: Contract_repr.ml (Contract_repr.originated_contract: must correctly create an originated contract);0.292121;0.024009;0.316235;193068;96396 +294/11678;alpha: Contract_repr.ml (Contract_repr.to_b58check: must correctly stringify, b58check encoded, an originated contract);0.289428;0.028138;0.317688;193068;96392 +295/11678;alpha: Delegate consensus key (consensus_key_storage);0.295278;0.027931;0.323312;193236;96140 +296/11678;alpha: Bond_id_repr.ml (Deserializing sc bond ids succeeds only when id is valid);0.301536;0.016081;0.317722;193072;96140 +297/11678;alpha: Bond_id_repr.ml (Deserializing invalid bond ids fails);0.289143;0.032127;0.321372;192940;96140 +298/11678;alpha: Bond_id_repr.ml (Deserialize/serialize roundtrip);0.300271;0.024021;0.324398;193452;96364 +299/11678;alpha: adaptive inflation ema (EMA does not change when vote is Pass);0.292715;0.032078;0.324904;193068;96140 +300/11678;alpha: adaptive inflation ema (EMA remains in bounds when vote is On);0.274942;0.047816;0.322863;193200;96396 +301/11678;alpha: adaptive inflation ema (EMA increases when vote is On);0.290318;0.027838;0.318346;192948;96140 +302/11678;alpha: adaptive inflation ema (EMA does not increase too much when vote is On);0.277534;0.040222;0.317859;193328;96396 +303/11678;alpha: adaptive inflation ema (EMA remains in bounds when vote is Off);0.290967;0.031886;0.322957;192940;96144 +304/11678;alpha: adaptive inflation ema (EMA decreases when vote is Off);0.286592;0.031843;0.318551;193072;96136 +305/11678;alpha: adaptive inflation ema (EMA does not decrease too much when vote is Off);0.3;0.016;0.316172;192860;96268 +306/11678;alpha: adaptive inflation ema (EMA goes from 0% to 50% in 80642 On votes);0.29851;0.027861;0.326473;193072;96308 +307/11678;alpha: adaptive inflation ema (EMA goes from 100% to 50% in 80642 Off votes);0.291302;0.035913;0.327322;193328;96304 +308/11678;alpha: adaptive inflation ema (EMA goes from 0% to 80% in 187259 On votes);0.320274;0.02402;0.344418;203188;106468 +309/11678;alpha: adaptive inflation ema (voting On and Off have symmetric effects on the EMA);0.286876;0.02789;0.314871;193072;96140 +310/11678;alpha: adaptive inflation (adaptive inflation - application of coefficient to rewards);0.290173;0.023849;0.314185;193076;96396 +311/11678;alpha: accounts;0.304012;0.02;0.324121;193108;96396 +312/11678;alpha: append;0.298135;0.02385;0.322101;193368;96496 +313/11678;alpha: auction;0.298447;0.023875;0.322439;193236;96396 +314/11678;alpha: big_map_union;0.300567;0.024045;0.32472;193364;96300 +315/11678;alpha: check_signature;0.304743;0.016039;0.320963;192860;96136 +316/11678;alpha: comb-get;0.289617;0.036202;0.325932;193108;96292 +317/11678;alpha: comb-set;0.285728;0.032194;0.318025;192988;96136 +318/11678;alpha: concat;0.303238;0.019949;0.323319;193108;96392 +319/11678;alpha: conditionals;0.293501;0.024123;0.317734;193108;96396 +320/11678;alpha: cps_fact;0.290833;0.031872;0.322822;192984;96144 +321/11678;alpha: dign;0.306914;0.011957;0.318994;192984;96136 +322/11678;alpha: dipn;0.27639;0.044062;0.320555;193108;96396 +323/11678;alpha: dugn;0.30403;0.020002;0.324159;193112;96296 +324/11678;alpha: ediv;0.303536;0.023963;0.327662;193112;96292 +325/11678;alpha: faucet;0.296907;0.032098;0.329105;193116;96392 +326/11678;alpha: get_and_update_map;0.297432;0.024116;0.321669;193232;96140 +327/11678;alpha: if;0.29951;0.019967;0.319586;193116;96140 +328/11678;alpha: insertion_sort;0.326227;0.039783;0.366135;213168;116772 +329/11678;alpha: list_map_block;0.314074;0.015902;0.330087;193232;96300 +330/11678;alpha: loop_left;0.295577;0.023965;0.319706;193208;96316 +331/11678;alpha: packunpack;0.302828;0.019922;0.322861;193232;96396 +332/11678;alpha: pexec;0.29363;0.0362;0.329913;192824;96400 +333/11678;alpha: reverse_loop;0.292444;0.028042;0.320597;193236;96396 +334/11678;alpha: set_delegate;0.2837;0.039957;0.323765;192980;96140 +335/11678;alpha: shifts;0.296802;0.024065;0.320969;193112;96396 +336/11678;alpha: spawn_identities;0.318857;0.047828;0.366773;210408;113968 +337/11678;alpha: ticket_join;0.284688;0.036087;0.320927;193104;96296 +338/11678;alpha: ticket_split;0.292215;0.02802;0.320352;193104;96396 +339/11678;alpha: view_toplevel_lib;0.296879;0.024071;0.321056;193104;96396 +340/11678;alpha: xor;0.281398;0.044219;0.32574;192856;96140 +341/11678;alpha: opt_map;0.303048;0.019937;0.323087;193240;96396 +342/11678;alpha: view_fib;0.293175;0.032128;0.325404;193880;96392 +343/11678;alpha: rec_id_unit;0.293522;0.028145;0.321779;193112;96396 +344/11678;alpha: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup.t);0.290389;0.027845;0.318342;192944;96140 +345/11678;alpha: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup_state_repr.t);0.627861;0.035992;0.663965;226420;129588 +346/11678;alpha: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup_account_repr.t);7.26736;0.047995;7.3155;239904;143156 +347/11678;alpha: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup_operation_repr.t);0.744652;0.036031;0.780795;232468;135724 +348/11678;alpha: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup_repr.pending_list);0.29588;0.027988;0.324005;193072;96140 +349/11678;alpha: ZK rollup encoding: : to_scalar (to_scalar Zk_rollup_repr.t);0.290608;0.031847;0.322635;192944;96312 +350/11678;alpha: ZK rollup encoding: : to_scalar (to_scalar Zk_rollup_operation.t);0.340014;0.036001;0.376118;222896;125992 +351/11678;alpha: Tez_repr (Tez.(*?) is coherent w.r.t. Z.(*));0.29968;0.023974;0.323763;193108;96396 +352/11678;alpha: Tez_repr (Tez.(-?) is coherent w.r.t. Z.(-));0.301416;0.024113;0.325607;193088;96560 +353/11678;alpha: Tez_repr (Tez.(+?) is coherent w.r.t. Z.(+));0.270661;0.047763;0.318524;192980;96144 +354/11678;alpha: Tez_repr (Tez.(/?) is coherent w.r.t. Z.(/));0.284576;0.032064;0.31675;193112;96396 +355/11678;alpha: compatible_with_reference (compatible_with_reference);0.297495;0.028141;0.325741;193200;96396 +356/11678;alpha: compatible_with_packing (compatible_with_packing);0.263111;0.055811;0.319029;192948;96212 +357/11678;alpha: reflexivity (reflexivity);0.303435;0.023955;0.327517;193104;96396 +358/11678;alpha: symmetry (symmetry);0.264628;0.056133;0.320889;192984;96140 +359/11678;alpha: transitivity (transitivity);0.31533;0.019957;0.335424;193108;96140 +360/11678;alpha: pack_unpack (pack_unpack);1.49649;0.028009;1.52461;212696;116012 +361/11678;alpha: Tick_repr (next x > x);0.292163;0.024013;0.31629;193112;96224 +362/11678;alpha: Tick_repr (x = initial \/ x > initial);0.29352;0.032166;0.325791;192980;96140 +363/11678;alpha: Tick_repr (distance from x to x is 0);0.281337;0.04421;0.325648;193232;96236 +364/11678;alpha: Tick_repr (distance from non-self is non-zero);0.286657;0.03185;0.318677;193108;96288 +365/11678;alpha: Tick_repr (distance is a distance (symmetry));0.292797;0.024065;0.316991;193108;96392 +366/11678;alpha: Tick_repr (distance is a distance (triangle inequality));0.29534;0.023946;0.319395;193200;96396 +367/11678;alpha: Tick_repr (of_int only accepts natural numbers);0.293127;0.028108;0.321339;192980;96140 +368/11678;alpha: Tick_repr (to_int o of_int = identity);0.300148;0.020009;0.320263;192976;96396 +369/11678;alpha: safety (test_add_info_per_level);0.313128;0.020072;0.333306;193104;96392 +370/11678;alpha: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_commitment.t);0.291492;0.043923;0.33552;193196;96240 +371/11678;alpha: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_commitment.versioned);0.284074;0.044011;0.328196;192948;96140 +372/11678;alpha: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_game.t);0.500748;0.040059;0.540932;218288;121652 +373/11678;alpha: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_refutation_storage.conflict);0.331129;0.015958;0.347187;193200;96396 +374/11678;alpha: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_inbox_message_repr.t);0.287986;0.035998;0.324086;193328;96352 +375/11678;alpha: sampling (alias_float);34.4691;0.072002;34.5419;450704;354232 +376/11678;alpha: sampling (alias_z);39.9145;0.083996;39.9996;445584;349216 +377/11678;alpha: Refutation_game: Refutation (dissection is one kernel_run);1.73666;0.076028;1.81281;376452;280108 +378/11678;alpha: Refutation_game: Refutation (dissection shorter than 32 kernel_run);2.29122;0.039986;2.33129;376636;280324 +379/11678;alpha: Refutation_game: Refutation (dissection larger than 32 kernel_run);3.20753;0.06399;3.27161;383100;286504 +380/11678;alpha: Refutation_game: Refutation (Perfect against Random);7.44293;0.075989;7.51912;254832;157212 +381/11678;alpha: Refutation_game: Refutation (Perfect against Lazy);4.57752;0.03201;4.6097;243792;145896 +382/11678;alpha: Refutation_game: Refutation (Perfect against Keen);12.6255;0.064007;12.6898;255844;158280 +383/11678;alpha: Refutation_game: Refutation (Perfect against Eager);8.50654;0.035993;8.54278;250096;152660 +384/11678;alpha: Refutation_game: Refutation (Perfect against SOL hater);6.128;0.044;6.17223;247912;150136 +385/11678;alpha: Refutation_game: Refutation (Perfect against EOL hater);7.68823;0.056001;7.74442;252172;154744 +386/11678;alpha: Refutation_game: Refutation (Perfect against Info per level hater);142.322;0.211997;142.538;919168;823012 +387/11678;alpha: Refutation_game: Refutation (Perfect against Nostalgic);5.19022;0.035987;5.2264;236424;139044 +388/11678;alpha: Refutation_game: Refutation (cut at level properly cuts);0.270678;0.047766;0.318555;193076;96140 +389/11678;alpha: Refutation_game: Dissection (gen_dissection produces a valid dissection);0.392426;0.048052;0.440576;210988;113972 +390/11678;alpha: Refutation_game: Dissection (distance < nb_of_sections => (len dissection = succ (dist dissection)));0.290415;0.035804;0.326324;193072;96396 +391/11678;alpha: Refutation_game: Dissection (distance >= nb_of_sections => (len dissection = nb_of_sections);0.406317;0.035851;0.442271;207536;110380 +392/11678;alpha: Refutation_game: Dissection (dissection.start_chunk can not change);0.379302;0.047911;0.427322;206892;109868 +393/11678;alpha: Refutation_game: Dissection (dissection.stop_chunk must change);0.406074;0.028143;0.434329;205872;108844 +394/11678;alpha: Refutation_game: Dissection (start_chunk.tick and stop_chunk.tick can not change in the dissection);0.407497;0.019975;0.427589;205488;108596 +395/11678;alpha: Refutation_game: Dissection (dissection must be well distributed);0.391287;0.047912;0.439301;208556;111664 +396/11678;alpha: Operation_encoding: roundtrip (roundtrip Operation.t);2.07187;0.031997;2.10398;224660;128048 +397/11678;alpha: Operation_encoding: legacy : roundtrip (roundtrip Operation.t);2.02126;0.028017;2.04939;224428;127532 +398/11678;alpha: scons_equiv (scons_scons_tr_equiv);2.38055;0.040009;2.42069;267020;170284 +399/11678;alpha: scons_equiv (scons_compute_equiv);2.30058;0.036009;2.33677;268684;171820 +400/11678;alpha: of_list_equiv (of_list_compute_equiv);2.26747;0.03999;2.3076;272012;175400 +401/11678;alpha: of_list_equiv (of_list_snoc_tr_equiv);2.28579;0.035965;2.32187;268300;171304 +402/11678;alpha: check_path (check_path);2.24467;0.048014;2.29283;269320;172584 +403/11678;alpha: check_path (check_path_wrong);2.34518;0.052026;2.39739;272520;175652 +404/11678;alpha: gas properties (Consuming commutes);0.276282;0.044045;0.320452;193108;96396 +405/11678;alpha: gas properties (Consuming [free] consumes nothing);0.283972;0.039996;0.324077;192820;96140 +406/11678;alpha: gas properties ([free] is the neutral element of Gas addition);0.279059;0.039865;0.319048;193072;96140 +407/11678;alpha: Dal slots refutation game: [alpha: test] Dal slots refutation (Pbt tests: confirmed pages);2.26561;0.028019;2.29379;202860;106012 +408/11678;alpha: Dal slots refutation game: [alpha: test] Dal slots refutation (Pbt tests: unconfirmed pages);3.14651;0.039981;3.18659;194892;98200 +409/11678;alpha: Compare_operations (Compare operations is a strict total order);0.470679;0.035899;0.50673;204720;107824 +410/11678;alpha: Carbonated map (Size returns the number of elements);0.564099;0.036006;0.60022;217516;120628 +411/11678;alpha: Carbonated map (To-list/of-list roundtrip);0.525696;0.060194;0.586008;217300;120620 +412/11678;alpha: Carbonated map (Empty map is left identity for merge);0.515574;0.067943;0.583625;216940;120368 +413/11678;alpha: Carbonated map (Empty map is right identity for merge);0.546403;0.04786;0.594367;217260;120624 +414/11678;alpha: Carbonated map (Size should not change when map is merging with itself);0.555858;0.039989;0.595976;218032;121136 +415/11678;alpha: Carbonated map (Add a new element increases size by one);0.548668;0.048058;0.59684;217264;120420 +416/11678;alpha: Carbonated map (Remove new element decreases size by one);0.563827;0.023992;0.587919;217780;120880 +417/11678;alpha: Carbonated map (Merge compared with list operation);0.563685;0.043975;0.607761;217264;120516 +418/11678;alpha: Carbonated map (Merging with failing merge-overlap);0.553792;0.040129;0.594058;217392;120616 +419/11678;alpha: Carbonated map (Should not find non-existing);0.568748;0.024031;0.592894;217428;120620 +420/11678;alpha: Carbonated map (Find all elements);0.53934;0.047941;0.587417;217940;121132 +421/11678;alpha: Carbonated map (Test that map commutes with mapping over list);0.559691;0.027984;0.587773;217004;120300 +422/11678;alpha: Carbonated map (Test that fold commutes with folding over a list);0.567611;0.035975;0.603687;217780;120884 +423/11678;alpha: Carbonated map (Test that fold collecting the elements agrees with to-list);0.568551;0.036034;0.604731;217308;120756 +424/11678;alpha: Carbonated map (Test map with failing function);0.556072;0.036004;0.592195;217428;120624 +425/11678;alpha: Carbonated map (Size of empty map is 0);0.274583;0.039794;0.314501;192852;96244 +426/11678;alpha: Carbonated map (Update add);0.279465;0.039923;0.319519;193108;96296 +427/11678;alpha: Carbonated map (Update replace);0.292979;0.032107;0.325196;192980;96140 +428/11678;alpha: Carbonated map (Merge overlaps left);0.293013;0.024083;0.317204;193104;96140 +429/11678;alpha: Carbonated map (Merge overlap replace);0.300043;0.016002;0.316156;193240;96372 +430/11678;alpha: Carbonated map (Merge overlap by adding);0.282875;0.035857;0.318837;193232;96392 +431/11678;alpha: Carbonated map (Update with merge add);0.292013;0.024001;0.316126;193232;96396 +432/11678;alpha: Carbonated map (Merge overlap keep existing);0.292961;0.024078;0.317141;193104;96396 +433/11678;alpha: Carbonated map (Merge overlap replace existing);0.308856;0.016044;0.325002;193232;96140 +434/11678;alpha: Carbonated map (Update delete);0.290988;0.031889;0.322978;193236;96400 +435/11678;alpha: Carbonated map (Fold empty);0.293338;0.02411;0.317563;193104;96296 +436/11678;alpha: bytes and int/nat conversion : bytes_nat_conv (unit);0.292097;0.024008;0.316218;193076;96140 +437/11678;alpha: bytes and int/nat conversion : bytes_nat_conv (bytes_of_nat);0.295991;0.023999;0.32009;192944;96140 +438/11678;alpha: bytes and int/nat conversion : bytes_nat_conv (nat_of_bytes);0.290598;0.027865;0.318578;192944;96136 +439/11678;alpha: bytes and int/nat conversion : bytes_int_conv (unit);0.285173;0.032132;0.317407;193200;96400 +440/11678;alpha: bytes and int/nat conversion : bytes_int_conv (bytes_of_int);0.2837;0.039957;0.323766;192952;96396 +441/11678;alpha: bytes and int/nat conversion : bytes_int_conv (int_of_bytes);0.291381;0.02794;0.31943;193200;96396 +442/11678;alpha: quantity (get set);0.913753;0.040076;0.953949;230028;133152 +443/11678;alpha: quantity (inter);1.57098;0.047968;1.6191;228968;132136 +444/11678;alpha: quantity (diff);1.55141;0.035986;1.58752;229128;132132 +445/11678;alpha: quantity (fill);0.291675;0.031964;0.323762;193236;96396 +446/11678;alpha: Operation_encoding: roundtrip (roundtrip Balance_updates);4.72062;0.076009;4.79683;375016;278480 +447/11678;alpha: Operation_encoding: legacy : roundtrip (roundtrip Balance_updates);4.14936;0.068022;4.21754;353740;257320 +448/11678;alpha: Operation_encoding: roundtrip 2 encodings (roundtrip through binary Balance_updates);2.00209;0.075927;2.07816;359936;263468 +449/11678;alpha: add (t1 + t2 = t2 + t1);0.289755;0.032195;0.322055;192976;96140 +450/11678;alpha: add (t + 0 = t);0.292675;0.028064;0.320843;193232;96308 +451/11678;alpha: add (t1 + t2 >= t1);0.289301;0.028126;0.317532;192980;96396 +452/11678;alpha: mul (t1 * t2 = t2 * t1);0.303375;0.015967;0.31946;193236;96400 +453/11678;alpha: mul (t * 1 = t);0.280001;0.036;0.316109;193104;96396 +454/11678;alpha: mul (t * 0 = 0);0.286989;0.027901;0.314989;193112;96136 +455/11678;alpha: sub (t - 0 = t);0.291169;0.031909;0.32318;192944;96132 +456/11678;alpha: sub (t - t = 0);0.285254;0.032141;0.317473;193052;96444 +457/11678;alpha: sub (t1 - t2 <= t1);0.290763;0.027881;0.318747;193112;96140 +458/11678;alpha: add and sub ((t1 + t2) - t2 <= t1);0.299742;0.015986;0.315822;192976;96136 +459/11678;alpha: add and sub ((t1 - t2) + t2 >= t1);0.289519;0.028147;0.317779;192980;96248 +460/11678;alpha: sqrt ((sqrt t)² <= t <= (succ (sqrt t))²);0.266885;0.051783;0.318792;192984;96140 +461/11678;alpha: sqrt (sqrt t² = t);0.292139;0.024011;0.316263;192976;96044 +462/11678;alpha: <= and >= (t <= saturated);0.278688;0.035831;0.314642;193360;96500 +463/11678;alpha: <= and >= (t >= 0);0.297342;0.02009;0.317562;193104;96140 +464/11678;alpha: Machines Cross-Validation (Concrete/Symbolic Consistency);7.63614;0.163917;7.80223;218540;121304 +465/11678;alpha: Machines Cross-Validation (Storage consistency);1.86092;0.044021;1.90511;219408;122148 +466/11678;alpha: Machines Cross-Validation (Positive pools);25.6244;0.088001;25.7126;556896;460984 +467/11678;alpha: Economic Properties (No global gain);7.3563;0.076003;7.43248;513832;417576 +468/11678;alpha: Economic Properties (Remove liquidities is consistent);26.6919;0.103999;26.7961;560636;464436 +469/11678;alpha: Economic Properties (Share price only increases);26.183;0.119995;26.3031;562588;466656 +470/11678;alpha: batched managers validation (batch reveal and transaction);0.944558;0.024014;0.968665;204720;106800 +471/11678;alpha: batched managers validation (batch two reveals);1.27853;0.031963;1.31061;222168;124540 +472/11678;alpha: batched managers validation (reveal in the middle);1.64921;0.040029;1.6894;223660;125964 +473/11678;alpha: batched managers validation (batch two sources);1.56856;0.020007;1.5887;223844;125964 +474/11678;alpha: batched managers validation (batch incons. counters);2.70361;0.047993;2.7518;239148;141700 +475/11678;alpha: batched managers validation (empty balance in middle of batch);1.51782;0.032038;1.54997;224348;126888 +476/11678;alpha: batched managers validation (empty balance at end of batch);1.97779;0.024021;2.00194;244948;147200 +477/11678;alpha: batched managers validation (too much gas consumption);1.76856;0.040012;1.8087;231384;133664 +478/11678;alpha: batched managers validation (too much gas consumption (mempool));2.20029;0.048006;2.24855;232100;134500 +479/11678;alpha: sanity checks (manager operation coverage);1.26662;0.03596;1.30268;222160;124724 +480/11678;alpha: sanity checks (covalidation coverage);1.1184;0.027959;1.14654;215252;117300 +481/11678;alpha: mempool (simple);0.293645;0.028157;0.321929;192600;96396 +482/11678;alpha: mempool (incompatible mempool);0.292761;0.036093;0.328959;193104;96132 +483/11678;alpha: mempool (merge);0.281519;0.040217;0.321853;193748;96144 +484/11678;alpha: mempool (adding invalid operation);0.305068;0.024084;0.329254;193236;96140 +485/11678;alpha: mempool (adding operation with conflict handler);0.294447;0.027853;0.322411;194260;96396 +486/11678;alpha: mempool (remove operations);0.279189;0.039884;0.319202;193748;96396 +487/11678;alpha: single manager validation (gas limit too low);0.939504;0.023987;0.963631;204760;106796 +488/11678;alpha: single manager validation (gas limit too high);1.29264;0.024011;1.31681;222036;124660 +489/11678;alpha: single manager validation (storage limit too high);1.28455;0.020008;1.30471;222124;124584 +490/11678;alpha: single manager validation (counter too high);1.26299;0.043964;1.30705;222164;124720 +491/11678;alpha: single manager validation (counter too low);1.25472;0.043955;1.29878;219984;122924 +492/11678;alpha: single manager validation (unallocated source);1.2856;0.024029;1.30977;222296;124716 +493/11678;alpha: single manager validation (unrevealed source);1.25703;0.036029;1.29315;221776;124716 +494/11678;alpha: single manager validation (balance too low for fee payment);1.28392;0.023998;1.30803;222128;124464 +495/11678;alpha: single manager validation (empty delegate source);1.27427;0.031956;1.30634;222128;124460 +496/11678;alpha: single manager validation (too much gas consumption in block);1.2753;0.031982;1.30739;222000;124716 +497/11678;alpha: single manager validation (fees are taken when valid);1.28865;0.04002;1.32877;219180;121640 +498/11678;alpha: single manager validation (empty self-delegate);1.28894;0.02802;1.31709;222164;124716 +499/11678;alpha: single manager validation (too much gas consumption in mempool);1.24981;0.044063;1.29399;220844;123440 +500/11678;alpha: single manager validation (empty undelegated source);1.28005;0.032001;1.31215;222004;124464 +501/11678;alpha: single manager validation (minimal gas for manager);1.28264;0.035961;1.3187;220972;123440 +502/11678;alpha: single manager validation (dal disabled);1.42721;0.027984;1.45529;222416;124720 +503/11678;alpha: single manager validation (toru disabled);1.42935;0.040037;1.46951;220500;122924 +504/11678;alpha: single manager validation (scoru disabled);1.46105;0.012008;1.47321;222424;124976 +505/11678;alpha: single manager validation (zkru disabled);1.41373;0.032039;1.44587;222288;124768 +506/11678;alpha: covalidity (scenario: 'promotion' period, 'vdf' seed);2.61504;0.039985;2.65516;244544;146512 +507/11678;alpha: covalidity (scenario: 'promotion' period, 'nonce' seed);1.87586;0.043996;1.92003;235648;137876 +508/11678;alpha: covalidity (scenario: 'exploration' period, 'vdf' seed);2.8046;0.044009;2.84874;244852;147024 +509/11678;alpha: covalidity (scenario: 'exploration' period, 'nonce' seed);2.18669;0.039976;2.22675;239220;141448 +510/11678;alpha: covalidity (scenario: 'proposal' period, 'vdf' seed);2.44521;0.024011;2.46935;239616;142012 +511/11678;alpha: covalidity (scenario: 'proposal' period, 'nonce' seed);2.21769;0.052039;2.26986;239588;141860 +512/11678;alpha: one-manager restriction (positive validated op);15.6278;0.075998;15.7039;244384;147008 +513/11678;alpha: one-manager restriction (check conflicts between managers.);15.6954;0.039998;15.7357;244576;146916 +514/11678;alpha: one-manager restriction (batch is not sequence of Single);15.6321;0.052;15.6843;236588;139276 +515/11678;alpha: one-manager restriction (under 1M, co-valid ops commute);15.8742;0.051994;15.9267;237744;140584 +516/11678;alpha: zk rollup (check feature flag is disabled);0.797783;0.028062;0.825945;203480;106544 +517/11678;alpha: zk rollup (origination fees);0.783401;0.043966;0.82747;203988;106544 +518/11678;alpha: zk rollup (originate two rollups);0.791689;0.035985;0.827781;203600;106544 +519/11678;alpha: zk rollup (origination negative nb_ops);0.784995;0.036045;0.821159;203476;106540 +520/11678;alpha: zk rollup (append with invalid op code);0.785385;0.04007;0.825692;203604;106524 +521/11678;alpha: zk rollup (append external deposit);0.779795;0.039989;0.819904;204504;106544 +522/11678;alpha: zk rollup (append check errors);0.784069;0.032002;0.816169;204500;106792 +523/11678;alpha: zk rollup (invalid deposit);0.794863;0.035948;0.830916;204240;106536 +524/11678;alpha: zk rollup (update);1.06014;0.032004;1.09225;217428;119856 +525/11678;alpha: zk rollup (update with false proof);1.09985;0.031995;1.13196;211876;115244 +526/11678;alpha: zk rollup (update with invalid circuit);0.931075;0.035964;0.967147;211412;114088 +527/11678;alpha: zk rollup (update with op for another rollup);1.00933;0.028037;1.03749;212948;116268 +528/11678;alpha: zk rollup (update with more public operations than pending);1.6047;0.028012;1.63283;229712;133148 +529/11678;alpha: zk rollup (update with inconsistent state);0.962544;0.039939;1.00258;211668;113964 +530/11678;alpha: zk rollup (update with not enough pending);0.946299;0.039928;0.986328;210772;114216 +531/11678;alpha: zk rollup (update with valid prefix);1.59201;0.028;1.62012;227924;131376 +532/11678;alpha: zk rollup (valid deposit);0.975394;0.027982;1.00347;210640;113956 +533/11678;alpha: zk rollup (valid deposit and external withdrawal);1.13817;0.027954;1.16622;211628;114224 +534/11678;alpha: voting (voting successful_vote);0.38365;0.023978;0.407714;194072;96312 +535/11678;alpha: voting (voting cooldown, not enough quorum);0.364919;0.03208;0.397126;194132;96304 +536/11678;alpha: voting (voting promotion, not enough quorum);0.490905;0.027937;0.518949;198352;100640 +537/11678;alpha: voting (voting proposal, with supermajority);0.304212;0.028019;0.332342;192980;96136 +538/11678;alpha: voting (voting proposal, without supermajority);0.291812;0.031979;0.323887;194128;96388 +539/11678;alpha: voting (voting proposal, with quorum);0.301306;0.028121;0.329537;193112;96300 +540/11678;alpha: voting (voting proposal, without quorum);0.301176;0.024094;0.325368;194008;96396 +541/11678;alpha: voting (voting cooldown, with supermajority);0.330708;0.023906;0.354737;194000;96296 +542/11678;alpha: voting (voting cooldown, without supermajority);0.331853;0.027987;0.359948;194260;96304 +543/11678;alpha: voting (voting proposal, no winning proposal);0.508868;0.040068;0.54907;207060;109100 +544/11678;alpha: voting (voting quorum, quorum capped maximum);0.415872;0.03199;0.448007;196180;98444 +545/11678;alpha: voting (voting quorum, quorum capped minimum);0.394698;0.023921;0.418745;195764;98344 +546/11678;alpha: voting (voting power updated in each voting period);0.292748;0.032082;0.324936;193844;96140 +547/11678;alpha: voting (voting period pretty print);0.297417;0.028134;0.325654;192980;96140 +548/11678;alpha: voting (Proposals missing signature);0.283486;0.039927;0.323588;193104;96460 +549/11678;alpha: voting (Proposals invalid signature);0.290401;0.031824;0.322337;193236;96304 +550/11678;alpha: voting (Proposals wrong voting period index);0.291544;0.027956;0.319613;193108;96396 +551/11678;alpha: voting (Proposals wrong voting period kind);0.306227;0.019884;0.326226;193108;96304 +552/11678;alpha: voting (Proposals source not in vote listings);0.294309;0.02784;0.322263;194004;96140 +553/11678;alpha: voting (Empty proposals);0.267804;0.055959;0.32387;193108;96300 +554/11678;alpha: voting (Proposals contain a duplicate proposal);0.291538;0.027955;0.319653;193364;96336 +555/11678;alpha: voting (Too many proposals (over one operation));0.284064;0.032007;0.316174;192980;96140 +556/11678;alpha: voting (Too many proposals (over two operations));0.293184;0.024097;0.317389;193708;96144 +557/11678;alpha: voting (A proposal had already been proposed);0.27747;0.044234;0.321804;194000;96140 +558/11678;alpha: voting (Conflict: too many proposals in current block/mempool);0.309348;0.01607;0.32552;193072;96396 +559/11678;alpha: voting (Conflicting proposals in current block/mempool);0.29485;0.023906;0.318869;193836;96140 +560/11678;alpha: voting (Valid Proposals operations);0.28828;0.032031;0.320446;193872;96136 +561/11678;alpha: voting (Ballot missing signature);0.294415;0.02785;0.322368;193360;96396 +562/11678;alpha: voting (Ballot invalid signature);0.292559;0.028053;0.320784;193624;96300 +563/11678;alpha: voting (Ballot wrong voting period index);0.297546;0.032167;0.329829;192984;96140 +564/11678;alpha: voting (Ballot wrong voting period kind);0.30775;0.02398;0.331835;193232;96356 +565/11678;alpha: voting (Ballot for wrong proposal);0.283496;0.043922;0.32752;194000;96140 +566/11678;alpha: voting (Delegate has already submitted a ballot);0.301813;0.028169;0.330081;194128;96396 +567/11678;alpha: voting (Ballot source not in vote listings);0.28664;0.043792;0.330538;193236;96396 +568/11678;alpha: voting (Conflicting ballot in current block/mempool);0.30319;0.019946;0.323246;193980;96400 +569/11678;alpha: voting (Valid Ballot operations);0.309732;0.020112;0.329949;193752;96140 +570/11678;alpha: transfer ticket (ticket transfer operations);0.303142;0.019943;0.323206;193620;96136 +571/11678;alpha: transfer ticket ('contract (ticket cty)' as transfer destination);0.288327;0.03604;0.324566;193972;96392 +572/11678;alpha: transfer (single transfer);0.288255;0.036031;0.324388;193232;96300 +573/11678;alpha: transfer (single transfer with fee);0.285343;0.03617;0.321616;193236;96348 +574/11678;alpha: transfer (single transfer zero tez);0.297159;0.024094;0.321381;193108;96244 +575/11678;alpha: transfer (transfer zero tez from implicit contract);0.286449;0.039784;0.326338;193328;96396 +576/11678;alpha: transfer (transfer zero tez to an implicit contract with balance of src as fee);0.287984;0.031998;0.320099;194228;96396 +577/11678;alpha: transfer (transfer to originated contract paying transaction fee);0.289265;0.036158;0.325528;193200;96216 +578/11678;alpha: transfer (transfer zero tez to an originated contract with balance of src as fee);0.275143;0.047851;0.323093;193200;96396 +579/11678;alpha: transfer (transfer the amount from source contract balance);0.30965;0.012064;0.321822;192944;96396 +580/11678;alpha: transfer (transfers to itself);0.291187;0.03191;0.323203;193232;96392 +581/11678;alpha: transfer (missing transaction);0.301688;0.024135;0.325932;193104;96236 +582/11678;alpha: transfer (transfer from an implicit to implicit contract);0.284606;0.036076;0.320784;193076;96140 +583/11678;alpha: transfer (transfer from an implicit to an originated contract);0.303781;0.019985;0.323878;193836;96136 +584/11678;alpha: transfer (block with multiple transfers);0.321739;0.032173;0.354041;194132;96392 +585/11678;alpha: transfer (block with multiple transfer paying fee);0.299525;0.027955;0.32761;192944;96140 +586/11678;alpha: transfer (block with multiple transfer without paying fee);0.864491;0.03602;0.900646;206252;108580 +587/11678;alpha: transfer (build a chain);0.300525;0.024042;0.324667;193236;96360 +588/11678;alpha: transfer (empty implicit);0.311062;0.015951;0.327117;193108;96396 +589/11678;alpha: transfer (balance too low - transfer zero);0.307026;0.015949;0.323082;193108;96296 +590/11678;alpha: transfer (balance too low);0.309058;0.012041;0.3212;193104;96396 +591/11678;alpha: transfer (balance too low (max fee));0.301199;0.024095;0.325394;193104;96392 +592/11678;alpha: transfer (balance too low with two transfers - transfer zero);0.275398;0.043904;0.319412;192944;96396 +593/11678;alpha: transfer (balance too low with two transfers);0.28504;0.040146;0.325317;193104;96400 +594/11678;alpha: transfer (transfer one tez to an implicit contract with balance of src as fee);0.275453;0.043912;0.319478;193840;96144 +595/11678;alpha: transfer (invalid_counter);0.295409;0.027944;0.323461;193876;96396 +596/11678;alpha: transfer (add the same operation twice);0.305133;0.016059;0.32127;192992;96396 +597/11678;alpha: transfer (invalid_counter_in_the_future);0.286641;0.039811;0.326621;193112;96216 +598/11678;alpha: transfer (ownership sender);0.282419;0.043755;0.326279;193492;96396 +599/11678;alpha: transfer (random transfer);0.302613;0.02389;0.32662;193112;96392 +600/11678;alpha: transfer (random multi transfer);0.324253;0.020015;0.344377;194132;96396 +601/11678;alpha: transfer (bad entrypoint);0.267899;0.05198;0.319977;193368;96396 +602/11678;alpha: transfer (bad parameter);0.29021;0.035779;0.326119;192980;96140 +603/11678;alpha: transfer (no such entrypoint);0.309421;0.008036;0.317564;193624;96252 +604/11678;alpha: transfer (storage fees after contract call and allocation);0.309065;0.016055;0.325221;193716;96140 +605/11678;alpha: sc rollup (check effect of disabled feature flag);0.291605;0.031956;0.32367;193076;96392 +606/11678;alpha: sc rollup (check effect of disabled arith pvm flag);0.279646;0.039949;0.319696;193200;96308 +607/11678;alpha: sc rollup (can publish a commit, cement it and withdraw stake);0.31232;0.032032;0.344517;194016;96260 +608/11678;alpha: sc rollup (publish will fail if staker is double staking);0.316843;0.032085;0.349042;193964;96144 +609/11678;alpha: sc rollup (cement will fail if commitment is contested);0.300719;0.036086;0.336884;193900;96396 +610/11678;alpha: sc rollup (check the challenge window period boundaries);0.325306;0.024096;0.349529;193072;96308 +611/11678;alpha: sc rollup (originating with invalid types);0.297309;0.032141;0.329552;194128;96396 +612/11678;alpha: sc rollup (originating with valid type);0.323809;0.035978;0.359889;199248;102180 +613/11678;alpha: sc rollup (single transaction atomic batch);0.324707;0.024052;0.348872;192984;96300 +614/11678;alpha: sc rollup (execute outbox message against older cemented commitment);0.453455;0.032103;0.485684;192832;96400 +615/11678;alpha: sc rollup (multi-transaction atomic batch);0.349666;0.008038;0.357811;194132;96392 +616/11678;alpha: sc rollup (transaction with invalid type);0.311665;0.043952;0.355735;194260;96396 +617/11678;alpha: sc rollup (execute same message twice);0.324045;0.032004;0.356169;194004;96140 +618/11678;alpha: sc rollup (execute same message twice against different cemented commitments);0.366193;0.027862;0.394173;192944;96140 +619/11678;alpha: sc rollup (transaction with zero amount ticket);0.325484;0.028128;0.353717;193112;96140 +620/11678;alpha: sc rollup (invalid output proof);0.31102;0.031899;0.343069;193112;96300 +621/11678;alpha: sc rollup (outbox message that overrides an old slot);31.3072;0.551844;31.8677;220076;123568 +622/11678;alpha: sc rollup (insufficient ticket balances);0.311053;0.027915;0.339102;193108;96140 +623/11678;alpha: sc rollup (inbox max number of messages per inbox level);2.26438;0.056009;2.32049;353328;256296 +624/11678;alpha: sc rollup (a player can't timeout another player before timeout period and related timeout value.);0.328615;0.01603;0.344775;193072;96140 +625/11678;alpha: sc rollup (a player cannot play more than max_number_of_parallel_games games in parallel.);0.368816;0.03207;0.400998;194096;96140 +626/11678;alpha: sc rollup (Two invalid final moves end the game in a draw situation);0.324857;0.028074;0.353044;193076;96136 +627/11678;alpha: sc rollup (Timeout during the final move can end the game in a draw situation);0.319723;0.023979;0.343825;194100;96304 +628/11678;alpha: sc rollup (Multiple draw in parallel game are valid);0.343907;0.019994;0.364019;192940;96136 +629/11678;alpha: sc rollup (Cannot play a dissection when the final move has started);0.312482;0.036055;0.348671;193196;96240 +630/11678;alpha: sc rollup (Invalid metadata initialization can be refuted);0.306938;0.027903;0.33495;193968;96140 +631/11678;alpha: sc rollup (Invalid reveal can be refuted);0.308391;0.03204;0.340542;194264;96304 +632/11678;alpha: sc rollup (SOL/Info_per_level/EOL are added in the inbox);0.286456;0.035807;0.322373;194096;96140 +633/11678;alpha: sc rollup (0-tick commitments are forbidden);0.292566;0.036069;0.328753;193364;96396 +634/11678;alpha: sc rollup (the curfew functionality);0.376042;0.028003;0.404173;193232;96396 +635/11678;alpha: sc rollup (a commitment can be published after the inbox_level + challenge window is passed.);0.326876;0.035876;0.362851;193328;96144 +636/11678;alpha: sc rollup (An offline staker should not prevent cementation);0.352847;0.020048;0.373017;194100;96140 +637/11678;alpha: sc rollup (win refutation game by forfeit);0.326359;0.031839;0.358307;193232;96396 +638/11678;alpha: sc rollup (win refutation game by forfeit with draw);0.302541;0.043788;0.346419;194092;96216 +639/11678;alpha: sc rollup (cannot start a game with agreeing stakers);0.619192;0.039947;0.659253;194092;97324 +640/11678;alpha: sc rollup (find conflict point with incomplete branch);0.410483;0.031882;0.442551;194992;97332 +641/11678;alpha: sc rollup (cannot start a game on a cemented commitment);6.01635;0.096005;6.11344;216496;119824 +642/11678;alpha: sc rollup transfer (Transfer to a bad sc rollup address);0.298158;0.019877;0.318128;194096;96136 +643/11678;alpha: sc rollup transfer (Transfer to an unknown rollup address);0.288651;0.04009;0.328839;193204;96396 +644/11678;alpha: sc rollup transfer (Transfer with a wrong type);0.29924;0.019949;0.319296;193236;96396 +645/11678;alpha: sc rollup transfer (Transfer with a non-zero amount);0.299886;0.02399;0.323985;193196;96392 +646/11678;alpha: sc rollup transfer (Transfer works);0.309665;0.020108;0.329876;193108;96136 +647/11678;alpha: sc rollup transfer (Transfer of zero-amount ticket);0.298457;0.019897;0.318471;193072;96272 +648/11678;alpha: sc rollup transfer (Transfer of non-zero-amount ticket);0.295223;0.031916;0.327292;194064;96312 +649/11678;alpha: revelation (simple reveal);0.307547;0.011982;0.319611;194072;96396 +650/11678;alpha: revelation (empty account on reveal);0.28934;0.036167;0.325615;193872;96140 +651/11678;alpha: revelation (not enough funds for reveal);0.29028;0.035788;0.326228;194004;96304 +652/11678;alpha: revelation (transfer fees emptying balance after reveal in batch);0.295077;0.023925;0.319094;193836;96396 +653/11678;alpha: revelation (cannot forge reveal with fake keys and signature);0.28323;0.035902;0.319231;193072;96136 +654/11678;alpha: revelation (cannot re-reveal an account with fake keys and signature);0.297062;0.032114;0.329276;193068;96140 +655/11678;alpha: revelation (a backtracked reveal in a batch doesn't take effect);0.303011;0.015947;0.319145;193840;96296 +656/11678;alpha: revelation (cannot re-reveal a manager in a batch);0.295959;0.031995;0.32806;193840;96140 +657/11678;alpha: revelation (do not reveal when gas exhausted);0.297793;0.024145;0.322043;193492;96396 +658/11678;alpha: revelation (incorrect reveal position in batch);0.298531;0.023882;0.322599;193104;96396 +659/11678;alpha: revelation (cannot duplicate valid reveals in batch);0.302634;0.027874;0.330613;193200;96396 +660/11678;alpha: revelation (cannot batch a good reveal after a gas-exhausted one);0.289168;0.036146;0.325419;193200;96396 +661/11678;alpha: revelation (cannot batch a good reveal after an insolvent one);0.299287;0.023943;0.323337;193200;96140 +662/11678;alpha: revelation (cannot batch a good reveal after one emptying account);0.297685;0.024136;0.321933;192944;96132 +663/11678;alpha: paid storage increase (balances simple);0.302826;0.019922;0.322854;193108;96140 +664/11678;alpha: paid storage increase (null amount);0.285223;0.036155;0.32148;194132;96396 +665/11678;alpha: paid storage increase (negative amount);0.292678;0.036083;0.328865;192976;96140 +666/11678;alpha: paid storage increase (not enough tez to pay);0.275431;0.043909;0.319452;193108;96136 +667/11678;alpha: paid storage increase (no contract to bump its paid storage);0.29373;0.028165;0.322003;193968;96280 +668/11678;alpha: paid storage increase (effectiveness);0.287832;0.035979;0.323895;193112;96304 +669/11678;alpha: orgination (balances_simple);0.299737;0.023978;0.323829;193872;96140 +670/11678;alpha: orgination (balances_credit);0.288658;0.032073;0.320834;193620;96268 +671/11678;alpha: orgination (balances_credit_fee);0.28122;0.040174;0.321502;193236;96324 +672/11678;alpha: orgination (pay_fee);0.301977;0.019866;0.321959;193236;96396 +673/11678;alpha: orgination (not enough tez in contract to pay fee);0.304986;0.016051;0.321181;193688;96376 +674/11678;alpha: orgination (multiple originations);0.625358;0.044095;0.669571;218320;120612 +675/11678;alpha: orgination (counter);0.268632;0.052122;0.320874;192984;96140 +676/11678;alpha: orgination (unparsable script);0.295695;0.023975;0.319789;193880;96140 +677/11678;alpha: failing_noop operation (injection fails);0.290099;0.036262;0.326481;193616;96140 +678/11678;alpha: combined (multiple transfers);0.292098;0.028009;0.320266;193496;96420 +679/11678;alpha: combined (multiple originations and delegations);0.300042;0.024003;0.324151;192980;96140 +680/11678;alpha: combined (Failing operation in the middle);0.295585;0.031955;0.327665;193616;96396 +681/11678;alpha: combined (Failing operation in the middle (with fees));0.312763;0.016039;0.328907;192944;96140 +682/11678;alpha: combined (Failing operation (wrong manager in the middle of a pack));0.280579;0.044091;0.324782;193068;96140 +683/11678;alpha: combined (Inconsistent counters in batch);0.294765;0.027883;0.322756;193108;96300 +684/11678;alpha: activation (init with commitments);0.325364;0.016067;0.341548;193624;96140 +685/11678;alpha: activation (single activation);0.32659;0.015931;0.342643;193232;96396 +686/11678;alpha: activation (multi-activation one-by-one);0.32446;0.020028;0.344597;192976;96140 +687/11678;alpha: activation (multi-activation all at a time);0.328567;0.020034;0.348721;193872;96392 +688/11678;alpha: activation (activation and transfer);0.306851;0.03188;0.338845;193108;96324 +689/11678;alpha: activation (transfer to unactivated account then activate);0.323801;0.019987;0.343891;193456;96252 +690/11678;alpha: activation (invalid activation with no commitments);0.32062;0.020038;0.340764;193456;96144 +691/11678;alpha: activation (invalid activation with commitments);0.325784;0.02011;0.345999;193360;96396 +692/11678;alpha: activation (invalid double activation);0.289151;0.060239;0.349492;193104;96396 +693/11678;alpha: activation (wrong activation code);0.323443;0.019965;0.343515;193876;96392 +694/11678;alpha: activation (invalid transfer from unactivated account);0.318462;0.027865;0.346431;192940;96144 +695/11678;alpha: typechecking (unparse view);0.303598;0.023968;0.327671;193112;96404 +696/11678;alpha: typechecking (typecheck stack overflow error);0.310038;0.035773;0.34623;203860;107056 +697/11678;alpha: typechecking (comb type parsing);0.283209;0.035899;0.319218;193024;96396 +698/11678;alpha: typechecking (comb type unparsing);0.296761;0.028072;0.324947;192980;96140 +699/11678;alpha: typechecking (comb comparable type unparsing);0.296413;0.024033;0.320559;193236;96388 +700/11678;alpha: typechecking (comb data parsing);0.296129;0.02401;0.320243;192980;96140 +701/11678;alpha: typechecking (comb data unparsing);0.305528;0.02412;0.329761;193104;96136 +702/11678;alpha: typechecking (optimal comb data unparsing);0.278868;0.039838;0.31881;193360;96392 +703/11678;alpha: typechecking (parse address);0.296256;0.02402;0.320397;192976;96140 +704/11678;alpha: typechecking (unpackability of the contract type);0.295234;0.031917;0.32725;192948;96144 +705/11678;alpha: typechecking (forbidden SELF in view);0.295323;0.023945;0.32074;192932;96284 +706/11678;alpha: typechecking (forbidden SET_DELEGATE in view);0.29474;0.02788;0.324071;193236;96396 +707/11678;alpha: typechecking (forbidden TRANSFER_TOKENS in view);0.304605;0.020039;0.32609;193108;96140 +708/11678;alpha: typechecking (forbidden CREATE_CONTRACT in view);0.287546;0.031949;0.320987;193104;96296 +709/11678;alpha: typechecking (parse contract data for rollup);0.281541;0.036198;0.317871;193112;96164 +710/11678;alpha: typechecking (parse contract data for rollup with entrypoint invalid type);0.283753;0.039965;0.32383;193068;96132 +711/11678;alpha: typechecking (lambda_rec instruction);0.281036;0.040148;0.322657;192980;96144 +712/11678;alpha: typechecking (lambda_rec instruction with apply);0.30325;0.02394;0.327488;193108;96136 +713/11678;alpha: typechecking (lambda_rec with type error);0.301059;0.020341;0.321739;193232;96400 +714/11678;alpha: ticket storage (no overlapping keys for ticketer);0.298433;0.027853;0.326402;193072;96140 +715/11678;alpha: ticket storage (no overlapping keys for content);0.28662;0.039808;0.326532;193108;96392 +716/11678;alpha: ticket storage (no overlapping keys for content type);0.285781;0.04025;0.326138;193072;96300 +717/11678;alpha: ticket storage (no overlapping keys for owner);0.294797;0.027886;0.322766;192980;96396 +718/11678;alpha: ticket storage (ticket balance single update);0.313003;0.012038;0.325153;193232;96396 +719/11678;alpha: ticket storage (empty balance);0.278553;0.039793;0.318464;193240;96396 +720/11678;alpha: ticket storage (empty balance after update);0.301003;0.02408;0.325183;193104;96136 +721/11678;alpha: ticket storage (negative balance);0.287438;0.031937;0.319487;192980;96136 +722/11678;alpha: ticket storage (ticket balance multiple updates);0.296913;0.028086;0.32517;193104;96444 +723/11678;alpha: ticket storage (ticket balance different owners);0.309532;0.008039;0.317647;192908;96396 +724/11678;alpha: ticket storage (ticket storage space);0.282614;0.035824;0.318547;193104;96140 +725/11678;alpha: ticket scanner (tickets in unit ticket);0.284214;0.036027;0.32034;193128;96168 +726/11678;alpha: ticket scanner (tickets in list);0.283786;0.035972;0.319874;193112;96140 +727/11678;alpha: ticket scanner (tickets in list with zero amount);0.300842;0.016044;0.316988;193068;96148 +728/11678;alpha: ticket scanner (tickets in pair);0.286711;0.039821;0.326636;193108;96392 +729/11678;alpha: ticket scanner (tickets in pair with zero amount);0.291407;0.035927;0.327513;193068;96116 +730/11678;alpha: ticket scanner (tickets in map);0.290911;0.027895;0.318914;193240;96400 +731/11678;alpha: ticket scanner (tickets in map with zero amount);0.283729;0.035965;0.319794;193236;96360 +732/11678;alpha: ticket scanner (tickets in big map);0.296602;0.024048;0.320781;193104;96308 +733/11678;alpha: ticket scanner (tickets in big map with include lazy set to false);0.292482;0.028046;0.320637;192944;96140 +734/11678;alpha: ticket scanner (tickets in list in big map);0.288002;0.032;0.320103;193112;96296 +735/11678;alpha: ticket scanner (tickets in a pair of big-map and list with include lazy set to false);0.300077;0.028007;0.328197;192944;96136 +736/11678;alpha: ticket scanner (tickets in or left);0.309796;0.016093;0.326004;192980;96136 +737/11678;alpha: ticket scanner (tickets in or left with zero amount);0.278897;0.039842;0.318846;193204;96140 +738/11678;alpha: ticket scanner (tickets in or right);0.288211;0.032023;0.32035;193236;96396 +739/11678;alpha: ticket scanner (tickets in empty big-map ref);0.270523;0.047739;0.318375;194000;96396 +740/11678;alpha: ticket scanner (tickets in big-map ref);0.29915;0.023932;0.323187;193232;96392 +741/11678;alpha: ticket scanner (tickets in non-empty big-map ref);0.291205;0.031912;0.323217;192816;96140 +742/11678;alpha: ticket scanner (tickets in non-empty big-map ref with overlay);0.27299;0.048174;0.321288;192940;96296 +743/11678;alpha: ticket scanner (tickets replace existing value from overlay);0.306965;0.019932;0.327015;192940;96140 +744/11678;alpha: ticket scanner (tickets remove existing value from overlay);0.292753;0.024061;0.316924;193196;96304 +745/11678;alpha: ticket operations diff (operations that do not involve tickets);0.303712;0.015984;0.3198;192940;96140 +746/11678;alpha: ticket operations diff (transfer to non-ticket contract);0.305305;0.020085;0.325503;193072;96140 +747/11678;alpha: ticket operations diff (transfer empty ticket list);0.294605;0.031849;0.326556;193200;96140 +748/11678;alpha: ticket operations diff (transfer one ticket);0.301512;0.0201;0.321727;193108;96140 +749/11678;alpha: ticket operations diff (transfer multiple tickets);0.274436;0.047728;0.322283;193712;96304 +750/11678;alpha: ticket operations diff (transfer different tickets);0.289626;0.03218;0.321931;193712;96396 +751/11678;alpha: ticket operations diff (transfer to two contracts with different tickets);0.285311;0.036166;0.32158;193840;96140 +752/11678;alpha: ticket operations diff (originate contract that does not contain tickets);0.319409;0.011977;0.331486;193196;96396 +753/11678;alpha: ticket operations diff (originate with empty ticket list);0.293871;0.028179;0.322157;193588;96140 +754/11678;alpha: ticket operations diff (originate with one ticket);0.290994;0.031889;0.322987;192944;96136 +755/11678;alpha: ticket operations diff (originate with multiple tickets);0.291037;0.031894;0.323051;193712;96396 +756/11678;alpha: ticket operations diff (originate with different tickets);0.288663;0.032073;0.320848;193076;96396 +757/11678;alpha: ticket operations diff (originate two contracts with different tickets);0.30638;0.015915;0.32241;193840;96140 +758/11678;alpha: ticket operations diff (originate and transfer);0.29381;0.028173;0.32209;193496;96396 +759/11678;alpha: ticket operations diff (originate big-map with tickets);0.284757;0.036096;0.320952;194092;96140 +760/11678;alpha: ticket operations diff (transfer big-map with tickets);0.295765;0.023981;0.319866;193068;96140 +761/11678;alpha: ticket operations diff (transfer fails on multiple zero tickets);0.297658;0.020112;0.31787;192944;96140 +762/11678;alpha: ticket operations diff (fail in zero-amount tickets);0.293445;0.028138;0.321685;193068;96140 +763/11678;alpha: ticket manager (Create contract);0.321801;0.028157;0.350075;193492;96812 +764/11678;alpha: ticket manager (Send self replace big-map);0.305659;0.036196;0.341961;192980;96140 +765/11678;alpha: ticket manager (Add and remove from strict storage);0.306793;0.02789;0.334802;193964;96140 +766/11678;alpha: ticket manager (Add and remove from lazy storage);0.31115;0.031912;0.343162;194604;96816 +767/11678;alpha: ticket manager (Mix of operations);0.291371;0.043905;0.335391;193368;96396 +768/11678;alpha: ticket lazy storage diff (allocate new empty);0.299722;0.023977;0.323803;194260;96424 +769/11678;alpha: ticket lazy storage diff (allocate new);0.286942;0.031882;0.318935;193912;96284 +770/11678;alpha: ticket lazy storage diff (allocate new no tickets);0.275059;0.051822;0.326994;192940;96140 +771/11678;alpha: ticket lazy storage diff (Remove);0.291862;0.027986;0.319955;192984;96140 +772/11678;alpha: ticket lazy storage diff (no updates to existing);0.28664;0.031848;0.31859;192940;96140 +773/11678;alpha: ticket lazy storage diff (update existing big-map);0.29075;0.02788;0.318742;193068;96396 +774/11678;alpha: ticket lazy storage diff (update same key multiple times on existing big-map);0.286615;0.035826;0.322524;192868;96396 +775/11678;alpha: ticket lazy storage diff (remove same key multiple times on existing big-map);0.278896;0.04781;0.326815;193844;96144 +776/11678;alpha: ticket lazy storage diff (update and remove same key multiple times on existing big-map);0.289779;0.036222;0.326107;193068;96140 +777/11678;alpha: ticket lazy storage diff (copy);0.296578;0.024046;0.320722;193876;96140 +778/11678;alpha: ticket lazy storage diff (copy with updates);0.293076;0.032117;0.325293;193236;96396 +779/11678;alpha: ticket lazy storage diff (copy with multiple updates to same key);0.287207;0.0359;0.323218;193196;96140 +780/11678;alpha: ticket lazy storage diff (mix lazy diffs);0.309634;0.020106;0.329847;193872;96396 +781/11678;alpha: ticket balance key (different ticketers);0.296057;0.024004;0.320152;192784;96396 +782/11678;alpha: ticket balance key (different owners);0.294933;0.027899;0.322943;193108;96144 +783/11678;alpha: ticket balance key (different content);0.290418;0.035805;0.326328;193240;96396 +784/11678;alpha: ticket balance key (different amounts);0.293131;0.024092;0.317326;192976;96260 +785/11678;alpha: ticket balance key (nat int);0.281498;0.040214;0.32182;193104;96140 +786/11678;alpha: ticket balance key (nat mutez);0.308054;0.016002;0.324155;193108;96140 +787/11678;alpha: ticket balance key (not bool);0.297264;0.028119;0.32549;192980;96140 +788/11678;alpha: ticket balance key (nat bytes);0.300863;0.024069;0.325038;193236;96396 +789/11678;alpha: ticket balance key (string chain_id);0.298798;0.027887;0.326801;193104;96300 +790/11678;alpha: ticket balance key (string key_hash);0.295771;0.023981;0.319876;193240;96396 +791/11678;alpha: ticket balance key (string timestamp);0.292866;0.032094;0.325054;192940;96264 +792/11678;alpha: ticket balance key (string address);0.298774;0.023901;0.322784;193364;96396 +793/11678;alpha: ticket balance key (string key);0.295774;0.031975;0.327855;193232;96392 +794/11678;alpha: ticket balance key (string signature);0.306552;0.019906;0.326559;193096;96400 +795/11678;alpha: ticket balance key (annotations for pair);0.303339;0.019956;0.323406;193232;96396 +796/11678;alpha: ticket balance key (annotations for or);0.290761;0.027881;0.318745;193232;96140 +797/11678;alpha: ticket balance key (annotations for type alias);0.301612;0.020107;0.321827;193108;96648 +798/11678;alpha: ticket balance key (annotations for paired ors);0.297662;0.024134;0.321902;192984;96140 +799/11678;alpha: ticket balance key (option none);0.291524;0.027954;0.319583;192916;96316 +800/11678;alpha: ticket balance key (option some);0.291664;0.027967;0.31975;192980;96140 +801/11678;alpha: ticket balance (add strict);0.273683;0.048297;0.322075;193360;96396 +802/11678;alpha: ticket balance (add and remove);0.31701;0.012038;0.329223;193108;96396 +803/11678;alpha: ticket balance (add to big-map);0.284978;0.036124;0.321234;194132;96396 +804/11678;alpha: ticket balance (swap big-map);0.303732;0.027975;0.331808;193232;96396 +805/11678;alpha: ticket balance (send ticket);0.297816;0.020122;0.318048;194004;96136 +806/11678;alpha: ticket balance (send ticket to implicit);0.310585;0.007963;0.318655;193108;96136 +807/11678;alpha: ticket balance (send and store tickets with amount 0);0.299049;0.031898;0.331048;193072;96140 +808/11678;alpha: ticket balance (send tickets in big-map);0.302578;0.019906;0.322588;194004;96136 +809/11678;alpha: ticket balance (modify big-map);0.304937;0.016049;0.321088;194000;96396 +810/11678;alpha: ticket balance (send drop);0.297467;0.020099;0.317681;192976;96140 +811/11678;alpha: ticket balance (create contract with ticket);0.299475;0.023958;0.323532;193796;96440 +812/11678;alpha: ticket balance (join);0.301409;0.020093;0.321608;192976;96140 +813/11678;alpha: ticket balance (wallet);0.284403;0.044062;0.328573;193104;96300 +814/11678;alpha: ticket balance (ticket storage);0.282946;0.039851;0.322905;192984;96300 +815/11678;alpha: ticket balance (storage for create and remove tickets);0.307271;0.023943;0.331328;192816;96144 +816/11678;alpha: ticket accounting (Diffs empty);0.297103;0.028104;0.325326;193876;96396 +817/11678;alpha: ticket accounting (Diffs for tickets in args);0.282864;0.03984;0.322816;192912;96396 +818/11678;alpha: ticket accounting (Diffs for tickets in args and storage);0.296369;0.032039;0.328529;192708;96376 +819/11678;alpha: ticket accounting (Diffs for dropped ticket);0.277724;0.040249;0.318081;193880;96140 +820/11678;alpha: ticket accounting (Diffs for adding new ticket to storage);0.30298;0.023919;0.327009;193072;96140 +821/11678;alpha: ticket accounting (Diffs for removing from storage);0.302651;0.019911;0.322666;193204;96304 +822/11678;alpha: ticket accounting (Diffs for lazy storage allocation);0.295355;0.023947;0.319482;193072;96256 +823/11678;alpha: ticket accounting (Diffs for removing from big-map);0.282733;0.043803;0.326645;193840;96052 +824/11678;alpha: ticket accounting (Diffs for copying a big-map);0.26927;0.052246;0.321616;193236;96396 +825/11678;alpha: ticket accounting (Diffs for adding to an existing big-map);0.289135;0.032126;0.321366;193964;96140 +826/11678;alpha: ticket accounting (Diffs for args, storage and lazy-diff);0.304879;0.020057;0.325047;194096;96396 +827/11678;alpha: ticket accounting (Update tickets balances with invalid transfer);0.29273;0.03208;0.324931;193968;96140 +828/11678;alpha: ticket accounting (Update ticket self diff);0.305379;0.02009;0.325579;193240;96136 +829/11678;alpha: ticket accounting (Update ticket balances for valid transfer);0.274443;0.047729;0.322281;193068;96140 +830/11678;alpha: ticket accounting (Update ticket balances for transfer with 'self' tickets);0.298865;0.019924;0.318924;192824;96168 +831/11678;alpha: ticket accounting (Update transfer tickets to self);0.27445;0.051708;0.326273;193068;96396 +832/11678;alpha: ticket accounting (Update invalid origination);0.293894;0.028181;0.322175;193104;96396 +833/11678;alpha: ticket accounting (Update valid origination);0.301222;0.016065;0.31738;192920;96396 +834/11678;alpha: ticket accounting (Update valid self origination);0.295655;0.023972;0.319735;193068;96140 +835/11678;alpha: ticket accounting (ticket-token map with duplicate keys);0.306716;0.019916;0.326733;192976;96320 +836/11678;alpha: temp big maps (temp_big_maps(Left True, -1));0.290097;0.027817;0.319526;193108;96296 +837/11678;alpha: temp big maps (temp_big_maps(Left True, 0));0.306665;0.01593;0.322702;193364;96396 +838/11678;alpha: temp big maps (temp_big_maps(Left True, 1));0.287127;0.031903;0.319143;193108;96396 +839/11678;alpha: temp big maps (temp_big_maps(Left True, 2));0.295137;0.027918;0.323166;192980;96272 +840/11678;alpha: temp big maps (temp_big_maps(Left False, -1));0.29112;0.035891;0.327127;193104;96216 +841/11678;alpha: temp big maps (temp_big_maps(Left False, 0));0.304701;0.020046;0.324848;193876;96140 +842/11678;alpha: temp big maps (temp_big_maps(Left False, 1));0.295608;0.023968;0.31969;193872;96344 +843/11678;alpha: temp big maps (temp_big_maps(Left False, 2));0.280766;0.040109;0.320981;194008;96324 +844/11678;alpha: temp big maps (temp_big_maps(Right {}, -1));0.289303;0.028126;0.317545;194004;96396 +845/11678;alpha: temp big maps (temp_big_maps(Right {}, 0));0.28736;0.031928;0.319387;193872;96304 +846/11678;alpha: temp big maps (temp_big_maps(Right {}, 1));0.285392;0.036176;0.321673;193236;96396 +847/11678;alpha: temp big maps (temp_big_maps(Right {}, 2));0.301999;0.020133;0.32223;193104;96140 +848/11678;alpha: script typed ir size (value size);0.708933;0.036047;0.745091;219728;121388 +849/11678;alpha: script typed ir size (ty size);0.304122;0.016006;0.320241;193112;96136 +850/11678;alpha: script typed ir size (kinstr size);0.2793;0.0399;0.319302;193236;96392 +851/11678;alpha: script typed ir size (witness sizes);0.294906;0.019926;0.314933;193108;96392 +852/11678;alpha: script typed ir size (micheline sizes);0.286561;0.02786;0.314525;192976;96136 +853/11678;alpha: script cache (assumption about size of liquidity baking holds);0.286887;0.039845;0.326829;193708;96396 +854/11678;alpha: script cache (assumption about size of 'int_store' contract holds);0.29149;0.031944;0.32373;193708;96392 +855/11678;alpha: script cache (find correctly looks up);0.299312;0.027935;0.327581;193240;96396 +856/11678;alpha: script cache (update correctly modifies);0.295661;0.031963;0.327721;193240;96400 +857/11678;alpha: script cache (entries correctly list contracts in order);0.316686;0.020043;0.336821;193964;96560 +858/11678;alpha: script cache (contract_rank is LRU rank);0.323632;0.011986;0.335701;194256;96248 +859/11678;alpha: script cache (size returns entries size);0.29936;0.039914;0.339389;194128;96304 +860/11678;alpha: script cache (size limit is a protocol constant);0.293142;0.032125;0.32537;192980;96140 +861/11678;alpha: script cache (entries show LRU behavior);0.312786;0.02005;0.332948;194156;96428 +862/11678;alpha: sapling (commitments_add_uncommitted);0.409828;0.024107;0.434048;193112;96428 +863/11678;alpha: sapling (nullifier_double);0.278549;0.043772;0.322418;193872;96400 +864/11678;alpha: sapling (nullifier_test);0.33602;0.028001;0.36415;193620;96204 +865/11678;alpha: sapling (cm_cipher_test);0.30372;0.027974;0.331793;193744;96396 +866/11678;alpha: sapling (list_insertion_test);0.419609;0.03197;0.451684;193744;96136 +867/11678;alpha: sapling (root);0.290672;0.031854;0.322642;193364;96396 +868/11678;alpha: sapling (get_memo_size);0.292375;0.028035;0.320516;192980;96136 +869/11678;alpha: sapling (verify_memo);1.51403;0.058683;0.583837;260188;164560 +870/11678;alpha: sapling (bench_phases);50.298;0.164058;4.7617;382448;286004 +871/11678;alpha: sapling (bench_phases_legacy);50.1951;0.155513;4.69631;397448;300920 +872/11678;alpha: sapling (bench_fold_over_same_token);44.5437;0.199389;4.23441;399468;303620 +873/11678;alpha: sapling (double_spend_same_input);26.1553;0.127431;2.70944;386324;290008 +874/11678;alpha: sapling (verifyupdate_one_transaction);10.0818;0.075713;1.33264;338360;242132 +875/11678;alpha: sapling (verifyupdate_two_transactions);19.9039;0.096523;2.19477;355196;259224 +876/11678;alpha: sapling (shielded_tez);413.065;0.771852;35.5345;433596;336840 +877/11678;alpha: sapling (use state from other contract and transact);2.64498;0.053642;0.674;261952;165936 +878/11678;alpha: sapling (Instruction PUSH sapling_state 0 should be forbidden);0.305139;0.024089;0.329509;193840;96140 +879/11678;alpha: sapling (transac_and_block);10.1588;0.083333;1.36019;339628;242920 +880/11678;alpha: sapling (drop);15.8048;0.056807;1.79053;266396;171420 +881/11678;alpha: sapling (double);2.66377;0.047146;0.694195;261880;165856 +882/11678;alpha: sapling (state_as_arg);2.60582;0.075473;0.675095;265824;169724 +883/11678;alpha: lazy storage diff (conversion roundtrip);0.303844;0.015991;0.319998;193236;96364 +884/11678;alpha: lazy storage diff (encoding roundtrip);0.274717;0.039814;0.314633;193232;96396 +885/11678;alpha: lambda normalization (lambdas are normalized to optimized format during elaboration);0.35079;0.027903;0.37881;205612;108600 +886/11678;alpha: interpretation (bad contract error);0.303848;0.023988;0.327936;193104;96300 +887/11678;alpha: interpretation (check robustness overflow error);0.485003;0.044091;0.529193;241672;144680 +888/11678;alpha: interpretation (check robustness overflow error in lwt);1.68452;0.056017;1.74065;289896;193068 +889/11678;alpha: interpretation (multiplication no illegitimate overflow);0.303319;0.023946;0.32742;192980;96148 +890/11678;alpha: interpretation (stack overflow error);0.47211;0.056013;0.528223;241544;144676 +891/11678;alpha: interpretation (map instr against options);0.584237;0.036014;0.620364;217432;120616 +892/11678;alpha: interpretation (lambda_rec instruction);0.28172;0.04427;0.326105;193108;96136 +893/11678;alpha: interpretation (lambda_rec instruction with apply);0.295586;0.023966;0.319655;192812;96396 +894/11678;alpha: interpretation (lambda_rec instruction with an infinite recursion);1.07054;0.111847;1.18384;879804;784708 +895/11678;alpha: interpretation (lambda_rec instruction storage);0.302052;0.019871;0.32341;193360;96396 +896/11678;alpha: interpretation (lambda_rec instruction storage apply store);0.301542;0.020102;0.323182;193200;96352 +897/11678;alpha: interpretation (test error encoding: Reject);0.292491;0.028047;0.320676;193232;96304 +898/11678;alpha: interpretation (test error encoding: Overflow);0.308368;0.016019;0.324487;192976;96136 +899/11678;alpha: interpretation (test error encoding: Runtime_contract_error);0.278338;0.039762;0.318203;192940;96140 +900/11678;alpha: interpretation (test error encoding: Bad_contract_parameter);0.2744;0.043744;0.318244;193204;96140 +901/11678;alpha: interpretation (test error encoding: Cannot_serialize_failure);0.29124;0.027927;0.319263;193048;96560 +902/11678;alpha: interpretation (test error encoding: Cannot_serialize_storage);0.282782;0.039828;0.322729;193200;96304 +903/11678;alpha: global table of constants (Multiple blocks happy path);0.310873;0.031884;0.342875;193072;96240 +904/11678;alpha: global table of constants (Bad register global operations fail when added to the block);0.281583;0.040226;0.321928;193072;96396 +905/11678;alpha: global table of constants (You cannot register the same expression twice.);0.284661;0.040093;0.324853;193072;96136 +906/11678;alpha: event logging (contract emits event with correct data in proper order);0.307817;0.0162;0.325533;193068;96140 +907/11678;alpha: block time instructions (MIN_BLOCK_TIME gives current minimal block delay);0.30931;0.024102;0.333564;193072;96144 +908/11678;alpha: annotations (External origination preserves annotations);0.295234;0.027927;0.323272;192940;96140 +909/11678;alpha: annotations (Internal origination preserves annotations);0.295047;0.031896;0.327057;193104;96136 +910/11678;alpha: gas levels (Detect gas exhaustion in fresh context);0.291291;0.027932;0.319326;193196;96388 +911/11678;alpha: gas levels (Detect gas exhaustion when operation gas as hits zero);0.283079;0.03987;0.323047;192632;96104 +912/11678;alpha: gas levels (Detect gas exhaustion when block gas as hits zero);0.294492;0.023877;0.318469;193068;96140 +913/11678;alpha: gas levels (Detect gas limit consumption when it is above the hard gas operation limit);0.299175;0.027923;0.327219;193204;96420 +914/11678;alpha: gas levels (Each new operation impacts block gas level, each gas consumption impacts operation gas level);0.285424;0.03618;0.321734;192828;96140 +915/11678;alpha: gas levels (Switches operation gas consumption from limited to unlimited);0.30227;0.015908;0.318346;193072;96140 +916/11678;alpha: gas levels (Switches operation gas consumption from unlimited to limited);0.308228;0.012008;0.320343;192944;96140 +917/11678;alpha: gas levels (Accepts a block that consumes all of its gas);0.304385;0.02403;0.328541;193968;96136 +918/11678;alpha: gas levels (Detect when the sum of all operation gas limits exceeds the hard gas limit per block);0.295243;0.031918;0.327264;194092;96140 +919/11678;alpha: gas levels (Detect when gas limit of operation list exceeds the hard gas limit per block);0.298167;0.023853;0.322111;193636;96652 +920/11678;alpha: gas levels (the gas consumption of various operations);0.307399;0.019961;0.327544;194096;96248 +921/11678;alpha: gas levels (emptying an account costs gas);0.292305;0.028029;0.320443;194008;96140 +922/11678;alpha: gas levels (bake one operation with contract nil);0.298371;0.019891;0.318365;194100;96396 +923/11678;alpha: gas levels (bake one operation list with contract nil);0.283185;0.039885;0.323182;194096;96140 +924/11678;alpha: gas levels (multiple single operations with contract nil);0.299145;0.019943;0.319201;194100;96140 +925/11678;alpha: gas levels (both lists and single operations with contract nil);0.294681;0.027875;0.32267;192940;96140 +926/11678;alpha: gas levels (bake one operation with contract fail);0.300013;0.024001;0.324089;193744;96396 +927/11678;alpha: gas levels (bake one operation list with contract fail);0.298984;0.023918;0.323016;193836;96140 +928/11678;alpha: gas levels (multiple single operations with contract fail);0.29767;0.024135;0.321916;193724;96140 +929/11678;alpha: gas levels (both lists and single operations with contract fail);0.280676;0.040096;0.320894;194096;96392 +930/11678;alpha: gas levels (bake one operation with contract infinite loop);0.312365;0.016018;0.32849;193076;96304 +931/11678;alpha: gas levels (bake one operation list with contract infinite loop);0.295652;0.027967;0.323721;192944;96140 +932/11678;alpha: gas levels (multiple single operations with contract infinite loop);0.309055;0.016054;0.325219;194092;96396 +933/11678;alpha: gas levels (both lists and single operations with contract infinite loop);0.269471;0.052285;0.321857;193968;96396 +934/11678;alpha: gas cost functions (Positivity of interpreter costs);0.287285;0.03192;0.319307;193068;96136 +935/11678;alpha: gas cost functions (Positivity of typechecking costs);0.288428;0.036053;0.324583;193068;96396 +936/11678;alpha: gas cost functions (Positivity of unparsing costs);0.289506;0.028146;0.317772;192940;96140 +937/11678;alpha: gas cost functions (Positivity of io costs);0.296452;0.024036;0.320589;192980;96140 +938/11678;alpha: seed (seed computation (no commitment));0.323903;0.023992;0.348052;194004;96304 +939/11678;alpha: seed (no commitment);0.299749;0.027976;0.327826;193880;96140 +940/11678;alpha: seed (revelation_early_wrong_right_twice);0.293177;0.036145;0.329426;193876;96140 +941/11678;alpha: seed (revelation_missing_and_late);0.309251;0.020081;0.329434;194136;96244 +942/11678;alpha: seed (unrevealed);0.311955;0.023996;0.336053;194000;96396 +943/11678;alpha: seed (early_incorrect_unverified_correct_already_vdf);0.851718;0.019993;0.871836;195628;97844 +944/11678;alpha: seed (VDF status);0.291669;0.031963;0.323761;194128;96356 +945/11678;alpha: seed (for_cycle cycle bounds);0.300462;0.024037;0.324605;194004;96140 +946/11678;alpha: preendorsement (AppMode: ok: include_preendorsement_in_block_with_locked_round);0.295957;0.027996;0.324057;193968;96140 +947/11678;alpha: preendorsement (AppMode: ko: duplicate_preendorsement_in_pqc);0.300975;0.028091;0.329175;193584;96140 +948/11678;alpha: preendorsement (AppMode: ko:locked_round_not_before_block_round);0.301797;0.024143;0.326046;193580;96140 +949/11678;alpha: preendorsement (AppMode: ko: with_locked_round_in_block_but_without_any_pqc);0.295752;0.023979;0.319847;194224;96276 +950/11678;alpha: preendorsement (AppMode: ko: preendorsement_has_wrong_level);0.290909;0.035865;0.326912;194228;96352 +951/11678;alpha: preendorsement (AppMode: ok: preendorsement_in_block_with_good_slot);0.300408;0.028038;0.328553;193712;96392 +952/11678;alpha: preendorsement (AppMode: ko: preendorsement_in_block_with_wrong_slot);0.29479;0.027885;0.322789;193584;96140 +953/11678;alpha: preendorsement (AppMode: ko: preendorsement_in_block_with_wrong_signature);0.299317;0.031927;0.331364;193584;96140 +954/11678;alpha: preendorsement (AppMode: ko: locked_round_is_higher_than_pqc_round);0.296908;0.024073;0.321087;193068;96352 +955/11678;alpha: preendorsement (ConstrMode: ok: include_preendorsement_in_block_with_locked_round);0.287319;0.035914;0.323339;193072;96352 +956/11678;alpha: preendorsement (ConstrMode: ko: duplicate_preendorsement_in_pqc);0.304809;0.024063;0.328982;193200;96136 +957/11678;alpha: preendorsement (ConstrMode: ko:locked_round_not_before_block_round);0.276562;0.044089;0.32077;193076;96396 +958/11678;alpha: preendorsement (ConstrMode: ko: with_locked_round_in_block_but_without_any_pqc);0.304709;0.024056;0.328864;193200;96396 +959/11678;alpha: preendorsement (ConstrMode: ko: preendorsement_has_wrong_level);0.289199;0.032133;0.321435;193196;96396 +960/11678;alpha: preendorsement (ConstrMode: ok: preendorsement_in_block_with_good_slot);0.292656;0.028062;0.32082;192940;96140 +961/11678;alpha: preendorsement (ConstrMode: ko: preendorsement_in_block_with_wrong_slot);0.287633;0.031959;0.319693;193076;96392 +962/11678;alpha: preendorsement (ConstrMode: ko: preendorsement_in_block_with_wrong_signature);0.298515;0.023881;0.322501;193068;96396 +963/11678;alpha: preendorsement (ConstrMode: ko: locked_round_is_higher_than_pqc_round);0.31559;0.011984;0.327675;192940;96136 +964/11678;alpha: preendorsement (Preendorsement with arbitrary branch);0.287207;0.039889;0.327203;193072;96140 +965/11678;alpha: preendorsement (Preendorsement for future level);0.305892;0.020124;0.32612;193620;96140 +966/11678;alpha: preendorsement (Preendorsement for old level);0.278653;0.043788;0.322545;193744;96392 +967/11678;alpha: preendorsement (Preendorsement for future round);0.304498;0.020032;0.324633;193368;96396 +968/11678;alpha: preendorsement (Preendorsement for old round);0.286434;0.035804;0.322344;193232;96396 +969/11678;alpha: preendorsement (Preendorsement on competing proposal);0.284977;0.036123;0.321218;193072;96396 +970/11678;alpha: preendorsement (Unexpected preendorsements in blocks);0.300815;0.024065;0.325008;193712;96392 +971/11678;alpha: preendorsement (Preendorsements round too high);0.300763;0.02005;0.320922;193236;96304 +972/11678;alpha: preendorsement (Duplicate preendorsement);0.269149;0.05624;0.3255;194000;96416 +973/11678;alpha: preendorsement (Preendorsement for next level);0.307567;0.015977;0.323699;192864;96292 +974/11678;alpha: preendorsement (Preendorsement for next round);0.297602;0.028151;0.325853;193876;96396 +975/11678;alpha: participation monitoring (insufficient participation);0.307133;0.019943;0.327184;193328;96396 +976/11678;alpha: participation monitoring (minimal participation);0.308639;0.024049;0.332863;192976;96136 +977/11678;alpha: participation monitoring (participation RPC);0.302318;0.023867;0.326287;193104;96240 +978/11678;alpha: helpers rpcs (baking_rights);0.287283;0.03192;0.319315;193108;96396 +979/11678;alpha: frozen deposits (invariants);0.305167;0.024092;0.329367;193872;96304 +980/11678;alpha: frozen deposits (deposits after stake removal);0.314481;0.027865;0.342449;193360;96368 +981/11678;alpha: frozen deposits (deposits are not unfrozen after deactivation);0.315919;0.047987;0.364029;194092;96396 +982/11678;alpha: frozen deposits (frozen deposits with delegation);0.319374;0.035929;0.355426;194096;96392 +983/11678;alpha: frozen deposits (test cannot bake with zero deposits);0.324532;0.016026;0.34066;192944;96236 +984/11678;alpha: frozen deposits (test simulation of limited staking with overdelegation);0.36184;0.036184;0.398141;193968;96276 +985/11678;alpha: frozen deposits (test cannot bake again after full deposit slash);0.30329;0.031925;0.335322;193200;96396 +986/11678;alpha: frozen deposits (frozen deposits with overdelegation);0.330145;0.027843;0.358098;192944;96136 +987/11678;alpha: frozen deposits (error is thrown when the frozen window is smaller);0.320701;0.03207;0.35288;192944;96140 +988/11678;alpha: endorsement (Simple endorsement);0.307673;0.023974;0.33175;193872;96392 +989/11678;alpha: endorsement (Arbitrary branch);0.299117;0.031905;0.331201;193232;96480 +990/11678;alpha: endorsement (Non-zero round);0.297073;0.024087;0.321262;194000;96140 +991/11678;alpha: endorsement (Fitness gap);0.307598;0.015979;0.323689;194008;96144 +992/11678;alpha: endorsement (Mempool: non-smallest slot);0.301176;0.020078;0.321349;194000;96396 +993/11678;alpha: endorsement (Endorsement with slot -1);0.297099;0.020074;0.317296;193232;96396 +994/11678;alpha: endorsement (Non-normalized slot);0.288091;0.036011;0.324215;193232;96396 +995/11678;alpha: endorsement (Not own slot);0.304271;0.024021;0.328406;193872;96384 +996/11678;alpha: endorsement (Mempool: not own slot);0.290684;0.039819;0.330632;194008;96396 +997/11678;alpha: endorsement (One level too old);0.309216;0.020078;0.329399;193112;96140 +998/11678;alpha: endorsement (Two levels too old);0.302761;0.019918;0.322834;192976;96276 +999/11678;alpha: endorsement (One level in the future);0.288652;0.032072;0.320843;193108;96396 +1000/11678;alpha: endorsement (Two levels in the future);0.282531;0.043772;0.326404;192976;96140 +1001/11678;alpha: endorsement (One round too old);0.291667;0.027968;0.319748;194000;96396 +1002/11678;alpha: endorsement (Many rounds too old);0.310994;0.015948;0.327043;194000;96396 +1003/11678;alpha: endorsement (One round in the future);0.307667;0.015982;0.323758;193236;96396 +1004/11678;alpha: endorsement (Many rounds in the future);0.287862;0.043979;0.331943;193748;96392 +1005/11678;alpha: endorsement (Wrong payload hash);0.286547;0.035818;0.322465;193236;96396 +1006/11678;alpha: endorsement (Conflict);0.302676;0.019912;0.322702;194000;96140 +1007/11678;alpha: endorsement (Grandparent conflict);0.304065;0.024005;0.328171;193748;96140 +1008/11678;alpha: endorsement (Future level conflict);0.289338;0.032148;0.321583;193492;96396 +1009/11678;alpha: endorsement (No conflict with preendorsement (mempool));0.302659;0.023894;0.326655;193708;96136 +1010/11678;alpha: endorsement (No conflict with preendorsement (block));0.301809;0.024144;0.326063;193968;96140 +1011/11678;alpha: endorsement (No conflict with various levels and rounds);0.307539;0.015976;0.323625;193580;96140 +1012/11678;alpha: endorsement (sufficient endorsement threshold);0.293483;0.032162;0.325748;194128;96136 +1013/11678;alpha: endorsement (insufficient endorsement threshold);0.303662;0.019977;0.323753;194000;96396 +1014/11678;alpha: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_same_payload_hash_1);0.287692;0.035961;0.323759;192940;96136 +1015/11678;alpha: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_same_payload_hash_2);0.303707;0.023976;0.327781;193580;96140 +1016/11678;alpha: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_different_rounds);0.295732;0.027974;0.32381;193712;96140 +1017/11678;alpha: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_same_preendorsement);0.291197;0.031912;0.323219;193716;96392 +1018/11678;alpha: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_different_validators);0.305408;0.020092;0.325605;193840;96136 +1019/11678;alpha: double preendorsement (AppMode: double_preendorsement_just_after_upgrade);0.295083;0.027913;0.32311;193940;96424 +1020/11678;alpha: double preendorsement (AppMode: double_preendorsement_denunciation_during_slashing_period);0.306605;0.031855;0.338558;194092;96396 +1021/11678;alpha: double preendorsement (AppMode: double_preendorsement_denunciation_after_slashing_period);0.305332;0.036157;500.726;193964;96184 +1022/11678;alpha: double preendorsement (AppMode: valid double preendorsement injected multiple times);0.296199;0.032021;0.328318;194092;96388 +1023/11678;alpha: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_same_payload_hash_1);0.320615;0.008015;0.328734;193196;96396 +1024/11678;alpha: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_same_payload_hash_2);0.288392;0.032043;0.320533;192944;96136 +1025/11678;alpha: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_different_rounds);0.293643;0.036202;0.329951;193068;96296 +1026/11678;alpha: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_same_preendorsement);0.293019;0.028097;0.321226;193200;96396 +1027/11678;alpha: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_different_validators);0.296698;0.028066;0.324878;193072;96396 +1028/11678;alpha: double preendorsement (ConstrMode: double_preendorsement_just_after_upgrade);0.276403;0.04807;0.324575;193324;96400 +1029/11678;alpha: double preendorsement (ConstrMode: double_preendorsement_denunciation_during_slashing_period);0.304455;0.024035;0.328614;193072;96140 +1030/11678;alpha: double preendorsement (ConstrMode: double_preendorsement_denunciation_after_slashing_period);0.316879;0.024066;0.341054;193068;96140 +1031/11678;alpha: double preendorsement (ConstrMode: valid double preendorsement injected multiple times);0.28493;0.044144;0.329177;193076;96316 +1032/11678;alpha: double endorsement (valid double endorsement evidence);0.275011;0.047828;0.322946;194096;96396 +1033/11678;alpha: double endorsement (valid evidence with same (pre)endorsements on different branches);0.301555;0.020103;0.321767;193068;96140 +1034/11678;alpha: double endorsement (valid evidence with same (pre)endorsements on different slots);0.308651;0.020042;0.328792;193964;96140 +1035/11678;alpha: double endorsement (2 valid double endorsement evidences lead to not being able to bake);0.300766;0.020051;0.320918;193076;96392 +1036/11678;alpha: double endorsement (valid double endorsement injected multiple time);0.29681;0.028076;0.325034;194096;96216 +1037/11678;alpha: double endorsement (invalid double endorsement evidence);0.285478;0.044229;0.329829;193964;96308 +1038/11678;alpha: double endorsement (another invalid double endorsement evidence);0.306593;0.027872;0.334565;194092;96392 +1039/11678;alpha: double endorsement (too early double endorsement evidence);0.312457;0.012017;0.324579;193968;96140 +1040/11678;alpha: double endorsement (too late double endorsement evidence);0.302705;0.02788;0.330691;194100;96396 +1041/11678;alpha: double endorsement (different delegates);0.307084;0.015952;0.323138;194008;96396 +1042/11678;alpha: double endorsement (wrong delegate);0.29035;0.031819;0.322321;194000;96152 +1043/11678;alpha: double endorsement (freeze available balance after slashing);0.375981;0.035998;0.412077;194096;96304 +1044/11678;alpha: double baking (valid double baking evidence);0.295441;0.031939;0.327488;193232;96392 +1045/11678;alpha: double baking (payload producer receives the rewards for double baking evidence);0.292582;0.028055;0.320738;193968;96392 +1046/11678;alpha: double baking (same blocks);0.287356;0.031928;0.31938;193232;96288 +1047/11678;alpha: double baking (incorrect order);0.272965;0.04817;0.321279;193108;96140 +1048/11678;alpha: double baking (different levels);0.295753;0.02398;0.31983;193872;96396 +1049/11678;alpha: double baking (too early double baking evidence);0.30247;0.027859;0.330483;192852;96324 +1050/11678;alpha: double baking (too late double baking evidence);0.328906;0.016044;0.34505;193232;96396 +1051/11678;alpha: double baking (just in time double baking evidence);0.287106;0.035888;0.323098;193968;96140 +1052/11678;alpha: double baking (different delegates);0.285707;0.04024;0.326057;193880;96140 +1053/11678;alpha: double baking (wrong delegate);0.294785;0.023901;0.31879;194008;96396 +1054/11678;alpha: double baking (reject double injection of an evidence);0.308783;0.024061;0.332947;194096;96396 +1055/11678;alpha: double baking (double baking followed by double endorsing);0.291094;0.0319;0.323135;193204;96264 +1056/11678;alpha: double baking (double endorsing followed by double baking);0.294276;0.031813;0.326212;193200;96392 +1057/11678;alpha: delegation (bootstrap contracts delegate to themselves);0.290551;0.035821;0.326462;193272;96480 +1058/11678;alpha: delegation (bootstrap contracts can change their delegate (small fee));0.283785;0.035972;0.319867;193840;96392 +1059/11678;alpha: delegation (bootstrap contracts can change their delegate (max fee));0.303817;0.019987;0.323921;193328;96396 +1060/11678;alpha: delegation (bootstrap contracts cannot remove their delegation (small fee));0.28853;0.036066;0.324787;193076;96424 +1061/11678;alpha: delegation (bootstrap contracts cannot remove their delegation (max fee));0.295896;0.023991;0.319987;193076;96112 +1062/11678;alpha: delegation (contracts not registered as delegate can change their delegation (small fee));0.296068;0.024005;0.320188;193584;96140 +1063/11678;alpha: delegation (contracts not registered as delegate can change their delegation (max fee));0.293359;0.024111;0.317609;192944;96140 +1064/11678;alpha: delegation (contracts not registered as delegate can remove their delegation (small fee));0.307434;0.019963;0.327522;193968;96396 +1065/11678;alpha: delegation (contracts not registered as delegate can remove their delegation (max fee));0.286915;0.031879;0.318897;194092;96136 +1066/11678;alpha: delegation (bootstrap keys are already registered as delegate keys (small fee));0.303557;0.023965;0.327634;192940;96144 +1067/11678;alpha: delegation (bootstrap keys are already registered as delegate keys (max fee));0.295641;0.02397;0.319715;193068;96140 +1068/11678;alpha: delegation (bootstrap manager can be delegate (init origination, small fee));0.290903;0.027894;0.318906;192940;96140 +1069/11678;alpha: delegation (bootstrap manager can be delegate (init origination, edge case));0.279476;0.039925;0.319542;193196;96396 +1070/11678;alpha: delegation (bootstrap manager can be delegate (init origination, large fee));0.291837;0.027984;0.319929;193072;96396 +1071/11678;alpha: delegation (originated bootstrap contract can be undelegated);0.290888;0.027893;0.318908;193072;96140 +1072/11678;alpha: delegation (originated bootstrap contract can be delegated);0.27596;0.043993;0.320042;193040;96252 +1073/11678;alpha: delegation (TEST);0.303784;0.015988;0.31987;194000;96140 +1074/11678;alpha: delegation (unregistered delegate key (origination, small fee));0.272519;0.048091;0.32073;192944;96140 +1075/11678;alpha: delegation (unregistered delegate key (origination, edge case fee));0.308031;0.020002;0.328132;193200;96312 +1076/11678;alpha: delegation (unregistered delegate key (origination, large fee));0.307093;0.019941;0.327179;193072;96356 +1077/11678;alpha: delegation (unregistered delegate key (init with delegation, small fee));0.287798;0.035974;0.32389;193068;96396 +1078/11678;alpha: delegation (unregistered delegate key (init with delegation, max fee));0.29173;0.035966;0.327803;194092;96136 +1079/11678;alpha: delegation (unregistered delegate key (switch with delegation, small fee));0.27878;0.043808;0.322728;192996;96216 +1080/11678;alpha: delegation (unregistered delegate key (switch with delegation, max fee));0.296065;0.032007;0.328178;193068;96140 +1081/11678;alpha: delegation (unregistered delegate key - credit/debit 1μꜩ (origination, small fee));0.294833;0.027889;0.322822;193068;96140 +1082/11678;alpha: delegation (unregistered delegate key - credit/debit 1μꜩ (origination, large fee));0.308074;0.016003;0.324188;193452;96152 +1083/11678;alpha: delegation (unregistered delegate key - credit/debit 1μꜩ (init with delegation, small fee));0.290858;0.031874;0.322837;193072;96396 +1084/11678;alpha: delegation (unregistered delegate key - credit/debit 1μꜩ (init with delegation, large fee));0.287281;0.03192;0.319303;193708;96236 +1085/11678;alpha: delegation (unregistered delegate key - credit/debit 1μꜩ (switch with delegation, small fee));0.304053;0.016002;0.320156;193836;96140 +1086/11678;alpha: delegation (unregistered delegate key - credit/debit 1μꜩ (switch with delegation, large fee));0.307984;0.019999;0.3281;193964;96392 +1087/11678;alpha: delegation (unregistered delegate key - credit 1μꜩ (origination, small fee));0.304817;0.012032;0.316957;192944;96136 +1088/11678;alpha: delegation (unregistered delegate key - credit 1μꜩ (origination, edge case fee));0.30851;0.016026;0.324633;193328;96396 +1089/11678;alpha: delegation (unregistered delegate key - credit 1μꜩ (origination, large fee));0.28464;0.04009;0.32484;193200;96344 +1090/11678;alpha: delegation (unregistered delegate key - credit 1μꜩ (init with delegation, small fee));0.305367;0.016071;0.321544;193964;96144 +1091/11678;alpha: delegation (unregistered delegate key - credit 1μꜩ (init with delegation, large fee));0.291365;0.039913;0.331449;194096;96168 +1092/11678;alpha: delegation (unregistered delegate key - credit 1μꜩ (switch with delegation, small fee));0.301636;0.02413;0.325866;193844;96132 +1093/11678;alpha: delegation (unregistered delegate key - credit 1μꜩ (switch with delegation, large fee));0.279108;0.043859;0.323049;194064;96300 +1094/11678;alpha: delegation (unregistered and unrevealed self-delegation (small fee));0.307289;0.019953;0.327353;193840;96136 +1095/11678;alpha: delegation (unregistered and unrevealed self-delegation (large fee));0.299361;0.019957;0.319429;193068;96268 +1096/11678;alpha: delegation (unregistered and revealed self-delegation (small fee));0.29135;0.027937;0.31939;192924;96348 +1097/11678;alpha: delegation (unregistered and revealed self-delegation large fee));0.301927;0.020128;0.322184;193072;96300 +1098/11678;alpha: delegation (unregistered and revealed self-delegation (fee = balance));0.281666;0.040238;0.322009;193840;96212 +1099/11678;alpha: delegation (registered and revealed self-delegation);0.309258;0.016065;0.325435;193844;96396 +1100/11678;alpha: delegation (failed self-delegation: no transaction);0.298282;0.031816;0.330286;193044;96392 +1101/11678;alpha: delegation (failed self-delegation: credit & debit 1μꜩ);0.291682;0.031965;0.323719;193632;96396 +1102/11678;alpha: delegation (empty delegated contract is not deleted: credit 1μꜩ, delegate & debit 1μꜩ);0.288008;0.032;0.32013;193200;96400 +1103/11678;alpha: delegation (valid delegate registration: credit 1μꜩ, self delegation (init with delegation));0.309566;0.020101;0.329815;193512;96332 +1104/11678;alpha: delegation (valid delegate registration: credit 1μꜩ, self delegation (switch with delegation));0.289306;0.036163;0.325632;193836;96140 +1105/11678;alpha: delegation (valid delegate registration: credit 1μꜩ, self delegation, debit 1μꜩ (init with delegation));0.304548;0.024043;0.328695;194224;96312 +1106/11678;alpha: delegation (valid delegate registration: credit 1μꜩ, self delegation, debit 1μꜩ (switch with delegation));0.303573;0.023966;0.327638;193968;96396 +1107/11678;alpha: delegation (double registration);0.300276;0.024022;0.324414;192980;96180 +1108/11678;alpha: delegation (double registration when delegate account is emptied);0.303378;0.015967;0.319478;193836;96396 +1109/11678;alpha: delegation (double registration when delegate account is emptied and then recredited);0.29904;0.02791;0.327054;193840;96140 +1110/11678;alpha: deactivation (simple staking rights);0.28508;0.036137;0.321333;193236;96140 +1111/11678;alpha: deactivation (simple staking rights after baking);0.291206;0.035902;0.327209;193068;96140 +1112/11678;alpha: deactivation (deactivation then bake);0.332484;0.012017;0.344614;194256;96400 +1113/11678;alpha: deactivation (deactivation then self delegation);0.357139;0.020064;0.377323;193236;96300 +1114/11678;alpha: deactivation (deactivation then empty then self delegation);0.350695;0.027896;0.378719;192944;96064 +1115/11678;alpha: deactivation (deactivation then empty then self delegation then recredit);0.33038;0.023882;0.354422;193068;96396 +1116/11678;alpha: deactivation (delegate);0.305121;0.020073;0.325305;194128;96396 +1117/11678;alpha: deactivation (a really deactivated account is not part of the committee);0.334436;0.023888;0.358435;193840;96232 +1118/11678;alpha: consensus key (drain delegate high balance, excluding ck, ck delegates);0.302362;0.035806;0.33827;194092;96396 +1119/11678;alpha: consensus key (drain delegate high balance, excluding ck, ck does not delegate);0.311788;0.015989;0.327937;193968;96140 +1120/11678;alpha: consensus key (drain delegate high balance, with ck, ck delegates);0.312786;0.02406;0.336958;192944;96140 +1121/11678;alpha: consensus key (drain delegate high balance, with ck, ck does not delegate);0.31426;0.023867;0.338228;193068;96208 +1122/11678;alpha: consensus key (drain delegate low balance, excluding ck, ck delegates);0.321153;0.024086;0.345355;194096;96308 +1123/11678;alpha: consensus key (drain delegate low balance, excluding ck, ck does not delegate);0.320015;0.02;0.340128;193072;96268 +1124/11678;alpha: consensus key (drain delegate low balance, with ck, ck delegates);0.319963;0.023997;0.344067;192940;96140 +1125/11678;alpha: consensus key (drain delegate low balance, with ck, ck does not delegate);0.310723;0.035852;0.346686;194096;96304 +1126/11678;alpha: consensus key (empty drain delegate excluding ck);0.301267;0.028118;0.329498;194100;96396 +1127/11678;alpha: consensus key (empty drain delegate with ck);0.301448;0.028135;0.329681;194128;96392 +1128/11678;alpha: consensus key (tz4 consensus key);0.307663;0.015982;0.323756;193108;96136 +1129/11678;alpha: consensus key (endorsement with ck);0.298338;0.031822;0.330289;194132;96304 +1130/11678;alpha: baking (cycle);0.304248;0.028022;0.332377;194160;96136 +1131/11678;alpha: baking (bake_n_cycles for 12 cycles);0.311357;0.039917;0.351396;192980;96396 +1132/11678;alpha: baking (voting_power);0.306602;0.031854;0.338641;194092;96428 +1133/11678;alpha: baking (the fixed baking reward is given after a bake);0.297191;0.02008;0.317389;193712;96140 +1134/11678;alpha: baking (the block producer gets the bonus while the payload producer gets the baking reward );0.292483;0.032052;0.324645;193972;96652 +1135/11678;alpha: baking (a delegate with 8000 tez can bake);0.287083;0.035885;0.32307;193620;96140 +1136/11678;alpha: baking (a delegate with 7999 tez cannot bake);0.302174;0.023855;0.32614;193104;96300 +1137/11678;alpha: baking (committee sampling);0.367724;0.031976;0.399804;203860;107048 +1138/11678;alpha: token movements (transfer - balances);0.295008;0.031892;0.327013;193236;96136 +1139/11678;alpha: token movements (transfer - balance updates);0.292989;0.028094;0.321189;193232;96236 +1140/11678;alpha: token movements (transfer - test allocated);0.304318;0.016016;0.320446;192980;96140 +1141/11678;alpha: token movements (transfer - test transfer to receiver);0.307778;0.019985;0.327892;193072;96140 +1142/11678;alpha: token movements (transfer - test transfer from giver);0.293167;0.028111;0.321383;193200;96300 +1143/11678;alpha: token movements (transfer - test all (givers x receivers));0.294604;0.027868;0.322571;193196;96396 +1144/11678;alpha: token movements (transfer - test from no giver to a receiver);0.301194;0.020079;0.321377;192944;96140 +1145/11678;alpha: token movements (transfer - test from n givers to a receiver);0.285202;0.036152;0.321441;193036;96396 +1146/11678;alpha: storage tests (fold_keys_unaccounted smoke test);0.262395;0.051684;0.314228;192980;96140 +1147/11678;alpha: storage tests (length test);0.28768;0.027968;0.315752;193368;96392 +1148/11678;alpha: storage tests (test empty carbonated data set);0.296861;0.028081;0.325125;193104;96404 +1149/11678;alpha: storage tests (test clear carbonated data set);0.287537;0.031948;0.319597;193108;96304 +1150/11678;alpha: storage description (register single data in existing path);0.292272;0.028026;0.320396;192940;96136 +1151/11678;alpha: storage description (register named subcontext in existing path);0.29215;0.028014;0.320285;193076;96436 +1152/11678;alpha: storage description (register indexed subcontext in existing path);0.296822;0.028077;0.325002;193076;96144 +1153/11678;alpha: storage description (register indexed subcontext with existing indexed subcontext);0.292343;0.032037;0.324508;193072;96140 +1154/11678;alpha: liquidity baking (liquidity baking script hashes);0.288221;0.036027;0.324361;193072;96140 +1155/11678;alpha: liquidity baking (liquidity baking cpmm is originated at the expected address);0.297149;0.024093;0.321357;193072;96140 +1156/11678;alpha: liquidity baking (Init Context);0.292646;0.044097;0.336864;193876;96552 +1157/11678;alpha: liquidity baking (liquidity baking subsidy is correct);0.318187;0.031818;0.350145;193072;96140 +1158/11678;alpha: liquidity baking (liquidity baking toggle vote with 100% of bakers voting Per_block_vote_off baking one block longer);0.591326;0.035959;0.62766;199728;102992 +1159/11678;alpha: liquidity baking (liquidity baking toggle vote with 100% of bakers voting Per_block_vote_off baking two blocks longer);0.551981;0.035998;0.588353;200752;103196 +1160/11678;alpha: liquidity baking (liquidity baking toggle vote with 100% of bakers voting Per_block_vote_off baking 100 blocks longer);1.08328;0.039973;1.12351;200368;103680 +1161/11678;alpha: liquidity baking (liquidity baking toggle vote with 80% of bakers voting Per_block_vote_off baking one block longer);0.678033;0.027919;0.706426;205488;108028 +1162/11678;alpha: liquidity baking (liquidity baking toggle vote with 80% of bakers voting Per_block_vote_off baking two blocks longer);0.647604;0.059963;0.707943;206004;108308 +1163/11678;alpha: liquidity baking (liquidity baking toggle vote with 80% of bakers voting Per_block_vote_off baking 100 blocks longer);0.726106;0.055854;0.782359;205228;108568 +1164/11678;alpha: liquidity baking (liquidity baking toggle vote with 60% of bakers voting Per_block_vote_off baking one block longer);0.957604;0.05586;1.01415;207792;110392 +1165/11678;alpha: liquidity baking (liquidity baking toggle vote with 60% of bakers voting Per_block_vote_off baking two blocks longer);0.973287;0.036047;1.00997;207916;110084 +1166/11678;alpha: liquidity baking (liquidity baking toggle vote with 60% of bakers voting Per_block_vote_off baking 100 blocks longer);2.23068;0.08395;2.31505;207524;110852 +1167/11678;alpha: liquidity baking (liquidity baking does not shut off with toggle vote at 50% and baking 100 blocks longer than sunset level in previous protocols);2.59199;0.031999;2.62439;211888;115308 +1168/11678;alpha: liquidity baking (liquidity baking restart with 100% of bakers voting off, then pass, then on);0.996969;0.048046;1.04574;208304;110532 +1169/11678;alpha: liquidity baking (liquidity baking toggle ema in block metadata is zero with no bakers voting Per_block_vote_off.);0.319348;0.019959;0.339462;192940;96248 +1170/11678;alpha: liquidity baking (liquidity baking toggle ema is equal to the threshold after the subsidy has been stopped by a toggle vote);1.02172;0.044074;1.06597;199984;103192 +1171/11678;alpha: liquidity baking (liquidity baking storage is updated);0.334012;0.028169;0.362283;193076;96140 +1172/11678;alpha: liquidity baking (liquidity baking balance updates);0.328595;0.016029;0.344735;194228;96312 +1173/11678;alpha: liquidity baking (liquidity baking CPMM address in storage matches address in the origination result);0.311119;0.015954;0.327176;192948;96140 +1174/11678;alpha: liquidity baking (liquidity baking CPMM balance in origination result is 100 mutez);0.292701;0.032076;0.32489;192944;96140 +1175/11678;alpha: liquidity baking (liquidity baking LQT contract is originated at expected address);0.299977;0.023998;0.3241;192812;96140 +1176/11678;alpha: liquidity baking (liquidity baking LQT balance in origination result is 0 mutez);0.287094;0.031899;0.319098;193840;96136 +1177/11678;alpha: liquidity baking (liquidity baking originates three contracts when tzBTC does not exist and level indicates we are not on mainnet);0.266674;0.051742;0.318523;193708;96140 +1178/11678;alpha: liquidity baking (liquidity baking originates three contracts when tzBTC does not exist and level indicates we might be on mainnet);0.302656;0.023893;0.326655;194100;96308 +1179/11678;alpha: frozen bonds (frozen bonds - delegate then freeze);0.268914;0.052177;0.321193;193200;96396 +1180/11678;alpha: frozen bonds (frozen bonds - freeze then delegate);0.311403;0.011977;0.323483;193196;96392 +1181/11678;alpha: frozen bonds (frozen bonds - contract remains allocated, user is not a delegate);0.279981;0.039997;0.320076;193200;96396 +1182/11678;alpha: frozen bonds (frozen bonds - contract remains allocated, user is a delegate);0.303082;0.019939;0.323125;192948;96140 +1183/11678;alpha: frozen bonds (frozen bonds - total stake, user is not a delegate);0.292961;0.032105;0.32517;192944;96140 +1184/11678;alpha: frozen bonds (frozen bonds - total stake, user is a delegate);0.286639;0.031848;0.318707;192944;96248 +1185/11678;alpha: frozen bonds (frozen bonds - delegated balance);0.275048;0.047834;0.322989;193236;96396 +1186/11678;alpha: frozen bonds (frozen bonds - test rpcs);0.278636;0.039805;0.31855;193232;96140 +1187/11678;alpha: frozen bonds (delegate, freeze, unfreeze, undelegate);0.291362;0.035921;0.327404;193332;96396 +1188/11678;alpha: frozen bonds (delegate, freeze, undelegate, unfreeze);0.285508;0.036191;0.321799;193204;96392 +1189/11678;alpha: frozen bonds (delegate, double freeze, undelegate, unfreeze);0.299721;0.023977;0.323803;192944;96136 +1190/11678;alpha: frozen bonds (delegate, freeze, redelegate, unfreeze);0.303228;0.015959;0.319289;193068;96144 +1191/11678;alpha: frozen bonds (delegate, freeze, unfreeze, freeze, redelegate);0.303864;0.023989;0.327952;193068;96396 +1192/11678;alpha: frozen bonds (delegate, freeze, slash, undelegate);0.303126;0.019942;0.323201;193200;96308 +1193/11678;alpha: test constants (constants consistency);0.280336;0.036043;0.31649;193108;96140 +1194/11678;alpha: test constants (max_operations_ttl);0.288435;0.036054;0.324621;193232;96392 +1195/11678;alpha: test constants (sc rollup challenge window less than max lookahead);0.303505;0.015973;0.319586;193068;96136 +1196/11678;alpha: test constants (sc rollup max commitment storage cost less than deposit);0.29426;0.023858;0.318311;192940;96136 +1197/11678;alpha: test constants (sc rollup commitment storage size correct);0.286716;0.027875;0.314715;193200;96396 +1198/11678;alpha: test constants (test liquidity_baking_subsidy parameter is 1/16th of total baking rewards);0.298676;0.019911;0.318692;193196;96216 +1199/11678;alpha: adaptive inflation roundtrip (Test init: AI activated, self stake);0.320131;0.016006;0.336256;194220;96392 +1200/11678;alpha: adaptive inflation roundtrip (Test init: AI activated, external stake);0.332431;0.028036;0.360577;194100;96304 +1201/11678;alpha: adaptive inflation roundtrip (Test init: AI disactivated, self stake);0.300609;0.028056;0.328773;193968;96140 +1202/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, self stake, no wait after stake, half unstake, then half unstake);0.371178;0.015964;0.387274;193964;96140 +1203/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, self stake, no wait after stake, half unstake, then unstake rest);0.405521;0.04818;0.453821;193072;96392 +1204/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, self stake, no wait after stake, half unstake);0.387268;0.035932;0.423317;193072;96396 +1205/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, self stake, no wait after stake, full unstake);0.343923;0.027993;0.37204;194220;96304 +1206/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, self stake, wait after stake, half unstake, then half unstake);0.367755;0.019986;0.387881;192940;96308 +1207/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, self stake, wait after stake, half unstake, then unstake rest);0.356964;0.040108;0.397196;193072;96140 +1208/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, self stake, wait after stake, half unstake);0.419637;0.031972;0.451726;192948;96140 +1209/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, self stake, wait after stake, full unstake);0.402938;0.035905;0.438975;194092;96396 +1210/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, external stake, no wait after stake, half unstake, then half unstake);0.358877;0.01595;0.374945;193968;96396 +1211/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, external stake, no wait after stake, half unstake, then unstake rest);0.407476;0.043943;0.451534;192944;96140 +1212/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, external stake, no wait after stake, half unstake);0.340397;0.028032;0.368569;193968;96308 +1213/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, external stake, no wait after stake, full unstake);0.356107;0.016004;0.372235;193964;96236 +1214/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, external stake, wait after stake, half unstake, then half unstake);0.443302;0.027956;0.471386;193072;96308 +1215/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, external stake, wait after stake, half unstake, then unstake rest);0.436302;0.020013;0.45644;193968;96140 +1216/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, external stake, wait after stake, half unstake);0.368537;0.02804;0.396708;193200;96396 +1217/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI activated, external stake, wait after stake, full unstake);0.36836;0.020019;0.388499;193200;96396 +1218/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI disactivated, self stake, no wait after stake, half unstake, then half unstake);0.317619;0.048246;0.365979;193968;96140 +1219/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI disactivated, self stake, no wait after stake, half unstake, then unstake rest);0.329333;0.036146;0.365587;194100;96396 +1220/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI disactivated, self stake, no wait after stake, half unstake);0.327162;0.027928;0.355197;193968;96132 +1221/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI disactivated, self stake, no wait after stake, full unstake);0.33043;0.031848;0.362378;193068;96308 +1222/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI disactivated, self stake, wait after stake, half unstake, then half unstake);0.330775;0.039852;0.370744;194096;96396 +1223/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI disactivated, self stake, wait after stake, half unstake, then unstake rest);0.407623;0.019981;0.427745;194096;96412 +1224/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI disactivated, self stake, wait after stake, half unstake);0.332287;0.032027;0.364429;194096;96304 +1225/11678;alpha: adaptive inflation roundtrip (Test simple roundtrip: AI disactivated, self stake, wait after stake, full unstake);0.349609;0.020092;0.369836;193328;96396 +1226/11678;alpha: adaptive inflation launch (the EMA reaches the vote threshold at the expected level and adaptive inflation launches (very low threshold));0.373835;0.040197;0.414144;193072;96396 +1227/11678;alpha: adaptive inflation launch (the EMA reaches the vote threshold at the expected level and adaptive inflation launches (realistic threshold));40.4146;1.18725;41.6298;228368;132192 +1228/11678;alpha/plugin: fee_needed_to_replace_by_fee: non-manager operations;0.383447;0.015976;0.39954;201772;105120 +1229/11678;alpha/plugin: fee_needed_to_replace_by_fee: hand-picked fee and gas;0.344891;0.024062;0.369059;192940;96304 +1230/11678;alpha/plugin: fee_needed_to_replace_by_fee: random fee, gas, and config;0.531335;0.03995;0.571388;231524;134956 +1231/11678;alpha/plugin: fee_needed_to_overtake: non-manager operations;0.372382;0.024024;0.396503;198832;102188 +1232/11678;alpha/plugin: fee_needed_to_overtake: hand-picked fee and gas;0.3254;0.032138;0.357641;192940;96308 +1233/11678;alpha/plugin: fee_needed_to_overtake: random fee and gas;0.519995;0.039999;0.560075;228288;131500 +1234/11678;alpha: pre_filter (acceptable past op );0.298266;0.019884;0.318257;193232;96332 +1235/11678;alpha: pre_filter (same round, same level );0.297764;0.016095;0.313971;193236;96396 +1236/11678;alpha: pre_filter (same level, different round, acceptable op);0.278291;0.047707;0.326142;193072;96268 +1237/11678;alpha: pre_filter (same level, different round, too far);0.285092;0.032123;0.317317;192944;96156 +1238/11678;alpha: pre_filter (next level, acceptable op);0.295916;0.019994;0.316018;192980;96140 +1239/11678;alpha: pre_filter (next level, too far);0.290729;0.03186;0.322705;193104;96140 +1240/11678;alpha/plugin: conflict_handler: non-manager operations;0.431063;0.03193;0.46309;213588;116956 +1241/11678;alpha/plugin: conflict_handler: manager operations;0.527737;0.027986;0.555989;222288;125648 +1242/11678;mockup_baking: alpha: reaches level 5 (alpha: reaches level 5);0.678346;0.03155;10.1787;216748;120060 +1243/11678;mockup_baking: alpha: cannot progress without new head (alpha: cannot progress without new head);0.375954;0.035995;3.82846;197684;100932 +1244/11678;mockup_baking: alpha: reset delayed pqc (alpha: reset delayed pqc);0.392413;0.040455;4.94043;196652;99692 +1245/11678;mockup_baking: alpha: scenario t1 (alpha: scenario t1);0.383193;0.032268;1.91656;202452;105428 +1246/11678;mockup_baking: alpha: scenario t2 (alpha: scenario t2);0.327728;0.043963;1.91504;197588;100788 +1247/11678;mockup_baking: alpha: scenario t3 (alpha: scenario t3);0.524517;0.036594;5.0021;206160;109348 +1248/11678;mockup_baking: alpha: scenario f1 (alpha: scenario f1);0.546377;0.032139;5.36325;205776;109252 +1249/11678;mockup_baking: alpha: scenario f2 (alpha: scenario f2);0.574558;0.035662;15.431;205776;108960 +1250/11678;mockup_baking: alpha: scenario m1 (alpha: scenario m1);0.891431;0.023984;15.0353;217944;121332 +1251/11678;mockup_baking: alpha: scenario m2 (alpha: scenario m2);0.960072;0.047804;12.923;220756;123952 +1252/11678;mockup_baking: alpha: scenario m3 (alpha: scenario m3);0.803776;0.04039;26.9781;214100;117160 +1253/11678;mockup_baking: alpha: scenario m4 (alpha: scenario m4);0.426392;0.019559;1.05366;205780;109100 +1254/11678;mockup_baking: alpha: scenario m5 (alpha: scenario m5);0.512779;0.044066;2.79132;211540;114972 +1255/11678;mockup_baking: alpha: scenario m6 (alpha: scenario m6);1.04333;0.028198;13.924;220496;123948 +1256/11678;mockup_baking: alpha: scenario m7 (alpha: scenario m7);0.904923;0.052753;11.0366;218836;121984 +1257/11678;mockup_baking: alpha: scenario m8 (alpha: scenario m8);1.11449;0.03621;22.9301;219344;122664 +1258/11678;alpha: [Unit] Slot_framing_protocol.ml (Encoded slot has expected size (V0, 1 rollup));0.295819;0.019987;0.315918;193068;96140 +1259/11678;alpha: [Unit] Slot_framing_protocol.ml (Encoded slot has expected size (V0, 2 rollups));0.295403;0.023951;0.319461;193068;96396 +1260/11678;alpha: [Unit] Slot_framing_protocol.ml (Encoded slot can be decoded (V0, 1 rollup));0.28837;0.028036;0.316505;193072;96396 +1261/11678;alpha: [Unit] Slot_framing_protocol.ml (Encoded slot can be decoded (V0, 2 rollups));0.290262;0.023857;0.314211;192816;96180 +1262/11678;alpha: [Unit] Slot_framing_protocol.ml (Encoding of a slot over maximum size fails (V0));0.296289;0.024023;0.320424;193200;96396 +1263/11678;alpha: [Unit] Slot_framing_protocol.ml (Offsets of messages frames are correct (V0));0.284499;0.032056;0.316658;193076;96140 +1264/11678;alpha: [Unit] Slot_framing_protocol.ml (Slot decoding fails when slot size is too big (V0));0.294711;0.019912;0.314764;193072;96280 +1265/11678;alpha: [Unit] Slot_framing_protocol.ml (Slot decoding fails when first byte has wrong version (V0));0.309406;0.012054;0.321573;193072;96144 +1266/11678;alpha: [Unit] Dac_plugin_registration.ml (Binary encoding roundtrip test between Dac hash and reveal hash);0.297469;0.020099;0.317674;193068;96240 +1267/11678;alpha: [Unit] Dac_plugin_registration.ml (Hex encoding roundtrip test between Dac hash and reveal hash);0.294528;0.0199;0.314545;193200;96140 +1268/11678;alpha: [Unit] Dac_plugin_registration.ml (Hash bytes should be equal between Dac hash and reveal hash);0.291797;0.031977;0.323888;193068;96392 +1269/11678;alpha: [Unit] Dac_plugin_registration.ml (Hash string should be equal between Dac hash and reveal hash);0.279897;0.035986;0.315992;193068;96396 +1270/11678;alpha: [Unit] Dac_plugin_registration.ml (Json encoded hash string should be a hex string);0.295363;0.023948;0.319423;193068;96396 +1271/11678;alpha: [Unit] Dac_pages_encoding.ml (Storing only one hash per page causes serialization to fail (Merkle tree, v0));0.286938;0.031882;0.318942;193072;96396 +1272/11678;alpha: [Unit] Dac_pages_encoding.ml (Serializing empty payload returns an error (Merkle tree, v0));0.300067;0.024005;0.324196;192944;96132 +1273/11678;alpha: [Unit] Dac_pages_encoding.ml (Contents fitting in one page can be retrieved after being saved (Merkle tree, v0));0.300654;0.024052;0.324808;193076;96140 +1274/11678;alpha: [Unit] Dac_pages_encoding.ml (Contents fitting in more pages can be retrieved after being saved - no repeated pages (Merkle tree, V0));0.279108;0.035885;0.31511;193068;96140 +1275/11678;alpha: [Unit] Dac_pages_encoding.ml (Contents fitting in more pages can be retrieved after being saved - repeated pages (Merkle tree, V0));0.310778;0.011953;0.322847;193196;96140 +1276/11678;alpha: [Unit] Dac_pages_encoding.ml (Serialization and deserialization of very long content is correct.);0.288047;0.032005;0.320157;193072;96140 +1277/11678;alpha: [Unit] Dac_pages_encoding.ml (Hashes pages are not larger than expected);0.275784;0.039968;0.315859;192940;96140 +1278/11678;alpha: [Unit] Dac_pages_encoding.ml (Deserialization with integrity check fails if page contents are corrupt);0.300322;0.020021;0.320456;193324;96396 +1279/11678;alpha: [Unit] Dac_pages_encoding.ml (PBT for merkle_tree_V0 serialization/deserialization roundtrip);0.331213;0.035914;0.367239;215984;119092 +1280/11678;alpha: [Unit] Dac_pages_encoding.ml (PBT for [Merkle_tree.Make_buffered] functor via serialization/deserialization roundtrip);3.26462;0.040007;3.30478;398628;302124 +1281/11678;alpha: proxy ([fst (split_key s)] is a prefix of [s]);0.386409;0.035852;0.422363;269964;173352 +1282/11678;alpha: micheline v1 macros (compare expansion);0.293267;0.024104;0.317474;192976;96144 +1283/11678;alpha: micheline v1 macros (if compare expansion);0.278709;0.039815;0.318627;193108;96140 +1284/11678;alpha: micheline v1 macros (if compare expansion: IFCMP);0.276179;0.040026;0.316309;192940;96140 +1285/11678;alpha: micheline v1 macros (fail expansion);0.299334;0.023946;0.323357;193016;96396 +1286/11678;alpha: micheline v1 macros (assert expansion);0.277081;0.040156;0.317345;192976;96140 +1287/11678;alpha: micheline v1 macros (assert if expansion);0.286625;0.031847;0.318572;192976;96140 +1288/11678;alpha: micheline v1 macros (assert cmpif expansion);0.291321;0.023944;0.315368;192980;96140 +1289/11678;alpha: micheline v1 macros (assert none expansion);0.294591;0.019904;0.314606;193232;96396 +1290/11678;alpha: micheline v1 macros (assert some expansion);0.280488;0.036062;0.316652;193104;96396 +1291/11678;alpha: micheline v1 macros (assert left expansion);0.31129;0.00399;0.315384;192980;96140 +1292/11678;alpha: micheline v1 macros (assert right expansion);0.296326;0.020022;0.316474;193240;96352 +1293/11678;alpha: micheline v1 macros (assert some annot expansion);0.291034;0.02392;0.315068;193072;96136 +1294/11678;alpha: micheline v1 macros (assert left annot expansion);0.302603;0.015926;0.318633;193356;96396 +1295/11678;alpha: micheline v1 macros (assert right annot expansion);0.29572;0.027973;0.323801;193072;96136 +1296/11678;alpha: micheline v1 macros (diip expansion);0.292384;0.024031;0.316521;193236;96396 +1297/11678;alpha: micheline v1 macros (duup expansion);0.276752;0.04412;0.320983;193232;96396 +1298/11678;alpha: micheline v1 macros (pair expansion);0.296896;0.024072;0.32107;193240;96392 +1299/11678;alpha: micheline v1 macros (pappaiir expansion);0.311956;0.011998;0.324064;193232;96432 +1300/11678;alpha: micheline v1 macros (unpair expansion);0.277636;0.036213;0.313965;193104;96140 +1301/11678;alpha: micheline v1 macros (caddadr expansion);0.30151;0.02412;0.325735;193108;96396 +1302/11678;alpha: micheline v1 macros (carn and cdrn expansion);0.296272;0.020018;0.316372;193120;96572 +1303/11678;alpha: micheline v1 macros (if_some expansion);0.297428;0.024115;0.321669;192980;96140 +1304/11678;alpha: micheline v1 macros (set_car expansion);0.295748;0.019982;0.315833;193108;96380 +1305/11678;alpha: micheline v1 macros (set_cdr expansion);0.285243;0.028122;0.313467;192852;96140 +1306/11678;alpha: micheline v1 macros (set_cadr expansion);0.282549;0.035816;0.318486;192976;96392 +1307/11678;alpha: micheline v1 macros (set_cdar expansion);0.291447;0.027947;0.319505;193224;96400 +1308/11678;alpha: micheline v1 macros (map_car expansion);0.292237;0.032026;0.324378;193108;96136 +1309/11678;alpha: micheline v1 macros (map_cdr expansion);0.292318;0.024026;0.316483;193368;96396 +1310/11678;alpha: micheline v1 macros (map_caadr expansion);0.280308;0.036039;0.316457;193232;96388 +1311/11678;alpha: micheline v1 macros (map_cdadr expansion);0.298572;0.023885;0.322571;192976;96140 +1312/11678;alpha: micheline v1 macros (fail unexpansion);0.300532;0.020035;0.320685;192980;96396 +1313/11678;alpha: micheline v1 macros (if_right unexpansion);0.290276;0.031811;0.322187;192980;96140 +1314/11678;alpha: micheline v1 macros (if_some unexpansion);0.296965;0.020065;0.317186;192948;96208 +1315/11678;alpha: micheline v1 macros (assert unexpansion);0.284515;0.040072;0.324687;193108;96396 +1316/11678;alpha: micheline v1 macros (assert_if unexpansion);0.287539;0.031948;0.319586;193112;96304 +1317/11678;alpha: micheline v1 macros (assert_cmp_if unexpansion);0.278898;0.039842;0.31885;192984;96136 +1318/11678;alpha: micheline v1 macros (assert_none unexpansion);0.289354;0.024112;0.313574;193104;96300 +1319/11678;alpha: micheline v1 macros (assert_some unexpansion);0.286778;0.031864;0.318749;193360;96396 +1320/11678;alpha: micheline v1 macros (assert_left unexpansion);0.29563;0.019975;0.315704;193108;96140 +1321/11678;alpha: micheline v1 macros (assert_right unexpansion);0.29271;0.028068;0.320887;193360;96392 +1322/11678;alpha: micheline v1 macros (assert_some annot unexpansion);0.30678;0.015936;0.322843;193072;96140 +1323/11678;alpha: micheline v1 macros (assert_left annot unexpansion);0.293784;0.020122;0.314012;192948;96140 +1324/11678;alpha: micheline v1 macros (assert_right annot unexpansion);0.296416;0.020028;0.316543;192944;96140 +1325/11678;alpha: micheline v1 macros (unpair unexpansion);0.306144;0.019879;0.326184;193108;96136 +1326/11678;alpha: micheline v1 macros (pair unexpansion);0.296066;0.024005;0.320176;192984;96140 +1327/11678;alpha: micheline v1 macros (pappaiir unexpansion);0.263418;0.051885;0.315416;192856;96400 +1328/11678;alpha: micheline v1 macros (duup unexpansion);0.286714;0.031857;0.318673;193232;96396 +1329/11678;alpha: micheline v1 macros (caddadr unexpansion);0.289927;0.02416;0.314196;193104;96140 +1330/11678;alpha: micheline v1 macros (carn and cdrn unexpansion);0.299206;0.023936;0.323245;193232;96396 +1331/11678;alpha: micheline v1 macros (set_car unexpansion);0.297758;0.020118;0.318001;193236;96392 +1332/11678;alpha: micheline v1 macros (set_cdr unexpansion);0.294763;0.027883;0.322794;193236;96428 +1333/11678;alpha: micheline v1 macros (set_cdar unexpansion);0.29713;0.024091;0.321321;193112;96140 +1334/11678;alpha: micheline v1 macros (set_cadr unexpansion);0.279125;0.035887;0.315119;193364;96392 +1335/11678;alpha: micheline v1 macros (set_car annot unexpansion);0.295182;0.023933;0.319219;193364;96300 +1336/11678;alpha: micheline v1 macros (set_cdr annot unexpansion);0.299931;0.019995;0.320051;193104;96396 +1337/11678;alpha: micheline v1 macros (map_car unexpansion);0.271885;0.043981;0.315969;193112;96396 +1338/11678;alpha: micheline v1 macros (diip unexpansion);0.286349;0.031816;0.31827;192976;96140 +1339/11678;alpha: micheline v1 macros (diip_duup1 unexpansion);0.276798;0.036104;0.313011;193112;96192 +1340/11678;alpha: micheline v1 macros (diip_duup2 unexpansion);0.295461;0.019963;0.315536;193236;96340 +1341/11678;alpha: client_proto_contracts (test_find_destination);0.274725;0.039815;0.314642;193108;96396 +1342/11678;alpha: Encodings (test_batch_transfer_operation_encoding_roundtrip);0.298289;0.031817;0.330219;198060;101172 +1343/11678;017-PtNairob: Smart rollup types octez conversions: roundtrip (roundtrip address);0.273731;0.040254;0.314087;192944;96136 +1344/11678;017-PtNairob: Smart rollup types octez conversions: roundtrip (roundtrip state_hash);0.288409;0.028039;0.316559;193072;96396 +1345/11678;017-PtNairob: Smart rollup types octez conversions: roundtrip (roundtrip payload_hash);0.287177;0.035897;0.323193;192948;96144 +1346/11678;017-PtNairob: Smart rollup types octez conversions: roundtrip (roundtrip commitment_hash);0.285612;0.032181;0.31789;192944;96140 +1347/11678;017-PtNairob: Smart rollup types octez conversions: roundtrip (roundtrip commitment);0.278226;0.043721;0.322083;192940;96140 +1348/11678;017-PtNairob: Smart rollup types octez conversions: roundtrip (roundtrip stakers);0.390295;0.03186;0.422323;193068;96304 +1349/11678;017-PtNairob: Smart rollup types octez conversions: roundtrip (roundtrip refutation);0.292973;0.040133;0.333204;193068;96396 +1350/11678;017-PtNairob: Smart rollup types octez conversions: roundtrip (roundtrip inbox);0.336886;0.028073;0.365074;198708;101864 +1351/11678;017-PtNairob: Smart rollup types octez conversions: roundtrip (roundtrip dal_slot_index);0.296063;0.020004;0.316172;192944;96140 +1352/11678;017-PtNairob: Smart rollup types octez conversions: roundtrip (roundtrip dal_page_index);0.303867;0.019991;0.323975;193200;96400 +1353/11678;017-PtNairob: Smart rollup types octez conversions: roundtrip (roundtrip dal_slot_header);0.380299;0.024018;0.404425;192944;96140 +1354/11678;017-PtNairob: Smart rollup types octez conversions: roundtrip (roundtrip dal_slot_history);0.894993;0.023973;0.919064;193196;96396 +1355/11678;017-PtNairob: Smart rollup types octez conversions: roundtrip (roundtrip dal_slot_history_cache);1.61609;0.036002;1.65223;214448;117552 +1356/11678;canary: 017-PtNairob: canary (canary arith);0.324013;0.02;0.344265;200020;103784 +1357/11678;canary: 017-PtNairob: canary (canary wasm);0.339722;0.031973;0.371972;203476;105096 +1358/11678;017-PtNairob: zk rollup storage (origination_pending_is_empty);0.80411;0.020002;0.824208;203436;106640 +1359/11678;017-PtNairob: zk rollup storage (pending_list_append);0.804114;0.032004;0.83628;203604;106672 +1360/11678;017-PtNairob: zk rollup storage (pending_list_append errors);0.774865;0.043935;0.818903;203436;106540 +1361/11678;017-PtNairob: zk rollup storage (pending_list_get);0.782749;0.043929;0.826786;203348;106540 +1362/11678;017-PtNairob: zk rollup storage (pending_list_get errors);0.808188;0.016003;0.82429;203568;106548 +1363/11678;017-PtNairob: zk rollup storage (update);0.790143;0.031924;0.822254;203472;106600 +1364/11678;017-PtNairob: zk rollup storage (update errors);0.797325;0.028046;0.825496;203476;106608 +1365/11678;017-PtNairob: time (non-overflowing addition);0.284235;0.032026;0.316379;193232;96464 +1366/11678;017-PtNairob: time (overflowing addition);0.291303;0.031923;0.323335;193112;96136 +1367/11678;017-PtNairob: Tez_repr.ml (Check if predefined values hold expected values);0.285021;0.036129;0.321271;192940;96140 +1368/11678;017-PtNairob: Tez_repr.ml (Tez.substract: basic behaviour);0.292376;0.02403;0.316536;193068;96396 +1369/11678;017-PtNairob: Tez_repr.ml (Tez.substract: underflow case);0.280011;0.032001;0.312116;192944;96396 +1370/11678;017-PtNairob: Tez_repr.ml (Tez.add: basic behaviour (one + zero));0.281098;0.036141;0.317352;192944;96560 +1371/11678;017-PtNairob: Tez_repr.ml (Tez.add: overflow);0.28484;0.032094;0.317034;192980;96136 +1372/11678;017-PtNairob: Tez_repr.ml (Tez.mul: basic case);0.280734;0.032083;0.31292;193236;96356 +1373/11678;017-PtNairob: Tez_repr.ml (Tez.mul: overflow case);0.291448;0.027947;0.319529;192976;96140 +1374/11678;017-PtNairob: Tez_repr.ml (Tez.div: basic case);0.299504;0.015973;0.315581;192980;96140 +1375/11678;017-PtNairob: Tez_repr.ml (Tez.div: division by zero);0.297339;0.028126;0.325576;193104;96304 +1376/11678;017-PtNairob: Tez_repr.ml (Tez.to_mutez: basic assertion);0.285536;0.032173;0.317811;193068;96092 +1377/11678;017-PtNairob: Tez_repr.ml (Tez.of_mutez: of non-negative ints);0.299;0.019933;0.319095;193200;96352 +1378/11678;017-PtNairob: Tez_repr.ml (Tez.of_mutez: of negative ints);0.282257;0.039754;0.322133;193176;96396 +1379/11678;017-PtNairob: Tez_repr.ml (Tez.of_mutez_exn: of non-negative ints);0.293109;0.028106;0.321324;192940;96140 +1380/11678;017-PtNairob: Tez_repr.ml (Tez.of_mutez_exn: of negative ints);0.286723;0.03584;0.322687;193068;96136 +1381/11678;017-PtNairob: Tez_repr.ml (Tez.data_encoding: must encode tezzies correctly);0.308624;0.012024;0.320756;193072;96140 +1382/11678;017-PtNairob: skip list (Skip list: produce paths with `back_path` and check);0.285501;0.032169;0.317807;193076;96396 +1383/11678;017-PtNairob: skip list (Skip list: find cell with `find` and `check`);0.268886;0.048158;0.317179;192944;96112 +1384/11678;017-PtNairob: skip list (Skip list: `find` won't produce invalid value);0.289666;0.032185;0.321954;192944;96140 +1385/11678;017-PtNairob: skip list (Skip list: `back_path` won't produce invalid paths);0.287261;0.027928;0.315287;193072;96304 +1386/11678;017-PtNairob: skip list (Skip list: check if the back_path is minimal);0.28726;0.035907;0.32331;193072;96344 +1387/11678;017-PtNairob: skip list (Skip list: produce paths with `search` and check);0.289231;0.028119;0.317472;192944;96140 +1388/11678;017-PtNairob: skip list (Skip list: `search` won't produce invalid paths);0.272792;0.044128;0.317024;192940;96140 +1389/11678;017-PtNairob: skip list (Skip list: `search` may not produce minimal path);0.287889;0.035986;0.323975;193068;96288 +1390/11678;017-PtNairob: skip list (Skip list: check if the best basis for merkelized skip list is indeed the best);2.20528;0.05203;2.25745;491696;395564 +1391/11678;017-PtNairob: sc rollup wasm (initial state hash for Wasm);0.288364;0.028035;0.316492;193200;96396 +1392/11678;017-PtNairob: sc rollup wasm (size of a rollup metadata);0.292828;0.024068;0.317046;192944;96124 +1393/11678;017-PtNairob: sc rollup wasm (l1 input kind);0.284171;0.040024;0.324296;193232;96300 +1394/11678;017-PtNairob: sc rollup wasm (output proofs);0.300329;0.024026;0.324463;193620;96140 +1395/11678;017-PtNairob: sc rollup wasm (protocol names consistency);0.298611;0.023888;0.322602;193068;96392 +1396/11678;017-PtNairob: sc rollup storage (deposit);0.292777;0.032085;0.324969;192976;96140 +1397/11678;017-PtNairob: sc rollup storage (deposit by underfunded staker);0.292352;0.024028;0.316493;192944;96140 +1398/11678;017-PtNairob: sc rollup storage (deposit then withdraw);0.306907;0.011957;0.318999;193108;96396 +1399/11678;017-PtNairob: sc rollup storage (deposit on two rollups);0.281224;0.036157;0.317477;193068;96140 +1400/11678;017-PtNairob: sc rollup storage (deposit twice fails);0.284035;0.036004;0.320164;193104;96396 +1401/11678;017-PtNairob: sc rollup storage (publish);0.293164;0.028111;0.321411;193056;96420 +1402/11678;017-PtNairob: sc rollup storage (publish twice);0.299565;0.019971;0.319659;193236;96136 +1403/11678;017-PtNairob: sc rollup storage (publish to missing rollup fails);0.293189;0.028114;0.321406;193072;96140 +1404/11678;017-PtNairob: sc rollup storage (publish to wrong inbox level);0.300365;0.020024;0.320493;193200;96396 +1405/11678;017-PtNairob: sc rollup storage (publish existing commitment);0.307252;0.019951;0.327313;193072;96140 +1406/11678;017-PtNairob: sc rollup storage (publish commitment returns level when commitment was first published);0.298712;0.023896;0.322737;193328;96304 +1407/11678;017-PtNairob: sc rollup storage (publish from the future is not allowed);0.296957;0.02809;0.32516;192940;96132 +1408/11678;017-PtNairob: sc rollup storage (publish from behind lcc is allowed);0.292513;0.028049;0.320675;192944;96140 +1409/11678;017-PtNairob: sc rollup storage (publish to any commitment of a branch);0.292735;0.03208;0.324911;193072;96396 +1410/11678;017-PtNairob: sc rollup storage (publish needs a predecessor);0.283668;0.035957;0.319781;193240;96516 +1411/11678;017-PtNairob: sc rollup storage (publish behind or at LCC);0.294765;0.027883;0.322777;192940;96100 +1412/11678;017-PtNairob: sc rollup storage (cement);0.284233;0.036029;0.320391;193108;96304 +1413/11678;017-PtNairob: sc rollup storage (cement to missing rollup fails);0.299204;0.019946;0.319313;192940;96280 +1414/11678;017-PtNairob: sc rollup storage (cement with n stakers);0.299881;0.027988;0.327971;192784;96504 +1415/11678;017-PtNairob: sc rollup storage (cement n commitments);0.290971;0.027901;0.318971;193108;96396 +1416/11678;017-PtNairob: sc rollup storage (cement clean commitment(s));0.284353;0.036044;0.320507;193068;96140 +1417/11678;017-PtNairob: sc rollup storage (cement conflicted branches);0.308965;0.01605;0.325127;192940;96140 +1418/11678;017-PtNairob: sc rollup storage (withdraw to missing rollup fails);0.294363;0.027845;0.322311;193196;96304 +1419/11678;017-PtNairob: sc rollup storage (withdraw when not staked fails);0.275035;0.051818;0.326957;193200;96396 +1420/11678;017-PtNairob: sc rollup storage (withdraw twice fails);0.293212;0.032132;0.325469;193232;96396 +1421/11678;017-PtNairob: sc rollup storage (withdraw fails when staked after LCC);0.289282;0.032142;0.321527;192940;96140 +1422/11678;017-PtNairob: sc rollup storage (withdraw when staked before or at LCC);0.289416;0.032157;0.321738;193328;96444 +1423/11678;017-PtNairob: sc rollup storage (remove staker);0.287547;0.035943;0.323598;193236;96396 +1424/11678;017-PtNairob: sc rollup storage (staker come back after being slashed);0.292902;0.024074;0.317084;193068;96140 +1425/11678;017-PtNairob: sc rollup storage (cement fails when too recent);0.295657;0.019976;0.315739;193068;96140 +1426/11678;017-PtNairob: sc rollup storage (cement deadline uses oldest add time);0.29462;0.027869;0.322596;193200;96392 +1427/11678;017-PtNairob: sc rollup storage (last cemented commitment hash and level returns correct information);0.303724;0.015985;0.319806;193072;96392 +1428/11678;017-PtNairob: sc rollup storage (cement with two stakers);0.297791;0.024145;0.322047;193072;96396 +1429/11678;017-PtNairob: sc rollup storage (no cement on conflict);0.300608;0.016032;0.316755;192976;96256 +1430/11678;017-PtNairob: sc rollup storage (finds conflict point at LCC);0.299385;0.027942;0.327434;192944;96136 +1431/11678;017-PtNairob: sc rollup storage (finds conflict point beneath LCC);0.288627;0.032069;0.320796;193072;96140 +1432/11678;017-PtNairob: sc rollup storage (finds first point of disagreement when as point of conflict);0.285702;0.032191;0.317998;193072;96244 +1433/11678;017-PtNairob: sc rollup storage (finds no conflict point with two stakers, one of which is at LCC (PVM in preboot));0.293619;0.036199;0.329919;192948;96208 +1434/11678;017-PtNairob: sc rollup storage (finds no conflict point when both stakers commit to LCC (PVM in preboot));0.295237;0.023938;0.319277;193072;96140 +1435/11678;017-PtNairob: sc rollup storage (finds no conflict point with two stakers, one of which is at LCC);0.295774;0.023981;0.319856;192820;96140 +1436/11678;017-PtNairob: sc rollup storage (finds no conflict point when both stakers commit to LCC);0.291723;0.031969;0.323831;192940;96140 +1437/11678;017-PtNairob: sc rollup storage (test_conflict_point_computation_fits_in_gas_limit);0.523621;0.031976;0.555704;209328;112432 +1438/11678;017-PtNairob: sc rollup storage (can remove staker 1);0.291933;0.023994;0.316031;193236;96328 +1439/11678;017-PtNairob: sc rollup storage (can remove staker 2);0.292203;0.028019;0.320337;193108;96396 +1440/11678;017-PtNairob: sc rollup storage (removed staker can not withdraw);0.283335;0.035915;0.319349;192948;96124 +1441/11678;017-PtNairob: sc rollup storage (fetching last final commitment of missing rollup fails);0.288888;0.036111;0.325112;193124;96652 +1442/11678;017-PtNairob: sc rollup storage (fetching last final commitment hash and level of missing rollup fails);0.30006;0.020004;0.320168;193196;96140 +1443/11678;017-PtNairob: sc rollup storage (fetching commitment of missing rollup fails);0.293051;0.032115;0.325275;192940;96140 +1444/11678;017-PtNairob: sc rollup storage (fetching non-existing commitment of rollup fails);0.272735;0.048129;0.320976;193072;96136 +1445/11678;017-PtNairob: sc rollup storage (initial level of missing rollup fails);0.301727;0.024138;0.326024;193068;96124 +1446/11678;017-PtNairob: sc rollup storage (Refinement operations are commutative (point of conflict));0.295685;0.031965;0.327762;192944;96136 +1447/11678;017-PtNairob: sc rollup storage (Refinement operations are commutative (cement));0.305097;0.016057;0.321259;193072;96392 +1448/11678;017-PtNairob: sc rollup storage (Record messages in storage outbox);0.291224;0.035904;0.327231;193332;96140 +1449/11678;017-PtNairob: sc rollup storage (Record messages in storage outbox limits);0.300456;0.02003;0.320589;193196;96392 +1450/11678;017-PtNairob: sc rollup storage (Record messages size diffs);0.286809;0.035851;0.322764;193200;96396 +1451/11678;017-PtNairob: sc rollup storage (Originating a rollup creates a genesis commitment);0.29921;0.027926;0.32725;193072;96396 +1452/11678;017-PtNairob: sc rollup storage (Getting cemented commitments with levels of missing rollups fails);0.294803;0.027886;0.322847;193064;96524 +1453/11678;017-PtNairob: sc rollup storage (Getting cemented commitments returns multiple cemented commitments);0.304335;0.016017;0.320457;193068;96140 +1454/11678;017-PtNairob: sc rollup storage (All cemented commitments are ancestors of last cemented commitment);0.304866;0.024068;0.329038;193200;96136 +1455/11678;017-PtNairob: sc rollup storage (Unrelated commitments are classified as such);0.272262;0.05205;0.324415;193068;96292 +1456/11678;017-PtNairob: sc rollup storage (fresh index is correcly incremented);0.305137;0.024089;0.32936;192948;96140 +1457/11678;017-PtNairob: sc rollup storage (initial_level returns correct level);0.301139;0.028106;0.329344;193200;96244 +1458/11678;017-PtNairob: sc rollup storage (rollup starts in pre-boot state);0.259693;0.055934;0.315734;192944;96140 +1459/11678;017-PtNairob: sc rollup storage (kind of missing rollup is None);0.282846;0.043821;0.326769;193096;96296 +1460/11678;017-PtNairob: sc rollup management protocol (Encode/decode internal inbox message transfer);0.296685;0.028064;0.324903;193068;96164 +1461/11678;017-PtNairob: sc rollup management protocol (Encode/decode internal inbox message start of level);0.291846;0.023987;0.31594;192948;96248 +1462/11678;017-PtNairob: sc rollup management protocol (Encode/decode internal inbox message end of level);0.305655;0.012065;0.317823;193072;96140 +1463/11678;017-PtNairob: sc rollup management protocol (Encode/decode external inbox message);0.297704;0.020115;0.31793;193068;96140 +1464/11678;017-PtNairob: sc rollup management protocol (Encode/decode outbox message);0.30354;0.019969;0.323654;193156;96244 +1465/11678;017-PtNairob: sc rollup inbox (Add payloads to merkelized payload hashes then retrieve them from history.);0.366096;0.011937;0.378147;193584;96816 +1466/11678;017-PtNairob: sc rollup inbox (Produce a merkelized payload hashes proof and verify its validity.);0.330622;0.0239;0.354638;192944;96136 +1467/11678;017-PtNairob: sc rollup inbox (Empty merkelized payload hashes proof fails.);0.290649;0.02787;0.318623;193072;96140 +1468/11678;017-PtNairob: sc rollup inbox (Invalid merkelized payload hashes proof fails.);0.462219;0.035861;0.498262;206128;109316 +1469/11678;017-PtNairob: sc rollup inbox (produce inclusion proof and verifies it.);0.855112;0.031966;0.887181;255420;158512 +1470/11678;017-PtNairob: sc rollup inbox (negative test of inclusion proof.);0.840796;0.03203;0.872951;254824;158088 +1471/11678;017-PtNairob: sc rollup inbox (verify empty inclusion proof fails.);0.339947;0.019996;0.360133;193844;96948 +1472/11678;017-PtNairob: sc rollup inbox (produce payloads proof and verifies it.);0.354146;0.035812;0.390066;196532;99632 +1473/11678;017-PtNairob: sc rollup inbox (test to verify a proof not using the correct current level proof.);0.36028;0.028021;0.388412;198316;101680 +1474/11678;017-PtNairob: sc rollup inbox (test to verify a proof without the payload.);0.341394;0.048196;0.38969;197552;100660 +1475/11678;017-PtNairob: sc rollup inbox (test to verify a proof with payload when none is expected.);0.337347;0.044176;0.38163;196788;99884 +1476/11678;017-PtNairob: sc rollup inbox (test to verify a proof with a proof for another payload.);0.36703;0.019947;0.387079;197680;100912 +1477/11678;017-PtNairob: sc rollup inbox (test to verify a proof with another payload.);0.347309;0.035928;0.38335;196780;99888 +1478/11678;017-PtNairob: sc rollup inbox (test to verify a proof with a payload with an incorrect index.);0.342494;0.039824;0.382447;196784;99884 +1479/11678;017-PtNairob: sc rollup inbox (test to verify a proof with an out of bound index.);0.354626;0.035861;0.390598;199728;102968 +1480/11678;017-PtNairob: sc rollup inbox (produce inbox proof and verifies it.);0.87127;0.031973;0.903345;252260;155436 +1481/11678;017-PtNairob: sc rollup inbox (negative test of inbox proof.);0.901191;0.036047;0.937346;258532;161840 +1482/11678;017-PtNairob: sc rollup inbox (messages are correctly added in payloads history);0.370514;0.015936;0.386594;199348;102664 +1483/11678;017-PtNairob: sc rollup inbox (Checking inboxes history length);0.291955;0.027995;0.320071;193200;96396 +1484/11678;017-PtNairob: sc rollup inbox (Checking inboxes history content and order);0.304309;0.02002;0.324447;192940;96140 +1485/11678;017-PtNairob: sc rollup inbox (Checking inclusion proofs validity depending on history capacity);0.307514;0.019968;0.327583;193068;96280 +1486/11678;017-PtNairob: sc rollup inbox (Checking results of add_messages when histories have different capacities);0.303227;0.019949;0.323277;192944;96140 +1487/11678;017-PtNairob: sc rollup game (A badly distributed dissection is an invalid move.);0.297328;0.024107;0.321548;193332;96388 +1488/11678;017-PtNairob: sc rollup game (A single game move with a valid dissection);0.300859;0.02808;0.32907;192944;96396 +1489/11678;017-PtNairob: sc rollup game (Invalid serialized inbox proof is rejected.);0.296857;0.020057;0.317084;193072;96440 +1490/11678;017-PtNairob: sc rollup game (start a game with invalid commitment hash (swap commitment).);0.300594;0.016031;0.31676;193076;96320 +1491/11678;017-PtNairob: sc rollup game (start a game with invalid commitment hash (op from outsider).);0.300021;0.020001;0.320122;192944;96396 +1492/11678;017-PtNairob: sc rollup game (start a game with invalid commitment hash (opponent is not in game).);0.286904;0.031878;0.318883;193196;96396 +1493/11678;017-PtNairob: sc rollup game (start a game with commitment hash that are not the first conflict.);0.300822;0.020054;0.320984;193068;96140 +1494/11678;017-PtNairob: sc rollup arith (PreBoot);0.279207;0.039886;0.319204;193232;96396 +1495/11678;017-PtNairob: sc rollup arith (Boot);0.287138;0.035892;0.323146;192980;96116 +1496/11678;017-PtNairob: sc rollup arith (Metadata);0.279664;0.035956;0.315746;193108;96140 +1497/11678;017-PtNairob: sc rollup arith (Input message);0.283578;0.035946;0.31963;193112;96396 +1498/11678;017-PtNairob: sc rollup arith (Parsing message);0.280807;0.036103;0.317012;193104;96140 +1499/11678;017-PtNairob: sc rollup arith (Evaluating message);0.299861;0.027987;0.327976;193748;96816 +1500/11678;017-PtNairob: sc rollup arith (Valid output messages);0.30107;0.024085;0.325254;193364;96812 +1501/11678;017-PtNairob: sc rollup arith (Invalid output messages);0.304909;0.020059;0.325053;193016;96280 +1502/11678;017-PtNairob: sc rollup arith (Invalid outbox level);0.290403;0.027846;0.318347;193112;96392 +1503/11678;017-PtNairob: sc rollup arith (Initial state hash for Arith);0.280799;0.036102;0.317024;192924;96284 +1504/11678;017-PtNairob: sc rollup arith (Filter internal message);0.303625;0.019975;0.32373;193104;96396 +1505/11678;017-PtNairob: saturation arithmetic (Addition);0.291237;0.023937;0.315273;193236;96396 +1506/11678;017-PtNairob: saturation arithmetic (Subtraction);0.293381;0.024113;0.317611;192984;96140 +1507/11678;017-PtNairob: saturation arithmetic (Multiplication);0.272397;0.044064;0.316571;193104;96396 +1508/11678;017-PtNairob: saturation arithmetic (Multiplication (fast version));0.292536;0.024044;0.316703;193072;96140 +1509/11678;017-PtNairob: saturation arithmetic (Shift left);0.30582;0.016095;0.322025;193236;96140 +1510/11678;017-PtNairob: saturation arithmetic (Scale fast);0.302939;0.01993;0.322996;193108;96140 +1511/11678;017-PtNairob: saturation arithmetic (Square root);0.294546;0.019901;0.314562;193104;96304 +1512/11678;017-PtNairob: saturation arithmetic (Conversion from Z);0.310983;0.007973;0.319066;192980;96140 +1513/11678;017-PtNairob: saturation arithmetic (Encoding through z);0.272745;0.040109;0.312975;193076;96140 +1514/11678;017-PtNairob: saturation arithmetic (Encoding through n);0.276116;0.044018;0.320233;193200;96396 +1515/11678;017-PtNairob: round (level_offset_of_round);0.273643;0.040241;0.313996;193108;96396 +1516/11678;017-PtNairob: round (Round_duration);0.27549;0.039926;0.315525;192980;96136 +1517/11678;017-PtNairob: round (round_of_timestamp);0.300301;0.024024;0.324433;193236;96392 +1518/11678;017-PtNairob: round (round_of_timestamp_perf);0.421815;0.012051;0.433971;192976;96140 +1519/11678;017-PtNairob: round (timestamp_of_round_perf);0.296634;0.032068;0.328901;193108;96312 +1520/11678;017-PtNairob: round (level offset too high error is triggered);0.30809;0.016004;0.324276;193068;96400 +1521/11678;017-PtNairob: round (round_of_ts (ts_of_round r) = r);0.291988;0.027998;0.320089;193108;96140 +1522/11678;017-PtNairob: round (ts_of_round (round_of_ts ts) <= ts);0.95322;0.01602;0.969356;193196;96388 +1523/11678;017-PtNairob: round (round_and_offset is correct);0.296212;0.02802;0.324381;192976;96188 +1524/11678;017-PtNairob: receipt (receipt - encoding);0.303198;0.015957;0.319259;193108;96648 +1525/11678;017-PtNairob: qty (tez-literals);0.29283;0.024068;0.31703;192980;96140 +1526/11678;017-PtNairob: qty (rnd-tez-literals);0.371646;0.023977;0.395732;192980;96140 +1527/11678;017-PtNairob: Operation_repr.ml (of_list: single element input list);0.296313;0.020021;0.316442;193076;96200 +1528/11678;017-PtNairob: Operation_repr.ml (of_list: multiple element input list);0.290807;0.027885;0.3188;192944;96140 +1529/11678;017-PtNairob: Operation_repr.ml (of_list: empty input list);0.297973;0.020133;0.318212;193068;96392 +1530/11678;017-PtNairob: Operation_repr.ml (protocol_data_encoding: only signature prefix);0.285656;0.032186;0.317949;192816;96136 +1531/11678;017-PtNairob: Operation_repr.ml (protocol_data_encoding: empty list);0.288536;0.028052;0.3167;192940;96140 +1532/11678;017-PtNairob: Operation_repr.ml (protocol_data_encoding: multiple signature prefix);0.302681;0.019913;0.322701;193324;96396 +1533/11678;017-PtNairob: Operation_repr.ml (protocol_data_encoding: signature prefix not final);0.297689;0.016091;0.313887;193076;96136 +1534/11678;017-PtNairob: Operation_repr.ml (protocol_data_encoding: multiple non manager);0.300902;0.016048;0.317028;193252;96268 +1535/11678;017-PtNairob: merkle list (compute);0.307329;0.011973;0.319411;193240;96392 +1536/11678;017-PtNairob: merkle list (snoc);0.299627;0.01598;0.315759;193104;96220 +1537/11678;017-PtNairob: merkle list (snoc_non_tr);0.291092;0.0319;0.323095;193112;96396 +1538/11678;017-PtNairob: merkle list (compute_path);0.287444;0.027945;0.315497;193108;96560 +1539/11678;017-PtNairob: merkle list (check_path);0.294998;0.027905;0.323;193112;96140 +1540/11678;017-PtNairob: merkle list (path_encoding);0.291198;0.027923;0.319275;193104;96224 +1541/11678;017-PtNairob: merkle list (compute_path_negative_pos);0.286341;0.027838;0.314288;193104;96140 +1542/11678;017-PtNairob: merkle list (compute_path_out_of_bounds);0.286663;0.02787;0.314644;193112;96140 +1543/11678;017-PtNairob: merkle list (check_path_negative_pos);0.305347;0.01607;0.321528;192980;96300 +1544/11678;017-PtNairob: merkle list (check_path_out_of_bounds);0.283184;0.031908;0.315262;193232;96384 +1545/11678;017-PtNairob: merkle list (compute_path_out_of_bounds_full);0.299213;0.019947;0.319263;192940;96136 +1546/11678;017-PtNairob: merkle list (check_path_wrong_pos);0.294715;0.023895;0.318718;193232;96140 +1547/11678;017-PtNairob: merkle list (check_invalidated_path);0.29066;0.027871;0.318625;193112;96140 +1548/11678;017-PtNairob: local contexts (Local.remove_existing: check whether local access has the same behavior);0.283355;0.035918;0.319381;193068;96396 +1549/11678;017-PtNairob: liquidity baking (EMA does not change when vote is Pass);0.287834;0.027983;0.315975;193068;96112 +1550/11678;017-PtNairob: liquidity baking (EMA remains in bounds when vote is Off);0.275092;0.043855;0.3191;192940;96144 +1551/11678;017-PtNairob: liquidity baking (EMA increases when vote is Off);0.288182;0.028017;0.31636;193276;96504 +1552/11678;017-PtNairob: liquidity baking (EMA does not increase too much when vote is Off);0.299057;0.023924;0.323115;192944;96140 +1553/11678;017-PtNairob: liquidity baking (EMA remains in bounds when vote is On);0.29058;0.023883;0.314567;193204;96396 +1554/11678;017-PtNairob: liquidity baking (EMA decreases when vote is On);0.281263;0.032144;0.313549;192940;96156 +1555/11678;017-PtNairob: liquidity baking (EMA does not decrease too much when vote is On);0.282562;0.035817;0.318578;192944;96160 +1556/11678;017-PtNairob: liquidity baking (EMA goes from 0 to one billion in 1386 Off votes);0.278832;0.043816;0.322773;192944;96140 +1557/11678;017-PtNairob: liquidity baking (EMA goes from two billions to one billion in 1386 On votes);0.296263;0.020017;0.316398;193072;96396 +1558/11678;017-PtNairob: liquidity baking (voting On and Off have symmetric effects on the EMA);0.297125;0.028106;0.325333;193068;96396 +1559/11678;017-PtNairob: level module (create_cycle_eras);0.288633;0.028061;0.316809;193236;96396 +1560/11678;017-PtNairob: level module (level_from_raw);0.270746;0.047778;0.318641;193240;96340 +1561/11678;017-PtNairob: level module (first_level_in_cycle);0.300258;0.02402;0.324396;193108;96396 +1562/11678;017-PtNairob: Global_constants_storage.ml (get on a nonexistent global constants fails);0.303217;0.043886;0.347222;212912;116012 +1563/11678;017-PtNairob: Global_constants_storage.ml (get always returned the registered constant);0.304189;0.044027;0.348331;213552;116784 +1564/11678;017-PtNairob: Global_constants_storage.ml (register: fails with unregistered references);0.293644;0.028157;0.321928;193328;96220 +1565/11678;017-PtNairob: Global_constants_storage.ml (register: fails with unregistered references pbt);0.364545;0.048071;0.412723;255316;158508 +1566/11678;017-PtNairob: Global_constants_storage.ml (register: fails if expression too deep);0.295669;0.023973;0.319742;192948;96108 +1567/11678;017-PtNairob: Global_constants_storage.ml (expand on an expression containing a nonexistent global constant fails);0.312712;0.028063;0.340884;213292;116620 +1568/11678;017-PtNairob: Global_constants_storage.ml (expand: no constants case);0.296151;0.02001;0.31626;193072;96144 +1569/11678;017-PtNairob: Global_constants_storage.ml (register and expand are orthogonal);0.327455;0.043927;0.371504;230116;133416 +1570/11678;017-PtNairob: Global_constants_storage.ml (expand: deep constants);2.26412;0.028001;2.29224;216748;119852 +1571/11678;017-PtNairob: Global_constants_storage.ml (expand: ill formed constants are rejected);0.268103;0.05202;0.320226;193204;96400 +1572/11678;017-PtNairob: Global_constants_storage.ml (expand: use of 'constant (constant ...)' is rejected);0.305426;0.016075;0.321642;193072;96396 +1573/11678;017-PtNairob: Global_constants_storage.ml (expand: data);0.29029;0.031812;0.322205;193068;96292 +1574/11678;017-PtNairob: Global_constants_storage.ml (expand: types);0.304131;0.016006;0.320243;193072;96140 +1575/11678;017-PtNairob: Global_constants_storage.ml (expand: instr);0.29262;0.028059;0.320792;193072;96396 +1576/11678;017-PtNairob: Global_constants_storage.ml (expand: random);0.300639;0.024051;0.324811;194356;97588 +1577/11678;017-PtNairob: Global_constants_storage.ml (expand is idempotent);0.304299;0.024023;0.328459;196784;100096 +1578/11678;017-PtNairob: Global_constants_storage.ml (bottom_up_fold_cps: does not stack overflow);0.425371;0.064207;0.489679;364144;267564 +1579/11678;017-PtNairob: gas monad (exhaustion);0.295163;0.02792;0.323195;192980;96420 +1580/11678;017-PtNairob: gas monad (exhaustion before error);0.290503;0.027856;0.31848;193232;96140 +1581/11678;017-PtNairob: gas monad (successful result with remaining gas);0.279984;0.039997;0.32009;193068;96336 +1582/11678;017-PtNairob: gas monad (successful result with spare gas);0.26949;0.048266;0.317859;193068;96400 +1583/11678;017-PtNairob: gas monad (inner error);0.308177;0.012006;0.320297;193236;96140 +1584/11678;017-PtNairob: gas monad (unlimited);0.270634;0.047758;0.318521;192976;96136 +1585/11678;017-PtNairob: gas monad (syntax module);0.29217;0.028016;0.320332;192980;96288 +1586/11678;017-PtNairob: fixed point computation (Integral tests (3 decimals));0.282783;0.043811;0.326789;192940;96060 +1587/11678;017-PtNairob: fixed point computation (FP tests (3 decimals));0.299245;0.015959;0.31531;192948;96072 +1588/11678;017-PtNairob: fixed point computation (FP pp tests (3 decimals));0.309706;0.012066;0.321883;192944;96140 +1589/11678;017-PtNairob: fitness (from/to raw fitness is identity);0.296667;0.028063;0.324839;193112;96396 +1590/11678;017-PtNairob: fitness (locked round is smaller than round);0.30111;0.016059;0.31727;192944;96140 +1591/11678;017-PtNairob: fitness (compare fitness = compare raw_fitness);0.285494;0.028147;0.313739;193072;96396 +1592/11678;017-PtNairob: Destination_repr.ml (Json decoding compat implicit contract (null address));0.287389;0.02794;0.315436;193200;96208 +1593/11678;017-PtNairob: Destination_repr.ml (Json decoding compat smart contract (liquidity baking dex));0.281859;0.036239;0.318238;193068;96080 +1594/11678;017-PtNairob: Destination_repr.ml (Binary Contract_repr to Destination_repr (null address));0.282349;0.03579;0.318244;193072;96140 +1595/11678;017-PtNairob: Destination_repr.ml (Binary Contract_repr to Destination_repr (liquidity baking dex));0.286967;0.027899;0.314975;193076;96140 +1596/11678;017-PtNairob: Destination_repr.ml (Binary Destination_repr to Contract_repr (null address));0.285524;0.02815;0.313761;193200;96396 +1597/11678;017-PtNairob: Destination_repr.ml (Binary Destination_repr to Contract_repr (liquidity baking dex));0.29288;0.024072;0.317054;193072;96392 +1598/11678;017-PtNairob: Destination_repr.ml (Json encoding compatibility Contract_repr to Destination_repr with dummy contracts);0.291144;0.023929;0.315182;193328;96392 +1599/11678;017-PtNairob: Destination_repr.ml (Binary encoding compatibility Contract_repr to Destination_repr with dummy contracts);0.29768;0.01609;0.313876;193072;96140 +1600/11678;017-PtNairob: Destination_repr.ml (Comparison of destinations);0.281518;0.032173;0.313801;193068;96396 +1601/11678;017-PtNairob: dal slot proof ([test] add a slot on top of genesis that breaks ordering);0.439068;0.015966;0.455127;193204;96304 +1602/11678;017-PtNairob: dal slot proof ([test] add a slot on top of genesis that satisfies ordering (1/2));0.419795;0.043978;0.463903;193328;96248 +1603/11678;017-PtNairob: dal slot proof ([test] add a slot on top of genesis that satisfies ordering (2/2));0.432628;0.02804;0.460787;193200;96564 +1604/11678;017-PtNairob: dal slot proof ([test] add two slots on top of genesis that satisfy ordering);0.44349;0.019977;0.463576;193324;96372 +1605/11678;017-PtNairob: dal slot proof ([test] Confirmed page on genesis);0.300955;0.01605;0.317143;193072;96136 +1606/11678;017-PtNairob: dal slot proof ([test] Unconfirmed page on genesis);0.295092;0.023926;0.31912;193072;96396 +1607/11678;017-PtNairob: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with good data);0.443651;0.023981;0.467744;193448;96820 +1608/11678;017-PtNairob: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with no data);0.433284;0.028083;0.461474;193332;96556 +1609/11678;017-PtNairob: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with bad proof);0.43264;0.036053;0.468807;193456;96568 +1610/11678;017-PtNairob: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with bad data);0.428448;0.036037;0.464579;193228;96416 +1611/11678;017-PtNairob: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with too short data);0.437003;0.024055;0.461157;193580;96564 +1612/11678;017-PtNairob: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with too long data);0.431192;0.027947;0.459238;193328;96520 +1613/11678;017-PtNairob: dal slot proof ([test] Confirmed slot on top of genesis: unconfirmed page with good data);0.410862;0.051856;0.462832;193204;96304 +1614/11678;017-PtNairob: dal slot proof ([test] Confirmed slot on top of genesis: unconfirmed page with no data);0.436079;0.024004;0.460177;193324;96560 +1615/11678;017-PtNairob: dal slot proof ([test] Confirmed slot on top of genesis: unconfirmed page with bad proof);0.44163;0.028103;0.469853;193452;96556 +1616/11678;017-PtNairob: dal slot proof ([test] Confirmed slot on top of genesis: unconfirmed page with bad data (altered));0.435961;0.027997;0.464067;193460;96548 +1617/11678;017-PtNairob: Contract_repr.ml (Contract_repr.to_b58check: must correctly stringify, b58check encoded, an implicit contract);0.295203;0.023935;0.31925;193072;96140 +1618/11678;017-PtNairob: Contract_repr.ml (Contract_repr.originated_contract: must correctly create an originated contract);0.296051;0.024004;0.32016;193200;96300 +1619/11678;017-PtNairob: Contract_repr.ml (Contract_repr.to_b58check: must correctly stringify, b58check encoded, an originated contract);0.273126;0.040165;0.313397;193068;96140 +1620/11678;017-PtNairob: Delegate consensus key (consensus_key_storage);0.276147;0.044023;0.320291;193200;96392 +1621/11678;017-PtNairob: Bond_id_repr.ml (Deserializing sc bond ids succeeds only when id is valid);0.295683;0.019978;0.31577;193076;96396 +1622/11678;017-PtNairob: Bond_id_repr.ml (Deserializing invalid bond ids fails);0.284016;0.036002;0.320122;192944;96140 +1623/11678;017-PtNairob: Bond_id_repr.ml (Deserialize/serialize roundtrip);0.276887;0.040128;0.317117;192944;96140 +1624/11678;017_PtNairob: accounts;0.303475;0.015972;0.321033;192980;96320 +1625/11678;017_PtNairob: append;0.299641;0.019976;0.321131;193104;96140 +1626/11678;017_PtNairob: auction;0.296585;0.024047;0.322199;193236;96304 +1627/11678;017_PtNairob: big_map_union;0.312779;0.016039;0.33037;193232;96300 +1628/11678;017_PtNairob: check_signature;0.289872;0.031766;0.323223;192980;96140 +1629/11678;017_PtNairob: comb-get;0.287997;0.031999;0.321503;192980;96144 +1630/11678;017_PtNairob: comb-set;0.288596;0.032066;0.321029;193108;96140 +1631/11678;017_PtNairob: concat;0.302351;0.015913;0.31978;192976;96136 +1632/11678;017_PtNairob: conditionals;0.286385;0.03182;0.318639;193240;96304 +1633/11678;017_PtNairob: cps_fact;0.285183;0.032133;0.318842;192844;96304 +1634/11678;017_PtNairob: dign;0.297035;0.020069;0.318721;193112;96396 +1635/11678;017_PtNairob: dipn;0.282939;0.035865;0.320335;193112;96304 +1636/11678;017_PtNairob: dugn;0.2984;0.023872;0.323785;193108;96392 +1637/11678;017_PtNairob: ediv;0.293317;0.028126;0.32186;192980;96336 +1638/11678;017_PtNairob: faucet;0.30208;0.024166;0.32782;193240;96396 +1639/11678;017_PtNairob: get_and_update_map;0.286538;0.039796;0.326751;193108;96396 +1640/11678;017_PtNairob: if;0.284743;0.032083;0.318547;192976;96140 +1641/11678;017_PtNairob: insertion_sort;0.326582;0.039827;0.368088;213064;116524 +1642/11678;017_PtNairob: list_map_block;0.306491;0.015921;0.323902;193304;96556 +1643/11678;017_PtNairob: loop_left;0.2918;0.02798;0.321253;193232;96396 +1644/11678;017_PtNairob: packunpack;0.305998;0.015896;0.322337;193104;96140 +1645/11678;017_PtNairob: pexec;0.295307;0.023943;0.320798;193232;96396 +1646/11678;017_PtNairob: reverse_loop;0.318928;0.007973;0.328447;193104;96140 +1647/11678;017_PtNairob: set_delegate;0.290396;0.031824;0.323839;193104;96364 +1648/11678;017_PtNairob: shifts;0.307761;0.015987;0.324172;193108;96140 +1649/11678;017_PtNairob: spawn_identities;0.322208;0.048331;0.372561;210648;114200 +1650/11678;017_PtNairob: ticket_join;0.290526;0.035818;0.327865;192848;96140 +1651/11678;017_PtNairob: ticket_split;0.273919;0.04431;0.319787;193236;96304 +1652/11678;017_PtNairob: view_toplevel_lib;0.283475;0.035933;0.31984;193112;96396 +1653/11678;017_PtNairob: xor;0.30103;0.016271;0.317679;193108;96396 +1654/11678;017_PtNairob: opt_map;0.307429;0.023955;0.332943;193072;96256 +1655/11678;017_PtNairob: view_fib;0.306399;0.015916;0.323868;193236;96396 +1656/11678;017_PtNairob: rec_id_unit;0.286816;0.039835;0.328146;193112;96304 +1657/11678;017-PtNairob: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup.t);0.290581;0.027864;0.318559;192836;96140 +1658/11678;017-PtNairob: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup_state_repr.t);0.670522;0.03592;0.706554;229104;132140 +1659/11678;017-PtNairob: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup_account_repr.t);7.37826;0.019995;7.39843;240684;144172 +1660/11678;017-PtNairob: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup_operation_repr.t);0.639198;0.035954;0.675246;225964;129584 +1661/11678;017-PtNairob: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup_repr.pending_list);0.276341;0.040049;0.316492;192812;96140 +1662/11678;017-PtNairob: ZK rollup encoding: : to_scalar (to_scalar Zk_rollup_repr.t);0.296081;0.028007;0.324187;193068;96140 +1663/11678;017-PtNairob: ZK rollup encoding: : to_scalar (to_scalar Zk_rollup_operation.t);0.349571;0.032144;0.381822;223280;126512 +1664/11678;017-PtNairob: Tez_repr (Tez.(*?) is coherent w.r.t. Z.(*));0.300979;0.020065;0.321147;193196;96396 +1665/11678;017-PtNairob: Tez_repr (Tez.(-?) is coherent w.r.t. Z.(-));0.288424;0.036053;0.324578;192968;96140 +1666/11678;017-PtNairob: Tez_repr (Tez.(+?) is coherent w.r.t. Z.(+));0.29227;0.024022;0.316539;193072;96164 +1667/11678;017-PtNairob: Tez_repr (Tez.(/?) is coherent w.r.t. Z.(/));0.286623;0.031847;0.318572;193068;96140 +1668/11678;017-PtNairob: compatible_with_reference (compatible_with_reference);0.289646;0.036205;0.325968;193076;96140 +1669/11678;017-PtNairob: compatible_with_packing (compatible_with_packing);0.280278;0.040039;0.320425;192816;96140 +1670/11678;017-PtNairob: reflexivity (reflexivity);0.309783;0.012069;0.32198;193104;96300 +1671/11678;017-PtNairob: symmetry (symmetry);0.300199;0.024015;0.324325;193232;96396 +1672/11678;017-PtNairob: transitivity (transitivity);0.312072;0.024005;0.336187;193236;96396 +1673/11678;017-PtNairob: pack_unpack (pack_unpack);1.5065;0.015984;1.52258;212564;115888 +1674/11678;017-PtNairob: Tick_repr (next x > x);0.284905;0.032101;0.317131;193236;96140 +1675/11678;017-PtNairob: Tick_repr (x = initial \/ x > initial);0.298466;0.023877;0.322448;193232;96400 +1676/11678;017-PtNairob: Tick_repr (distance from x to x is 0);0.30659;0.011945;0.318635;192980;96160 +1677/11678;017-PtNairob: Tick_repr (distance from non-self is non-zero);0.296634;0.020042;0.316794;193076;96396 +1678/11678;017-PtNairob: Tick_repr (distance is a distance (symmetry));0.280288;0.032032;0.312424;192948;96140 +1679/11678;017-PtNairob: Tick_repr (distance is a distance (triangle inequality));0.286493;0.035811;0.322412;193196;96304 +1680/11678;017-PtNairob: Tick_repr (of_int only accepts natural numbers);0.304684;0.020045;0.324851;193072;96136 +1681/11678;017-PtNairob: Tick_repr (to_int o of_int = identity);0.294448;0.023874;0.318438;193364;96396 +1682/11678;017-PtNairob: safety (test_add_info_per_level);0.296951;0.032102;0.329163;193364;96424 +1683/11678;017-PtNairob: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_commitment.t);0.309125;0.020073;0.32932;192784;96140 +1684/11678;017-PtNairob: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_commitment.versioned);0.305183;0.020077;0.325371;193072;96140 +1685/11678;017-PtNairob: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_game.t);0.527611;0.015988;0.543725;218288;121396 +1686/11678;017-PtNairob: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_refutation_storage.conflict);0.336335;0.012011;0.348464;193200;96396 +1687/11678;017-PtNairob: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_inbox_message_repr.t);0.301287;0.020085;0.321499;192940;96140 +1688/11678;017-PtNairob: sampling (alias_float);34.5461;0.079995;34.6264;453584;357160 +1689/11678;017-PtNairob: sampling (alias_z);39.088;0.072;39.1603;451220;354956 +1690/11678;017-PtNairob: Refutation_game: Refutation (dissection is one kernel_run);1.71597;0.063998;1.78007;376708;280108 +1691/11678;017-PtNairob: Refutation_game: Refutation (dissection shorter than 32 kernel_run);2.28174;0.044033;2.32587;376960;280480 +1692/11678;017-PtNairob: Refutation_game: Refutation (dissection larger than 32 kernel_run);3.17953;0.052057;3.23169;382976;286500 +1693/11678;017-PtNairob: Refutation_game: Refutation (Perfect against Random);6.97203;0.036;7.00815;249488;151804 +1694/11678;017-PtNairob: Refutation_game: Refutation (Perfect against Lazy);6.22441;0.036002;6.26063;245708;148256 +1695/11678;017-PtNairob: Refutation_game: Refutation (Perfect against Keen);11.4856;0.028004;11.5138;252172;154672 +1696/11678;017-PtNairob: Refutation_game: Refutation (Perfect against Eager);7.59139;0.039996;7.63151;250680;153148 +1697/11678;017-PtNairob: Refutation_game: Refutation (Perfect against SOL hater);6.78272;0.05199;6.83486;249252;151508 +1698/11678;017-PtNairob: Refutation_game: Refutation (Perfect against EOL hater);8.18916;0.048006;8.23737;251528;153648 +1699/11678;017-PtNairob: Refutation_game: Refutation (Perfect against Info per level hater);147.491;0.195998;147.69;919444;823232 +1700/11678;017-PtNairob: Refutation_game: Refutation (Perfect against Nostalgic);3.36871;0.024005;3.39283;233044;135208 +1701/11678;017-PtNairob: Refutation_game: Refutation (cut at level properly cuts);0.285315;0.032148;0.317584;193072;96396 +1702/11678;017-PtNairob: Refutation_game: Dissection (gen_dissection produces a valid dissection);0.399005;0.03192;0.431026;212016;115252 +1703/11678;017-PtNairob: Refutation_game: Dissection (distance < nb_of_sections => (len dissection = succ (dist dissection)));0.300581;0.024046;0.324742;193068;96400 +1704/11678;017-PtNairob: Refutation_game: Dissection (distance >= nb_of_sections => (len dissection = nb_of_sections);0.389331;0.032109;0.421552;206384;109356 +1705/11678;017-PtNairob: Refutation_game: Dissection (dissection.start_chunk can not change);0.40536;0.02408;0.429552;207788;110900 +1706/11678;017-PtNairob: Refutation_game: Dissection (dissection.stop_chunk must change);0.380702;0.044081;0.424892;206000;109108 +1707/11678;017-PtNairob: Refutation_game: Dissection (start_chunk.tick and stop_chunk.tick can not change in the dissection);0.395929;0.035993;0.432028;206256;109360 +1708/11678;017-PtNairob: Refutation_game: Dissection (dissection must be well distributed);0.416441;0.016016;0.432573;206256;109356 +1709/11678;017-PtNairob: Operation_encoding: : roundtrip (roundtrip Operation.t);2.0635;0.027993;2.0916;224684;127796 +1710/11678;017-PtNairob: scons_equiv (scons_scons_tr_equiv);2.4327;0.020005;2.45281;268556;172072 +1711/11678;017-PtNairob: scons_equiv (scons_compute_equiv);2.29781;0.044034;2.34197;265736;168904 +1712/11678;017-PtNairob: check_path (check_path);2.23214;0.036002;2.26825;266508;169768 +1713/11678;017-PtNairob: check_path (check_path_wrong);2.21636;0.032005;2.24849;267884;171052 +1714/11678;017-PtNairob: gas properties (Consuming commutes);0.292504;0.024041;0.316646;193108;96396 +1715/11678;017-PtNairob: gas properties (Consuming [free] consumes nothing);0.30043;0.020028;0.320562;192948;96192 +1716/11678;017-PtNairob: gas properties ([free] is the neutral element of Gas addition);0.288425;0.036053;0.324585;193068;96140 +1717/11678;017-PtNairob: Dal slots refutation game: [017-PtNairob: test] Dal slots refutation (Pbt tests: confirmed pages);2.20118;0.040021;2.24129;202644;106200 +1718/11678;017-PtNairob: Dal slots refutation game: [017-PtNairob: test] Dal slots refutation (Pbt tests: unconfirmed pages);3.57577;0.031997;3.60785;194848;98168 +1719/11678;017-PtNairob: Compare_operations (Compare operations is a strict total order);0.488399;0.024019;0.51252;199084;102348 +1720/11678;017-PtNairob: Carbonated map (Size returns the number of elements);0.567121;0.023962;0.591192;218032;121136 +1721/11678;017-PtNairob: Carbonated map (To-list/of-list roundtrip);0.549138;0.048099;0.597354;217268;120624 +1722/11678;017-PtNairob: Carbonated map (Empty map is left identity for merge);0.575528;0.031973;0.607653;217648;120880 +1723/11678;017-PtNairob: Carbonated map (Empty map is right identity for merge);0.55855;0.039896;0.598593;217392;120316 +1724/11678;017-PtNairob: Carbonated map (Size should not change when map is merging with itself);0.56627;0.027914;0.594283;217908;120876 +1725/11678;017-PtNairob: Carbonated map (Add a new element increases size by one);0.562463;0.035901;0.598488;217388;120624 +1726/11678;017-PtNairob: Carbonated map (Remove new element decreases size by one);0.566381;0.02792;0.594405;217136;120372 +1727/11678;017-PtNairob: Carbonated map (Merge compared with list operation);0.554992;0.039927;0.595024;217260;120372 +1728/11678;017-PtNairob: Carbonated map (Merging with failing merge-overlap);0.557698;0.036109;0.593947;217380;120624 +1729/11678;017-PtNairob: Carbonated map (Should not find non-existing);0.556417;0.032024;0.588557;217256;120368 +1730/11678;017-PtNairob: Carbonated map (Find all elements);0.555769;0.039983;0.595857;217168;120364 +1731/11678;017-PtNairob: Carbonated map (Test that map commutes with mapping over list);0.55695;0.044075;0.601133;217796;121044 +1732/11678;017-PtNairob: Carbonated map (Test that fold commutes with folding over a list);0.565531;0.032086;0.597715;217264;120372 +1733/11678;017-PtNairob: Carbonated map (Test that fold collecting the elements agrees with to-list);0.561352;0.028067;0.589526;218032;121144 +1734/11678;017-PtNairob: Carbonated map (Test map with failing function);0.568475;0.02402;0.592658;217784;121416 +1735/11678;017-PtNairob: Carbonated map (Size of empty map is 0);0.290823;0.027887;0.318818;193104;96236 +1736/11678;017-PtNairob: Carbonated map (Update add);0.284598;0.032067;0.316795;193236;96396 +1737/11678;017-PtNairob: Carbonated map (Update replace);0.302026;0.015896;0.318032;193108;96396 +1738/11678;017-PtNairob: Carbonated map (Merge overlaps left);0.30775;0.01199;0.319843;192984;96140 +1739/11678;017-PtNairob: Carbonated map (Merge overlap replace);0.299838;0.015991;0.315933;193236;96396 +1740/11678;017-PtNairob: Carbonated map (Merge overlap by adding);0.290162;0.031798;0.322076;193100;96404 +1741/11678;017-PtNairob: Carbonated map (Update with merge add);0.307702;0.015984;0.323783;192976;96300 +1742/11678;017-PtNairob: Carbonated map (Merge overlap keep existing);0.287927;0.031991;0.320033;193060;96140 +1743/11678;017-PtNairob: Carbonated map (Merge overlap replace existing);0.296524;0.024042;0.320678;193072;96396 +1744/11678;017-PtNairob: Carbonated map (Update delete);0.300526;0.020035;0.320756;193236;96296 +1745/11678;017-PtNairob: Carbonated map (Fold empty);0.286893;0.027892;0.314903;193108;96396 +1746/11678;017-PtNairob: bytes and int/nat conversion : bytes_nat_conv (unit);0.285267;0.03616;0.321538;193076;96392 +1747/11678;017-PtNairob: bytes and int/nat conversion : bytes_nat_conv (bytes_of_nat);0.296244;0.024019;0.320352;192824;96328 +1748/11678;017-PtNairob: bytes and int/nat conversion : bytes_nat_conv (nat_of_bytes);0.286577;0.031841;0.31852;192948;96396 +1749/11678;017-PtNairob: bytes and int/nat conversion : bytes_int_conv (unit);0.295516;0.027954;0.323596;192948;96136 +1750/11678;017-PtNairob: bytes and int/nat conversion : bytes_int_conv (bytes_of_int);0.288788;0.024065;0.312973;192988;96396 +1751/11678;017-PtNairob: bytes and int/nat conversion : bytes_int_conv (int_of_bytes);0.27648;0.044076;0.320692;192940;96140 +1752/11678;017-PtNairob: quantity (get set);0.977022;0.044046;1.02118;227080;130344 +1753/11678;017-PtNairob: quantity (inter);1.65249;0.040011;1.69261;230248;133416 +1754/11678;017-PtNairob: quantity (diff);1.6035;0.043986;1.64762;230512;133932 +1755/11678;017-PtNairob: quantity (fill);0.304569;0.020037;0.324717;193108;96396 +1756/11678;017-PtNairob: add (t1 + t2 = t2 + t1);0.291727;0.023977;0.315815;193236;96276 +1757/11678;017-PtNairob: add (t + 0 = t);0.282796;0.031864;0.31476;193236;96396 +1758/11678;017-PtNairob: add (t1 + t2 >= t1);0.301464;0.016078;0.317645;192980;96140 +1759/11678;017-PtNairob: mul (t1 * t2 = t2 * t1);0.294941;0.027899;0.322952;193108;96268 +1760/11678;017-PtNairob: mul (t * 1 = t);0.287125;0.031902;0.319138;193108;96392 +1761/11678;017-PtNairob: mul (t * 0 = 0);0.28337;0.039911;0.323384;193108;96396 +1762/11678;017-PtNairob: sub (t - 0 = t);0.279864;0.03998;0.319943;193232;96396 +1763/11678;017-PtNairob: sub (t - t = 0);0.282268;0.03578;0.318222;192980;96140 +1764/11678;017-PtNairob: sub (t1 - t2 <= t1);0.289168;0.028113;0.317384;193232;96396 +1765/11678;017-PtNairob: add and sub ((t1 + t2) - t2 <= t1);0.267354;0.055865;0.323324;193108;96396 +1766/11678;017-PtNairob: add and sub ((t1 - t2) + t2 >= t1);0.287855;0.027985;0.315997;192980;96076 +1767/11678;017-PtNairob: sqrt ((sqrt t)² <= t <= (succ (sqrt t))²);0.271489;0.043917;0.315516;193204;96140 +1768/11678;017-PtNairob: sqrt (sqrt t² = t);0.283541;0.031948;0.315598;193112;96300 +1769/11678;017-PtNairob: <= and >= (t <= saturated);0.286733;0.031859;0.318689;193112;96392 +1770/11678;017-PtNairob: <= and >= (t >= 0);0.279171;0.039881;0.31916;192984;96140 +1771/11678;017-PtNairob: Machines Cross-Validation (Concrete/Symbolic Consistency);10.8415;0.056007;10.8977;219312;121392 +1772/11678;017-PtNairob: Machines Cross-Validation (Storage consistency);1.79347;0.040032;1.83363;219052;121392 +1773/11678;017-PtNairob: Machines Cross-Validation (Positive pools);26.4488;0.080002;26.529;554888;458796 +1774/11678;017-PtNairob: Economic Properties (No global gain);7.3045;0.080005;7.38466;514616;418352 +1775/11678;017-PtNairob: Economic Properties (Remove liquidities is consistent);26.5119;0.075999;26.5882;561032;465152 +1776/11678;017-PtNairob: Economic Properties (Share price only increases);25.2432;0.115996;25.3595;561000;464912 +1777/11678;017-PtNairob: batched managers validation (batch reveal and transaction);0.940356;0.036013;0.976475;204592;106804 +1778/11678;017-PtNairob: batched managers validation (batch two reveals);1.26486;0.040027;1.30499;219572;121912 +1779/11678;017-PtNairob: batched managers validation (reveal in the middle);1.48758;0.03199;1.51969;223860;126220 +1780/11678;017-PtNairob: batched managers validation (batch two sources);1.55278;0.044022;1.59689;223596;126024 +1781/11678;017-PtNairob: batched managers validation (batch incons. counters);2.0016;0.032025;2.03374;240884;143636 +1782/11678;017-PtNairob: batched managers validation (empty balance in middle of batch);1.50393;0.027998;1.53203;223744;126140 +1783/11678;017-PtNairob: batched managers validation (empty balance at end of batch);1.9359;0.051997;1.98799;244964;147212 +1784/11678;017-PtNairob: batched managers validation (too much gas consumption);1.78991;0.016017;1.80602;235836;138004 +1785/11678;017-PtNairob: batched managers validation (too much gas consumption (mempool));1.72765;0.055988;1.78375;232720;134980 +1786/11678;017-PtNairob: sanity checks (manager operation coverage);1.25512;0.043969;1.29921;220340;122932 +1787/11678;017-PtNairob: sanity checks (covalidation coverage);1.15391;0.016026;1.17003;214996;117232 +1788/11678;017-PtNairob: mempool (simple);0.283996;0.035999;0.3201;193232;96140 +1789/11678;017-PtNairob: mempool (incompatible mempool);0.276526;0.048091;0.324766;193108;96248 +1790/11678;017-PtNairob: mempool (merge);0.300946;0.024075;0.325129;193108;96300 +1791/11678;017-PtNairob: mempool (adding invalid operation);0.303656;0.023972;0.32773;192984;96140 +1792/11678;017-PtNairob: mempool (adding operation with conflict handler);0.2993;0.019953;0.319358;193968;96392 +1793/11678;017-PtNairob: mempool (remove operations);0.275957;0.043993;0.320049;193236;96396 +1794/11678;017-PtNairob: single manager validation (gas limit too low);0.917735;0.036068;0.953977;204848;107184 +1795/11678;017-PtNairob: single manager validation (gas limit too high);1.27297;0.024018;1.29708;221640;124496 +1796/11678;017-PtNairob: single manager validation (storage limit too high);1.25843;0.035955;1.29448;221876;124464 +1797/11678;017-PtNairob: single manager validation (counter too high);1.26898;0.040031;1.30912;219572;122156 +1798/11678;017-PtNairob: single manager validation (counter too low);1.26654;0.035958;1.30265;220912;124588 +1799/11678;017-PtNairob: single manager validation (unallocated source);1.25332;0.044046;1.29748;222256;124720 +1800/11678;017-PtNairob: single manager validation (unrevealed source);1.27928;0.031981;1.31138;221612;124004 +1801/11678;017-PtNairob: single manager validation (balance too low for fee payment);1.2939;0.032047;1.32605;221616;123976 +1802/11678;017-PtNairob: single manager validation (empty delegate source);1.2891;0.02402;1.31322;222128;124720 +1803/11678;017-PtNairob: single manager validation (too much gas consumption in block);1.28083;0.040025;1.32097;221868;124464 +1804/11678;017-PtNairob: single manager validation (fees are taken when valid);1.29638;0.03601;1.33251;219308;121908 +1805/11678;017-PtNairob: single manager validation (empty self-delegate);1.28946;0.032036;1.32161;220204;122680 +1806/11678;017-PtNairob: single manager validation (too much gas consumption in mempool);1.28475;0.028016;1.31289;219696;121908 +1807/11678;017-PtNairob: single manager validation (empty undelegated source);1.30031;0.020004;1.32044;222124;124464 +1808/11678;017-PtNairob: single manager validation (minimal gas for manager);1.28558;0.032039;1.31773;222132;124720 +1809/11678;017-PtNairob: single manager validation (dal disabled);1.41834;0.059929;1.47837;222288;124720 +1810/11678;017-PtNairob: single manager validation (toru disabled);1.44006;0.032001;1.4722;219988;122412 +1811/11678;017-PtNairob: single manager validation (scoru disabled);1.41993;0.035998;1.45602;222384;124976 +1812/11678;017-PtNairob: single manager validation (zkru disabled);1.41857;0.039959;1.45865;221264;123696 +1813/11678;017-PtNairob: covalidity (scenario: 'promotion' period, 'vdf' seed);2.69358;0.040023;2.73372;243504;145784 +1814/11678;017-PtNairob: covalidity (scenario: 'promotion' period, 'nonce' seed);2.18378;0.043995;2.22786;243580;145952 +1815/11678;017-PtNairob: covalidity (scenario: 'exploration' period, 'vdf' seed);2.50907;0.032013;2.54118;244640;146952 +1816/11678;017-PtNairob: covalidity (scenario: 'exploration' period, 'nonce' seed);1.98442;0.040008;2.02454;244416;146828 +1817/11678;017-PtNairob: covalidity (scenario: 'proposal' period, 'vdf' seed);2.79979;0.043996;2.84388;244852;147196 +1818/11678;017-PtNairob: covalidity (scenario: 'proposal' period, 'nonce' seed);2.15352;0.048033;2.20164;250132;152336 +1819/11678;017-PtNairob: one-manager restriction (positive validated op);15.4619;0.028003;15.49;248552;151020 +1820/11678;017-PtNairob: one-manager restriction (check conflicts between managers.);15.6095;0.024002;15.6337;235112;137500 +1821/11678;017-PtNairob: one-manager restriction (batch is not sequence of Single);15.6585;0.035996;15.6947;244792;146960 +1822/11678;017-PtNairob: one-manager restriction (under 1M, co-valid ops commute);15.6996;0.035999;15.7357;242796;145016 +1823/11678;017-PtNairob: zk rollup (check feature flag is disabled);0.788321;0.032013;0.820434;203436;106544 +1824/11678;017-PtNairob: zk rollup (origination fees);0.792378;0.024011;0.816494;204116;106796 +1825/11678;017-PtNairob: zk rollup (originate two rollups);0.808954;0.020023;0.829092;203604;106540 +1826/11678;017-PtNairob: zk rollup (origination negative nb_ops);0.797686;0.02405;0.821889;204112;106696 +1827/11678;017-PtNairob: zk rollup (append with invalid op code);0.780877;0.032036;0.813011;203604;106544 +1828/11678;017-PtNairob: zk rollup (append external deposit);0.798602;0.035937;0.834635;203604;106788 +1829/11678;017-PtNairob: zk rollup (append check errors);0.799711;0.023991;0.823815;204372;106544 +1830/11678;017-PtNairob: zk rollup (invalid deposit);0.798792;0.027957;0.826851;204240;106540 +1831/11678;017-PtNairob: zk rollup (update);1.07591;0.035996;1.112;215640;119088 +1832/11678;017-PtNairob: zk rollup (update with false proof);1.08652;0.047934;1.13452;212744;115268 +1833/11678;017-PtNairob: zk rollup (update with invalid circuit);0.922961;0.047946;0.971146;210644;114004 +1834/11678;017-PtNairob: zk rollup (update with op for another rollup);0.974072;0.047905;1.02211;212908;116272 +1835/11678;017-PtNairob: zk rollup (update with more public operations than pending);1.63224;0.024003;1.65634;229644;132896 +1836/11678;017-PtNairob: zk rollup (update with inconsistent state);0.935598;0.047979;0.983687;210604;114220 +1837/11678;017-PtNairob: zk rollup (update with not enough pending);0.938931;0.05194;0.99105;211636;114024 +1838/11678;017-PtNairob: zk rollup (update with valid prefix);1.5578;0.028032;1.58595;229412;131928 +1839/11678;017-PtNairob: zk rollup (valid deposit);0.966346;0.027952;0.994403;211668;114224 +1840/11678;017-PtNairob: zk rollup (valid deposit and external withdrawal);1.12723;0.035975;1.1633;211820;115224 +1841/11678;017-PtNairob: voting (voting successful_vote);0.394754;0.019937;0.414801;194264;96396 +1842/11678;017-PtNairob: voting (voting cooldown, not enough quorum);0.359984;0.035998;0.39609;193964;96136 +1843/11678;017-PtNairob: voting (voting promotion, not enough quorum);0.48564;0.032108;0.517868;198320;100420 +1844/11678;017-PtNairob: voting (voting proposal, with supermajority);0.300191;0.028017;0.328321;193968;96396 +1845/11678;017-PtNairob: voting (voting proposal, without supermajority);0.29189;0.035986;0.327982;194224;96396 +1846/11678;017-PtNairob: voting (voting proposal, with quorum);0.295228;0.031916;0.327259;194008;96136 +1847/11678;017-PtNairob: voting (voting proposal, without quorum);0.300859;0.024068;0.325032;194132;96396 +1848/11678;017-PtNairob: voting (voting cooldown, with supermajority);0.327836;0.027986;0.355926;194096;96140 +1849/11678;017-PtNairob: voting (voting cooldown, without supermajority);0.32744;0.035938;0.363491;193964;96308 +1850/11678;017-PtNairob: voting (voting proposal, no winning proposal);0.50426;0.032016;0.536385;204972;107056 +1851/11678;017-PtNairob: voting (voting quorum, quorum capped maximum);0.437793;0.016065;0.453985;196140;98348 +1852/11678;017-PtNairob: voting (voting quorum, quorum capped minimum);0.399739;0.015989;0.415843;196016;98100 +1853/11678;017-PtNairob: voting (voting power updated in each voting period);0.289886;0.032209;0.3222;193840;96140 +1854/11678;017-PtNairob: voting (voting period pretty print);0.291627;0.031959;0.323708;193108;96140 +1855/11678;017-PtNairob: voting (Proposals missing signature);0.295368;0.02794;0.32342;193232;96392 +1856/11678;017-PtNairob: voting (Proposals invalid signature);0.297088;0.028102;0.325331;193108;96196 +1857/11678;017-PtNairob: voting (Proposals wrong voting period index);0.299377;0.02395;0.323454;193204;96396 +1858/11678;017-PtNairob: voting (Proposals wrong voting period kind);0.31055;0.019907;0.330566;193200;96140 +1859/11678;017-PtNairob: voting (Proposals source not in vote listings);0.29565;0.027966;0.32373;194096;96396 +1860/11678;017-PtNairob: voting (Empty proposals);0.29586;0.027986;0.323948;192980;96136 +1861/11678;017-PtNairob: voting (Proposals contain a duplicate proposal);0.288399;0.040055;0.328581;192940;96240 +1862/11678;017-PtNairob: voting (Too many proposals (over one operation));0.295705;0.023976;0.319794;192944;96140 +1863/11678;017-PtNairob: voting (Too many proposals (over two operations));0.287259;0.039897;0.327237;193060;96392 +1864/11678;017-PtNairob: voting (A proposal had already been proposed);0.278966;0.043837;0.322911;193068;96044 +1865/11678;017-PtNairob: voting (Conflict: too many proposals in current block/mempool);0.279221;0.039888;0.319235;193072;96392 +1866/11678;017-PtNairob: voting (Conflicting proposals in current block/mempool);0.275463;0.043914;0.319534;193072;96256 +1867/11678;017-PtNairob: voting (Valid Proposals operations);0.2907;0.031857;0.322705;194128;96192 +1868/11678;017-PtNairob: voting (Ballot missing signature);0.287362;0.039911;0.327388;192980;96420 +1869/11678;017-PtNairob: voting (Ballot invalid signature);0.306375;0.019894;0.326477;193620;96396 +1870/11678;017-PtNairob: voting (Ballot wrong voting period index);0.30039;0.024031;0.324525;193236;96392 +1871/11678;017-PtNairob: voting (Ballot wrong voting period kind);0.289266;0.036158;0.325531;193360;96296 +1872/11678;017-PtNairob: voting (Ballot for wrong proposal);0.300246;0.028023;0.32837;192976;96132 +1873/11678;017-PtNairob: voting (Delegate has already submitted a ballot);0.278552;0.039793;0.318473;194224;96396 +1874/11678;017-PtNairob: voting (Ballot source not in vote listings);0.305452;0.016076;0.321629;194224;96140 +1875/11678;017-PtNairob: voting (Conflicting ballot in current block/mempool);0.300049;0.028004;0.328167;193836;96396 +1876/11678;017-PtNairob: voting (Valid Ballot operations);0.300594;0.024047;0.324781;193880;96264 +1877/11678;017-PtNairob: transfer ticket (ticket transfer operations);0.305376;0.02009;0.325568;192940;96140 +1878/11678;017-PtNairob: transfer ticket ('contract (ticket cty)' as transfer destination);0.299904;0.023992;0.324025;193972;96140 +1879/11678;017-PtNairob: transfer (single transfer);0.292734;0.02406;0.316901;193104;96140 +1880/11678;017-PtNairob: transfer (single transfer with fee);0.298489;0.023879;0.322477;193112;96396 +1881/11678;017-PtNairob: transfer (single transfer zero tez);0.287536;0.031948;0.319603;193236;96140 +1882/11678;017-PtNairob: transfer (transfer zero tez from implicit contract);0.292567;0.028054;0.320729;193068;96392 +1883/11678;017-PtNairob: transfer (transfer zero tez to an implicit contract with balance of src as fee);0.299406;0.023952;0.323506;193964;96140 +1884/11678;017-PtNairob: transfer (transfer to originated contract paying transaction fee);0.312215;0.016011;0.328331;192948;96140 +1885/11678;017-PtNairob: transfer (transfer zero tez to an originated contract with balance of src as fee);0.290872;0.03586;0.326836;193076;96368 +1886/11678;017-PtNairob: transfer (transfer the amount from source contract balance);0.299686;0.02797;0.32778;193076;96140 +1887/11678;017-PtNairob: transfer (transfers to itself);0.289352;0.036169;0.325662;193872;96352 +1888/11678;017-PtNairob: transfer (missing transaction);0.297301;0.028123;0.325525;192980;96140 +1889/11678;017-PtNairob: transfer (transfer from an implicit to implicit contract);0.293399;0.024115;0.317617;193072;96140 +1890/11678;017-PtNairob: transfer (transfer from an implicit to an originated contract);0.295558;0.023964;0.319627;193196;96140 +1891/11678;017-PtNairob: transfer (block with multiple transfers);0.356177;0.036017;0.392286;193024;96392 +1892/11678;017-PtNairob: transfer (block with multiple transfer paying fee);0.290449;0.039787;0.330351;193072;96140 +1893/11678;017-PtNairob: transfer (block with multiple transfer without paying fee);0.833858;0.028062;0.862016;206380;108332 +1894/11678;017-PtNairob: transfer (build a chain);0.285655;0.040233;0.325992;192980;96140 +1895/11678;017-PtNairob: transfer (empty implicit);0.295205;0.031914;0.327206;193000;96308 +1896/11678;017-PtNairob: transfer (balance too low - transfer zero);0.300003;0.024;0.324138;193520;96264 +1897/11678;017-PtNairob: transfer (balance too low);0.291278;0.03192;0.323323;193492;96396 +1898/11678;017-PtNairob: transfer (balance too low (max fee));0.299654;0.023972;0.323759;193104;96392 +1899/11678;017-PtNairob: transfer (balance too low with two transfers - transfer zero);0.292876;0.028084;0.321041;192824;96396 +1900/11678;017-PtNairob: transfer (balance too low with two transfers);0.303164;0.023934;0.327204;192940;96140 +1901/11678;017-PtNairob: transfer (transfer one tez to an implicit contract with balance of src as fee);0.281627;0.040232;0.321974;192940;96144 +1902/11678;017-PtNairob: transfer (invalid_counter);0.280091;0.036011;0.31621;193108;96396 +1903/11678;017-PtNairob: transfer (add the same operation twice);0.290522;0.027858;0.318499;193108;96356 +1904/11678;017-PtNairob: transfer (invalid_counter_in_the_future);0.298445;0.027854;0.326403;193108;96396 +1905/11678;017-PtNairob: transfer (ownership sender);0.296558;0.024045;0.320702;193236;96396 +1906/11678;017-PtNairob: transfer (random transfer);0.299217;0.023937;0.323269;192980;96140 +1907/11678;017-PtNairob: transfer (random multi transfer);0.323498;0.03195;0.355561;192980;96136 +1908/11678;017-PtNairob: transfer (bad entrypoint);0.2916;0.031956;0.323666;193236;96384 +1909/11678;017-PtNairob: transfer (bad parameter);0.283688;0.03596;0.319759;192976;96104 +1910/11678;017-PtNairob: transfer (no such entrypoint);0.296196;0.032021;0.32841;193872;96504 +1911/11678;017-PtNairob: transfer (storage fees after contract call and allocation);0.279471;0.043916;0.323486;193968;96272 +1912/11678;017-PtNairob: sc rollup (check effect of disabled feature flag);0.301635;0.020109;0.321848;193200;96396 +1913/11678;017-PtNairob: sc rollup (check effect of disabled arith pvm flag);0.303923;0.023993;0.328017;193068;96284 +1914/11678;017-PtNairob: sc rollup (can publish a commit, cement it and withdraw stake);0.312398;0.02403;0.336526;193968;96140 +1915/11678;017-PtNairob: sc rollup (publish will fail if staker is double staking);0.311507;0.019968;0.331579;194224;96396 +1916/11678;017-PtNairob: sc rollup (cement will fail if commitment is contested);0.295395;0.039918;0.335422;194356;96396 +1917/11678;017-PtNairob: sc rollup (check the challenge window period boundaries);0.377856;0.016078;0.394032;193332;96116 +1918/11678;017-PtNairob: sc rollup (originating with invalid types);0.287246;0.047874;0.335242;193072;96144 +1919/11678;017-PtNairob: sc rollup (originating with valid type);0.321359;0.032135;0.353595;199764;101928 +1920/11678;017-PtNairob: sc rollup (originating with invalid boot sector proof);0.309033;0.020067;0.329202;193324;96416 +1921/11678;017-PtNairob: sc rollup (originating with invalid kind proof);0.300482;0.024038;0.324631;193068;96140 +1922/11678;017-PtNairob: sc rollup (originating with random proof);0.282954;0.043838;0.326912;193108;96304 +1923/11678;017-PtNairob: sc rollup (originating with proof for Tezos context trees);0.28736;0.031928;0.3194;193200;96368 +1924/11678;017-PtNairob: sc rollup (originating with proof for Tezos context trees trying to pass as a binary tree);0.276168;0.044026;0.320307;193204;96140 +1925/11678;017-PtNairob: sc rollup (single transaction atomic batch);0.314503;0.035829;0.350458;193972;96140 +1926/11678;017-PtNairob: sc rollup (execute outbox message against older cemented commitment);0.387772;0.027983;0.415876;193072;96144 +1927/11678;017-PtNairob: sc rollup (multi-transaction atomic batch);0.306926;0.031888;0.338929;194224;96308 +1928/11678;017-PtNairob: sc rollup (transaction with invalid type);0.31521;0.03192;0.347253;193232;96308 +1929/11678;017-PtNairob: sc rollup (execute same message twice);0.30988;0.02817;0.338169;193112;96396 +1930/11678;017-PtNairob: sc rollup (execute same message twice against different cemented commitments);0.342828;0.027904;0.370857;193196;96136 +1931/11678;017-PtNairob: sc rollup (transaction with zero amount ticket);0.328479;0.032046;0.360637;193072;96252 +1932/11678;017-PtNairob: sc rollup (invalid output proof);0.302309;0.031822;0.334305;194256;96396 +1933/11678;017-PtNairob: sc rollup (outbox message that overrides an old slot);15.7866;0.10399;15.8908;220848;122928 +1934/11678;017-PtNairob: sc rollup (insufficient ticket balances);0.315265;0.015962;0.33133;194132;96140 +1935/11678;017-PtNairob: sc rollup (inbox max number of messages per inbox level);2.29014;0.059951;2.35028;353508;256556 +1936/11678;017-PtNairob: sc rollup (a player can't timeout another player before timeout period and related timeout value.);0.336692;0.016032;0.352803;194024;96564 +1937/11678;017-PtNairob: sc rollup (a player cannot play more than max_number_of_parallel_games games in parallel.);0.3717;0.039967;0.411783;194220;96396 +1938/11678;017-PtNairob: sc rollup (Two invalid final moves end the game in a draw situation);0.310187;0.02386;0.334167;193968;96140 +1939/11678;017-PtNairob: sc rollup (Timeout during the final move can end the game in a draw situation);0.317171;0.028103;0.345378;193332;96140 +1940/11678;017-PtNairob: sc rollup (Cannot play a dissection when the final move has started);0.328775;0.032075;0.360957;193200;96396 +1941/11678;017-PtNairob: sc rollup (Invalid metadata initialization can be refuted);0.310479;0.027863;0.338505;194108;96236 +1942/11678;017-PtNairob: sc rollup (Invalid reveal can be refuted);0.320359;0.020022;0.340483;193232;96140 +1943/11678;017-PtNairob: sc rollup (SOL/Info_per_level/EOL are added in the inbox);0.298479;0.023878;0.322467;192940;96140 +1944/11678;017-PtNairob: sc rollup (0-tick commitments are forbidden);0.279694;0.047947;0.327781;192948;96108 +1945/11678;017-PtNairob: sc rollup (the curfew functionality);0.344448;0.020026;0.364582;194132;96440 +1946/11678;017-PtNairob: sc rollup (a commitment can be published after the inbox_level + challenge window is passed.);0.340909;0.020053;0.361086;193068;96140 +1947/11678;017-PtNairob: sc rollup (An offline staker should not prevent cementation);0.332515;0.012018;0.344641;193072;96136 +1948/11678;017-PtNairob: sc rollup (win refutation game by forfeit);0.345472;0.024102;0.369679;193072;96140 +1949/11678;017-PtNairob: sc rollup (win refutation game by forfeit with draw);0.33928;0.015966;0.355362;193968;96136 +1950/11678;017-PtNairob: sc rollup (cannot start a game with agreeing stakers);0.617489;0.024058;0.641662;193200;96396 +1951/11678;017-PtNairob: sc rollup (find conflict point with incomplete branch);0.404282;0.036025;0.440408;192828;96300 +1952/11678;017-PtNairob: sc rollup (cannot start a game on a cemented commitment);2.21835;0.03997;2.25844;217264;119604 +1953/11678;017-PtNairob: sc rollup transfer (Transfer to a bad sc rollup address);0.279371;0.047892;0.327368;193968;96144 +1954/11678;017-PtNairob: sc rollup transfer (Transfer to an unknown rollup address);0.29812;0.024171;0.322396;193072;96140 +1955/11678;017-PtNairob: sc rollup transfer (Transfer with a wrong type);0.293563;0.036192;0.329892;193200;96140 +1956/11678;017-PtNairob: sc rollup transfer (Transfer with a non-zero amount);0.296537;0.02805;0.324688;192944;96140 +1957/11678;017-PtNairob: sc rollup transfer (Transfer works);0.290954;0.039856;0.330926;192976;96396 +1958/11678;017-PtNairob: sc rollup transfer (Transfer of zero-amount ticket);0.291524;0.035941;0.327565;194092;96396 +1959/11678;017-PtNairob: sc rollup transfer (Transfer of non-zero-amount ticket);0.300883;0.02407;0.325063;193328;96396 +1960/11678;017-PtNairob: revelation (simple reveal);0.291093;0.0319;0.323093;192980;96140 +1961/11678;017-PtNairob: revelation (empty account on reveal);0.293863;0.028178;0.322144;193876;96140 +1962/11678;017-PtNairob: revelation (not enough funds for reveal);0.302555;0.015923;0.318584;193232;96396 +1963/11678;017-PtNairob: revelation (transfer fees emptying balance after reveal in batch);0.289422;0.032158;0.32168;193964;96396 +1964/11678;017-PtNairob: revelation (cannot forge reveal with fake keys and signature);0.291195;0.027922;0.319233;192812;96392 +1965/11678;017-PtNairob: revelation (cannot re-reveal an account with fake keys and signature);0.294654;0.02389;0.318655;193712;96144 +1966/11678;017-PtNairob: revelation (a backtracked reveal in a batch doesn't take effect);0.290782;0.035849;0.326746;193708;96140 +1967/11678;017-PtNairob: revelation (cannot re-reveal a manager in a batch);0.281532;0.040218;0.321857;193972;96140 +1968/11678;017-PtNairob: revelation (do not reveal when gas exhausted);0.285509;0.036191;0.321799;194096;96396 +1969/11678;017-PtNairob: revelation (incorrect reveal position in batch);0.29232;0.02803;0.320506;193052;96556 +1970/11678;017-PtNairob: revelation (cannot duplicate valid reveals in batch);0.297435;0.020096;0.31768;194096;96264 +1971/11678;017-PtNairob: revelation (cannot batch a good reveal after a gas-exhausted one);0.305126;0.016059;0.321349;193968;96360 +1972/11678;017-PtNairob: revelation (cannot batch a good reveal after an insolvent one);0.294394;0.023869;0.318335;193044;96396 +1973/11678;017-PtNairob: revelation (cannot batch a good reveal after one emptying account);0.290943;0.031884;0.322936;193072;96400 +1974/11678;017-PtNairob: paid storage increase (balances simple);0.291329;0.027935;0.319339;193200;96516 +1975/11678;017-PtNairob: paid storage increase (null amount);0.292855;0.036105;0.329068;193232;96396 +1976/11678;017-PtNairob: paid storage increase (negative amount);0.296197;0.028018;0.324322;194132;96396 +1977/11678;017-PtNairob: paid storage increase (not enough tez to pay);0.288875;0.036109;0.325085;193196;96396 +1978/11678;017-PtNairob: paid storage increase (no contract to bump its paid storage);0.283203;0.035899;0.319209;192944;96136 +1979/11678;017-PtNairob: paid storage increase (effectiveness);0.297707;0.028161;0.325982;194004;96140 +1980/11678;017-PtNairob: origination (balances_simple);0.299447;0.027948;0.327494;193872;96140 +1981/11678;017-PtNairob: origination (balances_credit);0.293361;0.024111;0.317594;193108;96140 +1982/11678;017-PtNairob: origination (balances_credit_fee);0.287488;0.031943;0.319528;193872;96396 +1983/11678;017-PtNairob: origination (pay_fee);0.293323;0.028126;0.321551;193108;96396 +1984/11678;017-PtNairob: origination (not enough tez in contract to pay fee);0.300167;0.020011;0.320291;193580;96144 +1985/11678;017-PtNairob: origination (multiple originations);0.62665;0.031931;0.658682;218968;121136 +1986/11678;017-PtNairob: origination (counter);0.296138;0.020009;0.316281;193872;96412 +1987/11678;017-PtNairob: origination (unparsable script);0.311334;0.011974;0.323422;193108;96140 +1988/11678;017-PtNairob: failling_noop operation (injection fails);0.295169;0.023932;0.31921;193108;96300 +1989/11678;017-PtNairob: combined (multiple transfers);0.304056;0.024004;0.328168;192976;96140 +1990/11678;017-PtNairob: combined (multiple originations and delegations);0.307698;0.015984;0.323805;193076;96396 +1991/11678;017-PtNairob: combined (Failing operation in the middle);0.304418;0.020027;0.324548;193324;96396 +1992/11678;017-PtNairob: combined (Failing operation in the middle (with fees));0.297578;0.020106;0.317783;193400;96152 +1993/11678;017-PtNairob: combined (Failing operation (wrong manager in the middle of a pack));0.283566;0.039938;0.323603;193968;96140 +1994/11678;017-PtNairob: combined (Inconsistent counters in batch);0.294905;0.031881;0.326949;194004;96296 +1995/11678;017-PtNairob: activation (init with commitments);0.308864;0.036101;0.34509;193748;96396 +1996/11678;017-PtNairob: activation (single activation);0.309084;0.036126;0.345317;192980;96140 +1997/11678;017-PtNairob: activation (multi-activation one-by-one);0.317164;0.028103;0.345386;194004;96140 +1998/11678;017-PtNairob: activation (multi-activation all at a time);0.311613;0.03196;0.343716;193588;96140 +1999/11678;017-PtNairob: activation (activation and transfer);0.298567;0.039809;0.338489;192976;96300 +2000/11678;017-PtNairob: activation (transfer to unactivated account then activate);0.315305;0.027938;0.343345;193076;96144 +2001/11678;017-PtNairob: activation (invalid activation with no commitments);0.303933;0.035992;0.34002;193072;96144 +2002/11678;017-PtNairob: activation (invalid activation with commitments);0.303831;0.043975;0.347922;193068;96392 +2003/11678;017-PtNairob: activation (invalid double activation);0.299348;0.039913;0.339364;192980;96152 +2004/11678;017-PtNairob: activation (wrong activation code);0.301753;0.03621;0.338091;193108;96396 +2005/11678;017-PtNairob: activation (invalid transfer from unactivated account);0.32141;0.01607;0.337586;193712;96396 +2006/11678;017-PtNairob: typechecking (unparse view);0.283658;0.039951;0.323716;193236;96396 +2007/11678;017-PtNairob: typechecking (typecheck stack overflow error);0.32114;0.028099;0.349707;202420;105772 +2008/11678;017-PtNairob: typechecking (comb type parsing);0.304279;0.020018;0.324408;193240;96392 +2009/11678;017-PtNairob: typechecking (comb type unparsing);0.297527;0.024123;0.321772;193104;96396 +2010/11678;017-PtNairob: typechecking (comb comparable type unparsing);0.293011;0.028096;0.321206;193324;96392 +2011/11678;017-PtNairob: typechecking (comb data parsing);0.305157;0.020076;0.325333;193108;96140 +2012/11678;017-PtNairob: typechecking (comb data unparsing);0.302531;0.015922;0.318601;193232;96228 +2013/11678;017-PtNairob: typechecking (optimal comb data unparsing);0.292317;0.032034;0.324455;192948;96140 +2014/11678;017-PtNairob: typechecking (parse address);0.289816;0.032201;0.32212;193112;96300 +2015/11678;017-PtNairob: typechecking (test unpackability of the contract type);0.297579;0.024128;0.321806;193200;96392 +2016/11678;017-PtNairob: typechecking (forbidden SELF in view);0.291633;0.027964;0.320028;193236;96396 +2017/11678;017-PtNairob: typechecking (forbidden SET_DELEGATE in view);0.29087;0.031876;0.338055;193204;96396 +2018/11678;017-PtNairob: typechecking (forbidden TRANSFER_TOKENS in view);0.303362;0.023949;0.328754;193204;96400 +2019/11678;017-PtNairob: typechecking (forbidden CREATE_CONTRACT in view);0.292394;0.024032;0.325968;193068;96144 +2020/11678;017-PtNairob: typechecking (parse contract data for rollup);0.293593;0.028152;0.321846;193712;96140 +2021/11678;017-PtNairob: typechecking (parse contract data for rollup with entrypoint invalid type);0.291903;0.035988;0.327993;193072;96140 +2022/11678;017-PtNairob: typechecking (lambda_rec instruction);0.300744;0.016039;0.318393;192980;96140 +2023/11678;017-PtNairob: typechecking (lambda_rec instruction with apply);0.28245;0.039781;0.331504;193200;96396 +2024/11678;017-PtNairob: typechecking (lambda_rec with type error);0.287177;0.031908;0.320594;192976;96224 +2025/11678;017-PtNairob: ticket storage (no overlapping keys for ticketer);0.302614;0.019908;0.322626;193072;96308 +2026/11678;017-PtNairob: ticket storage (no overlapping keys for content);0.320116;0.004001;0.324225;193076;96396 +2027/11678;017-PtNairob: ticket storage (no overlapping keys for content type);0.297088;0.028102;0.325298;192944;96140 +2028/11678;017-PtNairob: ticket storage (no overlapping keys for owner);0.300248;0.028023;0.328371;193072;96136 +2029/11678;017-PtNairob: ticket storage (ticket balance single update);0.287351;0.035918;0.323371;193076;96132 +2030/11678;017-PtNairob: ticket storage (empty balance);0.299938;0.019995;0.320037;192976;96140 +2031/11678;017-PtNairob: ticket storage (empty balance after update);0.312805;0.01203;0.324949;193072;96396 +2032/11678;017-PtNairob: ticket storage (negative balance);0.284455;0.036057;0.320617;193236;96392 +2033/11678;017-PtNairob: ticket storage (ticket balance multiple updates);0.304555;0.020036;0.32469;193204;96244 +2034/11678;017-PtNairob: ticket storage (ticket balance different owners);0.296211;0.028019;0.32434;193200;96140 +2035/11678;017-PtNairob: ticket storage (ticket storage space);0.305003;0.020065;0.325187;192976;96136 +2036/11678;017-PtNairob: ticket scanner (tickets in unit ticket);0.302307;0.027844;0.330257;193360;96400 +2037/11678;017-PtNairob: ticket scanner (tickets in list);0.300926;0.020061;0.321111;193240;96396 +2038/11678;017-PtNairob: ticket scanner (tickets in list with zero amount);0.300827;0.020055;0.320995;192940;96140 +2039/11678;017-PtNairob: ticket scanner (tickets in pair);0.288269;0.036033;0.324409;193108;96140 +2040/11678;017-PtNairob: ticket scanner (tickets in pair with zero amount);0.292601;0.036074;0.328775;192940;96396 +2041/11678;017-PtNairob: ticket scanner (tickets in map);0.297644;0.020111;0.317866;192984;96308 +2042/11678;017-PtNairob: ticket scanner (tickets in map with zero amount);0.292395;0.028037;0.320567;193076;96136 +2043/11678;017-PtNairob: ticket scanner (tickets in big map);0.282907;0.039846;0.322853;193232;96292 +2044/11678;017-PtNairob: ticket scanner (tickets in big map with include lazy set to false);0.294832;0.031873;0.326833;193068;96140 +2045/11678;017-PtNairob: ticket scanner (tickets in list in big map);0.296315;0.032034;0.328465;193076;96136 +2046/11678;017-PtNairob: ticket scanner (tickets in a pair of big-map and list with include lazy set to false);0.296997;0.028094;0.325204;193200;96448 +2047/11678;017-PtNairob: ticket scanner (tickets in or left);0.300866;0.020057;0.321035;192976;96396 +2048/11678;017-PtNairob: ticket scanner (tickets in or left with zero amount);0.272573;0.048101;0.320792;193076;96136 +2049/11678;017-PtNairob: ticket scanner (tickets in or right);0.287253;0.031917;0.319277;192976;96136 +2050/11678;017-PtNairob: ticket scanner (tickets in empty big-map ref);0.304982;0.024077;0.329187;193328;96396 +2051/11678;017-PtNairob: ticket scanner (tickets in big-map ref);0.30297;0.015945;0.319042;193240;96396 +2052/11678;017-PtNairob: ticket scanner (tickets in non-empty big-map ref);0.298604;0.019906;0.318613;193836;96392 +2053/11678;017-PtNairob: ticket scanner (tickets in non-empty big-map ref with overlay);0.287906;0.035988;0.324028;193844;96388 +2054/11678;017-PtNairob: ticket scanner (tickets replace existing value from overlay);0.284863;0.036109;0.321083;193968;96400 +2055/11678;017-PtNairob: ticket scanner (tickets remove existing value from overlay);0.295191;0.027923;0.323197;193136;96312 +2056/11678;017-PtNairob: ticket operations diff (operations that do not involve tickets);0.295715;0.023976;0.319793;193068;96140 +2057/11678;017-PtNairob: ticket operations diff (transfer to non-ticket contract);0.297661;0.024134;0.321913;193708;96140 +2058/11678;017-PtNairob: ticket operations diff (transfer empty ticket list);0.29505;0.035884;0.331087;193588;96112 +2059/11678;017-PtNairob: ticket operations diff (transfer one ticket);0.30061;0.02004;0.320762;193072;96204 +2060/11678;017-PtNairob: ticket operations diff (transfer multiple tickets);0.287309;0.035913;0.323329;193840;96396 +2061/11678;017-PtNairob: ticket operations diff (transfer different tickets);0.293194;0.028114;0.321399;193972;96396 +2062/11678;017-PtNairob: ticket operations diff (transfer to two contracts with different tickets);0.301386;0.020092;0.32158;192944;96140 +2063/11678;017-PtNairob: ticket operations diff (originate contract that does not contain tickets);0.293351;0.032148;0.32563;193712;96140 +2064/11678;017-PtNairob: ticket operations diff (originate with empty ticket list);0.295683;0.02797;0.32373;192824;96140 +2065/11678;017-PtNairob: ticket operations diff (originate with one ticket);0.294288;0.027838;0.322285;193068;96196 +2066/11678;017-PtNairob: ticket operations diff (originate with multiple tickets);0.284417;0.036052;0.320571;193072;96140 +2067/11678;017-PtNairob: ticket operations diff (originate with different tickets);0.299486;0.023958;0.32355;193200;96140 +2068/11678;017-PtNairob: ticket operations diff (originate two contracts with different tickets);0.295984;0.031998;0.328088;193200;96140 +2069/11678;017-PtNairob: ticket operations diff (originate and transfer);0.292504;0.028048;0.320666;193844;96400 +2070/11678;017-PtNairob: ticket operations diff (originate big-map with tickets);0.286935;0.031881;0.318918;193200;96396 +2071/11678;017-PtNairob: ticket operations diff (transfer big-map with tickets);0.288338;0.032037;0.320483;192948;96144 +2072/11678;017-PtNairob: ticket operations diff (transfer fails on multiple zero tickets);0.303973;0.023997;0.328076;193584;96392 +2073/11678;017-PtNairob: ticket operations diff (fail in zero-amount tickets);0.301185;0.024094;0.325447;193072;96248 +2074/11678;017-PtNairob: ticket manager (Create contract);0.308822;0.032085;0.341009;194640;96808 +2075/11678;017-PtNairob: ticket manager (Send self replace big-map);0.309764;0.02816;0.338039;193964;96140 +2076/11678;017-PtNairob: ticket manager (Add and remove from strict storage);0.308302;0.032031;0.340435;193196;96396 +2077/11678;017-PtNairob: ticket manager (Add and remove from lazy storage);0.323445;0.027952;0.351511;195628;97836 +2078/11678;017-PtNairob: ticket manager (Mix of operations);0.305754;0.036207;0.342067;193232;96392 +2079/11678;017-PtNairob: ticket lazy storage diff (allocate new empty);0.303575;0.019972;0.323656;193068;96140 +2080/11678;017-PtNairob: ticket lazy storage diff (allocate new);0.29247;0.028045;0.320627;193108;96144 +2081/11678;017-PtNairob: ticket lazy storage diff (allocate new no tickets);0.296028;0.028002;0.324158;194220;96396 +2082/11678;017-PtNairob: ticket lazy storage diff (Remove);0.296967;0.024078;0.32115;192984;96136 +2083/11678;017-PtNairob: ticket lazy storage diff (no updates to existing);0.298485;0.023878;0.322467;193964;96140 +2084/11678;017-PtNairob: ticket lazy storage diff (update existing big-map);0.301091;0.024087;0.325307;194096;96396 +2085/11678;017-PtNairob: ticket lazy storage diff (update same key multiple times on existing big-map);0.297087;0.028102;0.325289;192940;96140 +2086/11678;017-PtNairob: ticket lazy storage diff (remove same key multiple times on existing big-map);0.287494;0.039929;0.327529;193200;96396 +2087/11678;017-PtNairob: ticket lazy storage diff (update and remove same key multiple times on existing big-map);0.30072;0.024057;0.324889;193072;96132 +2088/11678;017-PtNairob: ticket lazy storage diff (copy);0.307249;0.015961;0.323324;193108;96368 +2089/11678;017-PtNairob: ticket lazy storage diff (copy with updates);0.302429;0.015917;0.318435;192756;96136 +2090/11678;017-PtNairob: ticket lazy storage diff (copy with multiple updates to same key);0.291971;0.027997;0.320081;192944;96140 +2091/11678;017-PtNairob: ticket lazy storage diff (mix lazy diffs);0.287028;0.039865;0.327014;193104;96140 +2092/11678;017-PtNairob: ticket balance key (different ticketers);0.272514;0.044083;0.316723;193232;96300 +2093/11678;017-PtNairob: ticket balance key (different owners);0.309094;0.016056;0.325257;193232;96396 +2094/11678;017-PtNairob: ticket balance key (different content);0.303352;0.019957;0.323412;192980;96140 +2095/11678;017-PtNairob: ticket balance key (different amounts);0.293984;0.027809;0.321895;193108;96300 +2096/11678;017-PtNairob: ticket balance key (nat int);0.303067;0.023926;0.327109;193104;96292 +2097/11678;017-PtNairob: ticket balance key (nat mutez);0.306547;0.019905;0.326562;193364;96396 +2098/11678;017-PtNairob: ticket balance key (not bool);0.317552;0.028137;0.345791;193236;96396 +2099/11678;017-PtNairob: ticket balance key (nat bytes);0.312654;0.012025;0.324796;193236;96392 +2100/11678;017-PtNairob: ticket balance key (string chain_id);0.296235;0.032025;0.328368;193360;96396 +2101/11678;017-PtNairob: ticket balance key (string key_hash);0.290524;0.031838;0.322472;193104;96140 +2102/11678;017-PtNairob: ticket balance key (string timestamp);0.297098;0.028103;0.325302;193104;96396 +2103/11678;017-PtNairob: ticket balance key (string address);0.29713;0.024091;0.32133;193108;96396 +2104/11678;017-PtNairob: ticket balance key (string key);0.283297;0.03591;0.319316;193112;96140 +2105/11678;017-PtNairob: ticket balance key (string signature);0.27776;0.04428;0.322115;192916;96356 +2106/11678;017-PtNairob: ticket balance key (annotations for pair);0.288571;0.032063;0.320743;192980;96140 +2107/11678;017-PtNairob: ticket balance key (annotations for or);0.300247;0.020016;0.320392;193108;96140 +2108/11678;017-PtNairob: ticket balance key (annotations for type alias);0.289425;0.032158;0.321697;193072;96400 +2109/11678;017-PtNairob: ticket balance key (annotations for paired ors);0.291388;0.031933;0.323454;193136;96268 +2110/11678;017-PtNairob: ticket balance key (option none);0.297724;0.024139;0.322013;192976;96320 +2111/11678;017-PtNairob: ticket balance key (option some);0.286278;0.035784;0.322193;193108;96392 +2112/11678;017-PtNairob: ticket balance (add strict);0.303538;0.019969;0.323608;194008;96140 +2113/11678;017-PtNairob: ticket balance (add and remove);0.299572;0.023965;0.323666;193108;96140 +2114/11678;017-PtNairob: ticket balance (add to big-map);0.304177;0.024014;0.328291;192980;96140 +2115/11678;017-PtNairob: ticket balance (swap big-map);0.296867;0.032093;0.329077;192980;96140 +2116/11678;017-PtNairob: ticket balance (send ticket);0.300104;0.028009;0.328235;194136;96140 +2117/11678;017-PtNairob: ticket balance (send ticket to implicit);0.27923;0.047868;0.327205;192980;96396 +2118/11678;017-PtNairob: ticket balance (send and store tickets with amount 0);0.308199;0.024015;0.332322;193072;96396 +2119/11678;017-PtNairob: ticket balance (send tickets in big-map);0.30363;0.02397;0.327704;193108;96140 +2120/11678;017-PtNairob: ticket balance (modify big-map);0.294547;0.027862;0.322507;193108;96392 +2121/11678;017-PtNairob: ticket balance (send drop);0.295508;0.02396;0.319594;192980;96136 +2122/11678;017-PtNairob: ticket balance (create contract with ticket);0.294692;0.031858;0.326648;192944;96136 +2123/11678;017-PtNairob: ticket balance (join);0.291875;0.027988;0.319967;194004;96140 +2124/11678;017-PtNairob: ticket balance (wallet);0.307163;0.023934;0.331239;194132;96360 +2125/11678;017-PtNairob: ticket balance (ticket storage);0.29774;0.028164;0.326021;193236;96396 +2126/11678;017-PtNairob: ticket balance (storage for create and remove tickets);0.295914;0.035989;0.332004;193072;96396 +2127/11678;017-PtNairob: ticket accounting (Diffs empty);0.283102;0.039873;0.323092;192976;96140 +2128/11678;017-PtNairob: ticket accounting (Diffs for tickets in args);0.316077;0.012002;0.328178;193196;96400 +2129/11678;017-PtNairob: ticket accounting (Diffs for tickets in args and storage);0.289438;0.028139;0.317678;193840;96392 +2130/11678;017-PtNairob: ticket accounting (Diffs for dropped ticket);0.300076;0.020005;0.320231;193968;96404 +2131/11678;017-PtNairob: ticket accounting (Diffs for adding new ticket to storage);0.293623;0.028155;0.321908;193968;96392 +2132/11678;017-PtNairob: ticket accounting (Diffs for removing from storage);0.287558;0.03195;0.319616;193964;96392 +2133/11678;017-PtNairob: ticket accounting (Diffs for lazy storage allocation);0.296649;0.020043;0.316796;193072;96140 +2134/11678;017-PtNairob: ticket accounting (Diffs for removing from big-map);0.28144;0.040205;0.321747;193072;96396 +2135/11678;017-PtNairob: ticket accounting (Diffs for copying a big-map);0.287739;0.031971;0.319808;194228;96392 +2136/11678;017-PtNairob: ticket accounting (Diffs for adding to an existing big-map);0.301836;0.024146;0.326086;193968;96396 +2137/11678;017-PtNairob: ticket accounting (Diffs for args, storage and lazy-diff);0.292137;0.032015;0.324248;193068;96140 +2138/11678;017-PtNairob: ticket accounting (Update tickets balances with invalid transfer);0.294041;0.024167;0.318364;193588;96148 +2139/11678;017-PtNairob: ticket accounting (Update ticket self diff);0.301015;0.024081;0.325196;193196;96396 +2140/11678;017-PtNairob: ticket accounting (Update ticket balances for valid transfer);0.29656;0.024045;0.320715;193588;96136 +2141/11678;017-PtNairob: ticket accounting (Update ticket balances for transfer with 'self' tickets);0.280419;0.040059;0.320576;193072;96396 +2142/11678;017-PtNairob: ticket accounting (Update transfer tickets to self);0.290386;0.027845;0.318369;193584;96396 +2143/11678;017-PtNairob: ticket accounting (Update invalid origination);0.292822;0.028078;0.321003;193836;96140 +2144/11678;017-PtNairob: ticket accounting (Update valid origination);0.297676;0.024135;0.321919;193328;96396 +2145/11678;017-PtNairob: ticket accounting (Update valid self origination);0.2874;0.035925;0.323433;193584;96136 +2146/11678;017-PtNairob: ticket accounting (ticket-token map with duplicate keys);0.277077;0.044171;0.321357;193076;96324 +2147/11678;017-PtNairob: temp big maps (temp_big_maps(Left True, -1));0.277748;0.043646;0.322892;193072;96140 +2148/11678;017-PtNairob: temp big maps (temp_big_maps(Left True, 0));0.283051;0.043853;0.327006;193836;96140 +2149/11678;017-PtNairob: temp big maps (temp_big_maps(Left True, 1));0.277116;0.044178;0.321398;193836;96396 +2150/11678;017-PtNairob: temp big maps (temp_big_maps(Left True, 2));0.300289;0.020019;0.320419;193068;96136 +2151/11678;017-PtNairob: temp big maps (temp_big_maps(Left False, -1));0.303189;0.023936;0.327228;193840;96140 +2152/11678;017-PtNairob: temp big maps (temp_big_maps(Left False, 0));0.287237;0.031915;0.319265;192940;96140 +2153/11678;017-PtNairob: temp big maps (temp_big_maps(Left False, 1));0.297175;0.024095;0.321373;193712;96140 +2154/11678;017-PtNairob: temp big maps (temp_big_maps(Left False, 2));0.274661;0.047767;0.322542;193840;96140 +2155/11678;017-PtNairob: temp big maps (temp_big_maps(Right {}, -1));0.299334;0.023946;0.32339;192944;96144 +2156/11678;017-PtNairob: temp big maps (temp_big_maps(Right {}, 0));0.303556;0.01997;0.323628;193200;96396 +2157/11678;017-PtNairob: temp big maps (temp_big_maps(Right {}, 1));0.287118;0.031902;0.31914;192940;96140 +2158/11678;017-PtNairob: temp big maps (temp_big_maps(Right {}, 2));0.277283;0.040185;0.317581;193072;96388 +2159/11678;017-PtNairob: script typed ir size (value size);0.700776;0.044048;0.744939;219988;121644 +2160/11678;017-PtNairob: script typed ir size (ty size);0.290274;0.027834;0.318225;193232;96396 +2161/11678;017-PtNairob: script typed ir size (kinstr size);0.292506;0.024041;0.31666;193104;96388 +2162/11678;017-PtNairob: script typed ir size (witness sizes);0.301701;0.01609;0.317891;193236;96396 +2163/11678;017-PtNairob: script typed ir size (micheline sizes);0.280648;0.040092;0.320845;193368;96140 +2164/11678;017-PtNairob: script cache (assumption about size of liquidity baking holds);0.294537;0.023881;0.318526;193712;96388 +2165/11678;017-PtNairob: script cache (assumption about size of 'int_store' contract holds);0.282097;0.035758;0.319324;193068;96140 +2166/11678;017-PtNairob: script cache (find correctly looks up);0.299729;0.019981;0.321145;192980;96140 +2167/11678;017-PtNairob: script cache (update correctly modifies);0.302527;0.019903;0.322538;193108;96396 +2168/11678;017-PtNairob: script cache (entries correctly list contracts in order);0.300464;0.036055;0.336625;193204;96392 +2169/11678;017-PtNairob: script cache (contract_rank is LRU rank);0.324516;0.016025;0.340648;193232;96360 +2170/11678;017-PtNairob: script cache (size returns entries size);0.309572;0.032163;0.341844;193108;96304 +2171/11678;017-PtNairob: script cache (size limit is a protocol constant);0.293206;0.032132;0.325439;193200;96148 +2172/11678;017-PtNairob: script cache (entries show LRU behavior);0.300997;0.028093;0.329192;194128;96396 +2173/11678;017-PtNairob: sapling (commitments_add_uncommitted);0.380649;0.052088;0.432843;193104;96140 +2174/11678;017-PtNairob: sapling (nullifier_double);0.300463;0.024037;0.324606;193872;96296 +2175/11678;017-PtNairob: sapling (nullifier_test);0.346172;0.015915;0.362193;193748;96140 +2176/11678;017-PtNairob: sapling (cm_cipher_test);0.302597;0.02787;0.330575;193748;96140 +2177/11678;017-PtNairob: sapling (list_insertion_test);0.415049;0.035917;0.451056;193440;96396 +2178/11678;017-PtNairob: sapling (root);0.274783;0.047788;0.322671;193236;96396 +2179/11678;017-PtNairob: sapling (get_memo_size);0.297407;0.020095;0.317601;193236;96396 +2180/11678;017-PtNairob: sapling (verify_memo);1.53811;0.048571;0.587793;260644;164560 +2181/11678;017-PtNairob: sapling (bench_phases);50.1685;0.151807;4.66176;395116;298948 +2182/11678;017-PtNairob: sapling (bench_phases_legacy);50.0858;0.274868;4.75463;418920;322724 +2183/11678;017-PtNairob: sapling (bench_fold_over_same_token);44.4162;0.199211;4.26145;403600;306920 +2184/11678;017-PtNairob: sapling (double_spend_same_input);26.0736;0.157191;2.6999;369376;272732 +2185/11678;017-PtNairob: sapling (verifyupdate_one_transaction);10.0242;0.108564;1.34289;339168;243320 +2186/11678;017-PtNairob: sapling (verifyupdate_two_transactions);19.9773;0.112164;2.18743;350280;254104 +2187/11678;017-PtNairob: sapling (shielded_tez);413.65;0.830051;35.6769;438984;341340 +2188/11678;017-PtNairob: sapling (use state from other contract and transact);2.61068;0.067551;0.66686;264088;167120 +2189/11678;017-PtNairob: sapling (Instruction PUSH sapling_state 0 should be forbidden);0.301812;0.019856;0.323161;193844;96140 +2190/11678;017-PtNairob: sapling (transac_and_block);10.1537;0.100292;1.3327;338940;241908 +2191/11678;017-PtNairob: sapling (drop);15.7944;0.087835;1.78529;269696;174252 +2192/11678;017-PtNairob: sapling (double);2.62762;0.064481;0.69444;262032;166288 +2193/11678;017-PtNairob: sapling (state_as_arg);2.6077;0.059355;0.674388;263172;166456 +2194/11678;017-PtNairob: lazy storage diff (conversion roundtrip);0.295405;0.023951;0.319464;193232;96396 +2195/11678;017-PtNairob: lazy storage diff (encoding roundtrip);0.306963;0.015946;0.323026;193232;96140 +2196/11678;017-PtNairob: lambda normalization (lambdas are normalized to optimized format during elaboration);0.35714;0.028089;0.385334;205872;109108 +2197/11678;017-PtNairob: interpretation (bad contract error);0.283053;0.03588;0.31903;192980;96140 +2198/11678;017-PtNairob: interpretation (check robustness overflow error);0.497207;0.028068;0.525373;241512;144680 +2199/11678;017-PtNairob: interpretation (check robustness overflow error in lwt);1.66661;0.047959;1.71466;289512;193068 +2200/11678;017-PtNairob: interpretation (multiplication no illegitimate overflow);0.313062;0.01204;0.3253;193204;96252 +2201/11678;017-PtNairob: interpretation (stack overflow error);0.504247;0.020009;0.524368;241544;144700 +2202/11678;017-PtNairob: interpretation (map instr against options);0.579785;0.035986;0.615889;217520;120616 +2203/11678;017-PtNairob: interpretation (lambda_rec instruction);0.269163;0.052225;0.321504;193108;96396 +2204/11678;017-PtNairob: interpretation (lambda_rec instruction with apply);0.311382;0.015968;0.327464;193204;96140 +2205/11678;017-PtNairob: interpretation (lambda_rec instruction with an infinite recursion);0.997098;0.096105;1.09352;880472;784932 +2206/11678;017-PtNairob: interpretation (lambda_rec instruction storage);0.306652;0.019912;0.32807;192944;96136 +2207/11678;017-PtNairob: interpretation (lambda_rec instruction storage apply store);0.297624;0.032175;0.330088;192980;96396 +2208/11678;017-PtNairob: interpretation (test error encoding: Reject);0.297736;0.020117;0.31797;193072;96140 +2209/11678;017-PtNairob: interpretation (test error encoding: Overflow);0.286827;0.027886;0.314815;192940;96136 +2210/11678;017-PtNairob: interpretation (test error encoding: Runtime_contract_error);0.286715;0.031857;0.318681;192944;96140 +2211/11678;017-PtNairob: interpretation (test error encoding: Bad_contract_parameter);0.287222;0.031913;0.319267;193196;96396 +2212/11678;017-PtNairob: interpretation (test error encoding: Cannot_serialize_failure);0.295249;0.023939;0.319283;193068;96140 +2213/11678;017-PtNairob: interpretation (test error encoding: Cannot_serialize_storage);0.282831;0.043818;0.326769;193072;96396 +2214/11678;017-PtNairob: global table of constants (Multiple blocks happy path);0.308158;0.024012;0.332296;193836;96140 +2215/11678;017-PtNairob: global table of constants (Bad register global operations fail when added to the block);0.302368;0.015914;0.318402;193072;96396 +2216/11678;017-PtNairob: global table of constants (You cannot register the same expression twice.);0.295335;0.027937;0.323371;193072;96396 +2217/11678;017-PtNairob: event logging (contract emits event with correct data in proper order);0.300643;0.020042;0.322143;192820;96136 +2218/11678;017-PtNairob: block time instructions (MIN_BLOCK_TIME gives current minimal block delay);0.292972;0.032106;0.325182;193072;96144 +2219/11678;017-PtNairob: annotations (External origination preserves annotations);0.302244;0.015907;0.318256;193072;96136 +2220/11678;017-PtNairob: annotations (Internal origination preserves annotations);0.300255;0.020017;0.320377;194100;96396 +2221/11678;017-PtNairob: gas levels (Detect gas exhaustion in fresh context);0.29566;0.019977;0.315736;193072;96100 +2222/11678;017-PtNairob: gas levels (Detect gas exhaustion when operation gas as hits zero);0.295269;0.02394;0.319313;192944;96132 +2223/11678;017-PtNairob: gas levels (Detect gas exhaustion when block gas as hits zero);0.312471;0.012018;0.324594;193328;96392 +2224/11678;017-PtNairob: gas levels (Detect gas limit consumption when it is above the hard gas operation limit);0.283499;0.031943;0.315551;193072;96140 +2225/11678;017-PtNairob: gas levels (Each new operation impacts block gas level, each gas consumption impacts operation gas level);0.28241;0.035798;0.318315;192944;96396 +2226/11678;017-PtNairob: gas levels (Switches operation gas consumption from limited to unlimited);0.288714;0.028069;0.316887;193068;96140 +2227/11678;017-PtNairob: gas levels (Switches operation gas consumption from unlimited to limited);0.291953;0.023996;0.316062;193068;96136 +2228/11678;017-PtNairob: gas levels (Accepts a block that consumes all of its gas);0.297276;0.02812;0.325497;193844;96136 +2229/11678;017-PtNairob: gas levels (Detect when the sum of all operation gas limits exceeds the hard gas limit per block);0.307501;0.015974;0.323587;193712;96396 +2230/11678;017-PtNairob: gas levels (Detect when gas limit of operation list exceeds the hard gas limit per block);0.28051;0.040072;0.320691;193712;96396 +2231/11678;017-PtNairob: gas levels (the gas consumption of various operations);0.3049;0.024071;0.329074;193708;96112 +2232/11678;017-PtNairob: gas levels (emptying an account costs gas);0.299288;0.019952;0.319344;194096;96392 +2233/11678;017-PtNairob: gas levels (bake one operation with contract nil);0.301395;0.024111;0.325629;193072;96216 +2234/11678;017-PtNairob: gas levels (bake one operation list with contract nil);0.295838;0.027984;0.323956;193868;96172 +2235/11678;017-PtNairob: gas levels (multiple single operations with contract nil);0.294343;0.03182;0.326273;193964;96136 +2236/11678;017-PtNairob: gas levels (both lists and single operations with contract nil);0.304471;0.024037;0.328621;193072;96396 +2237/11678;017-PtNairob: gas levels (bake one operation with contract fail);0.312965;0.012037;0.32511;193964;96084 +2238/11678;017-PtNairob: gas levels (bake one operation list with contract fail);0.295588;0.023966;0.319659;193068;96252 +2239/11678;017-PtNairob: gas levels (multiple single operations with contract fail);0.297505;0.028142;0.325754;193844;96140 +2240/11678;017-PtNairob: gas levels (both lists and single operations with contract fail);0.292751;0.028072;0.320937;193968;96140 +2241/11678;017-PtNairob: gas levels (bake one operation with contract infinite loop);0.299015;0.023921;0.323055;192944;96140 +2242/11678;017-PtNairob: gas levels (bake one operation list with contract infinite loop);0.296631;0.024051;0.320789;193068;96136 +2243/11678;017-PtNairob: gas levels (multiple single operations with contract infinite loop);0.295208;0.027925;0.32329;192948;96256 +2244/11678;017-PtNairob: gas levels (both lists and single operations with contract infinite loop);0.305557;0.028143;0.333815;193072;96140 +2245/11678;017-PtNairob: gas cost functions (Positivity of interpreter costs);0.289441;0.02814;0.317695;193072;96140 +2246/11678;017-PtNairob: gas cost functions (Positivity of typechecking costs);0.283414;0.031934;0.31551;193200;96264 +2247/11678;017-PtNairob: gas cost functions (Positivity of unparsing costs);0.282617;0.031844;0.314566;192944;96252 +2248/11678;017-PtNairob: gas cost functions (Positivity of io costs);0.286858;0.027889;0.314843;192944;96136 +2249/11678;017-PtNairob: seed (seed computation (no commitment));0.319481;0.027954;0.347548;194388;96396 +2250/11678;017-PtNairob: seed (no commitment);0.279977;0.039996;0.320095;194004;96396 +2251/11678;017-PtNairob: seed (revelation_early_wrong_right_twice);0.303517;0.023961;0.327601;194132;96304 +2252/11678;017-PtNairob: seed (revelation_missing_and_late);0.274849;0.055766;0.330785;194136;96212 +2253/11678;017-PtNairob: seed (unrevealed);0.304423;0.03605;0.340588;193204;96300 +2254/11678;017-PtNairob: seed (early_incorrect_unverified_correct_already_vdf);0.843636;0.031986;0.875727;195520;97992 +2255/11678;017-PtNairob: seed (VDF status);0.300067;0.020004;0.320192;193108;96392 +2256/11678;017-PtNairob: seed (for_cycle cycle bounds);0.308362;0.024028;0.332502;193108;96396 +2257/11678;017-PtNairob: preendorsement (AppMode: ok: include_preendorsement_in_block_with_locked_round);0.304354;0.016018;0.320479;193836;96140 +2258/11678;017-PtNairob: preendorsement (AppMode: ko: duplicate_preendorsement_in_pqc);0.293398;0.036172;0.329693;193844;96396 +2259/11678;017-PtNairob: preendorsement (AppMode: ko:locked_round_not_before_block_round);0.294581;0.027865;0.322569;193708;96140 +2260/11678;017-PtNairob: preendorsement (AppMode: ko: with_locked_round_in_block_but_without_any_pqc);0.288488;0.040067;0.328664;193964;96136 +2261/11678;017-PtNairob: preendorsement (AppMode: ko: preendorsement_has_wrong_level);0.28346;0.039924;0.323467;193016;96400 +2262/11678;017-PtNairob: preendorsement (AppMode: ok: preendorsement_in_block_with_good_slot);0.301133;0.020075;0.321291;193620;96200 +2263/11678;017-PtNairob: preendorsement (AppMode: ko: preendorsement_in_block_with_wrong_slot);0.295232;0.027927;0.323266;194092;96396 +2264/11678;017-PtNairob: preendorsement (AppMode: ko: preendorsement_in_block_with_wrong_signature);0.297866;0.024151;0.322115;193860;96304 +2265/11678;017-PtNairob: preendorsement (AppMode: ko: locked_round_is_higher_than_pqc_round);0.308601;0.012023;0.320727;193584;96136 +2266/11678;017-PtNairob: preendorsement (ConstrMode: ok: include_preendorsement_in_block_with_locked_round);0.305517;0.020099;0.325748;193200;96400 +2267/11678;017-PtNairob: preendorsement (ConstrMode: ko: duplicate_preendorsement_in_pqc);0.292904;0.028086;0.321103;194080;96400 +2268/11678;017-PtNairob: preendorsement (ConstrMode: ko:locked_round_not_before_block_round);0.27169;0.047945;0.319761;193584;96384 +2269/11678;017-PtNairob: preendorsement (ConstrMode: ko: with_locked_round_in_block_but_without_any_pqc);0.298436;0.027854;0.326397;192944;96140 +2270/11678;017-PtNairob: preendorsement (ConstrMode: ko: preendorsement_has_wrong_level);0.295777;0.023981;0.319865;193068;96396 +2271/11678;017-PtNairob: preendorsement (ConstrMode: ok: preendorsement_in_block_with_good_slot);0.304593;0.024046;0.328744;193328;96396 +2272/11678;017-PtNairob: preendorsement (ConstrMode: ko: preendorsement_in_block_with_wrong_slot);0.30925;0.016064;0.325437;193584;96140 +2273/11678;017-PtNairob: preendorsement (ConstrMode: ko: preendorsement_in_block_with_wrong_signature);0.301518;0.016081;0.317705;193580;96140 +2274/11678;017-PtNairob: preendorsement (ConstrMode: ko: locked_round_is_higher_than_pqc_round);0.298277;0.023862;0.322258;192944;96140 +2275/11678;017-PtNairob: preendorsement (Preendorsement with arbitrary branch);0.291935;0.031992;0.324033;193068;96136 +2276/11678;017-PtNairob: preendorsement (Preendorsement for future level);0.297226;0.024099;0.321438;193200;96396 +2277/11678;017-PtNairob: preendorsement (Preendorsement for old level);0.291532;0.031948;0.323557;193560;96216 +2278/11678;017-PtNairob: preendorsement (Preendorsement for future round);0.292333;0.032036;0.324482;193068;96136 +2279/11678;017-PtNairob: preendorsement (Preendorsement for old round);0.294996;0.023918;0.319027;193708;96144 +2280/11678;017-PtNairob: preendorsement (Preendorsement on competing proposal);0.300798;0.024063;0.324952;193476;96432 +2281/11678;017-PtNairob: preendorsement (Unexpected preendorsements in blocks);0.300377;0.028035;0.328519;193840;96396 +2282/11678;017-PtNairob: preendorsement (Preendorsements round too high);0.28305;0.035879;0.319033;193200;96396 +2283/11678;017-PtNairob: preendorsement (Duplicate preendorsement);0.299293;0.023943;0.323341;194128;96424 +2284/11678;017-PtNairob: preendorsement (Preendorsement for next level);0.288909;0.036113;0.325122;192944;96292 +2285/11678;017-PtNairob: preendorsement (Preendorsement for next round);0.28592;0.032216;0.318234;194096;96396 +2286/11678;017-PtNairob: participation monitoring (insufficient participation);0.309192;0.020077;0.329381;192948;96140 +2287/11678;017-PtNairob: participation monitoring (minimal participation);0.312998;0.016051;0.329159;194228;96392 +2288/11678;017-PtNairob: participation monitoring (participation RPC);0.297014;0.024082;0.321197;193200;96396 +2289/11678;017-PtNairob: helpers rpcs (baking_rights);0.28247;0.039784;0.32237;193108;96392 +2290/11678;017-PtNairob: frozen deposits (invariants);0.28152;0.040217;0.321845;194004;96392 +2291/11678;017-PtNairob: frozen deposits (set deposits limit to 0%);0.325786;0.036198;0.362087;193068;96396 +2292/11678;017-PtNairob: frozen deposits (set deposits limit to 5%);0.308636;0.024049;0.332785;194092;96304 +2293/11678;017-PtNairob: frozen deposits (unset deposits limit);0.337648;0.020098;0.357853;192980;96140 +2294/11678;017-PtNairob: frozen deposits (cannot bake with zero deposits);0.320449;0.032044;0.352594;192944;96140 +2295/11678;017-PtNairob: frozen deposits (deposits after stake removal);0.317967;0.020124;0.338191;193196;96392 +2296/11678;017-PtNairob: frozen deposits (unfreeze deposits after deactivation);0.383066;0.035912;0.419086;193072;96392 +2297/11678;017-PtNairob: frozen deposits (frozen deposits with delegation);0.304648;0.044093;0.34884;193072;96140 +2298/11678;017-PtNairob: frozen deposits (frozen deposits with overdelegation);0.327454;0.027953;0.355507;193204;96396 +2299/11678;017-PtNairob: frozen deposits (set limit with overdelegation);0.363394;0.027953;0.391483;193860;96640 +2300/11678;017-PtNairob: frozen deposits (error is thrown when the frozen window is smaller);0.305478;0.024116;0.329701;194224;96396 +2301/11678;017-PtNairob: endorsement (Simple endorsement);0.292891;0.028085;0.321088;193880;96396 +2302/11678;017-PtNairob: endorsement (Arbitrary branch);0.297065;0.024086;0.321332;193752;96296 +2303/11678;017-PtNairob: endorsement (Non-zero round);0.309572;0.012061;0.321762;193236;96140 +2304/11678;017-PtNairob: endorsement (Fitness gap);0.280922;0.040131;0.321166;193364;96396 +2305/11678;017-PtNairob: endorsement (Mempool: non-smallest slot);0.285748;0.040246;0.326168;193876;96336 +2306/11678;017-PtNairob: endorsement (Endorsement with slot -1);0.28386;0.035982;0.319959;193876;96304 +2307/11678;017-PtNairob: endorsement (Non-normalized slot);0.288242;0.032026;0.320381;193488;96292 +2308/11678;017-PtNairob: endorsement (Not own slot);0.293033;0.028099;0.3213;193872;96272 +2309/11678;017-PtNairob: endorsement (Mempool: not own slot);0.295495;0.027952;0.323558;194260;96396 +2310/11678;017-PtNairob: endorsement (One level too old);0.288556;0.036069;0.324723;194128;96396 +2311/11678;017-PtNairob: endorsement (Two levels too old);0.29181;0.035976;0.327905;193876;96392 +2312/11678;017-PtNairob: endorsement (One level in the future);0.301412;0.020094;0.321624;193748;96392 +2313/11678;017-PtNairob: endorsement (Two levels in the future);0.276429;0.044068;0.3206;193232;96396 +2314/11678;017-PtNairob: endorsement (One round too old);0.292842;0.032092;0.32506;193364;96396 +2315/11678;017-PtNairob: endorsement (Many rounds too old);0.284927;0.036117;0.321148;193876;96140 +2316/11678;017-PtNairob: endorsement (One round in the future);0.291317;0.027934;0.319392;194136;96392 +2317/11678;017-PtNairob: endorsement (Many rounds in the future);0.274271;0.043724;0.31817;194004;96136 +2318/11678;017-PtNairob: endorsement (Wrong payload hash);0.305432;0.024113;0.329644;193876;96136 +2319/11678;017-PtNairob: endorsement (Conflict);0.309375;0.020089;0.32957;193616;96208 +2320/11678;017-PtNairob: endorsement (Grandparent conflict);0.282745;0.035841;0.318702;193876;96140 +2321/11678;017-PtNairob: endorsement (Future level conflict);0.306244;0.024177;0.330539;193620;96396 +2322/11678;017-PtNairob: endorsement (No conflict with preendorsement (mempool));0.295753;0.031973;0.327826;193712;96136 +2323/11678;017-PtNairob: endorsement (No conflict with preendorsement (block));0.303353;0.015965;0.319428;193712;96140 +2324/11678;017-PtNairob: endorsement (No conflict with various levels and rounds);0.310351;0.019894;0.330375;193840;96140 +2325/11678;017-PtNairob: endorsement (sufficient endorsement threshold);0.280371;0.040053;0.320555;193840;96140 +2326/11678;017-PtNairob: endorsement (insufficient endorsement threshold);0.292343;0.032037;0.324463;194008;96652 +2327/11678;017-PtNairob: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_same_payload_hash_1);0.299894;0.019992;0.319999;193580;96216 +2328/11678;017-PtNairob: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_same_payload_hash_2);0.292977;0.028093;0.321199;193844;96396 +2329/11678;017-PtNairob: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_different_rounds);0.315196;0.007979;0.323332;193712;96324 +2330/11678;017-PtNairob: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_same_preendorsement);0.291014;0.031892;0.323004;193332;96272 +2331/11678;017-PtNairob: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_different_validators);0.280083;0.044013;0.324203;193888;96352 +2332/11678;017-PtNairob: double preendorsement (AppMode: double_preendorsement_just_after_upgrade);0.298891;0.023911;0.322905;194228;96396 +2333/11678;017-PtNairob: double preendorsement (AppMode: double_preendorsement_denunciation_during_slashing_period);0.292944;0.032103;0.325167;193964;96140 +2334/11678;017-PtNairob: double preendorsement (AppMode: double_preendorsement_denunciation_after_slashing_period);0.305988;0.027817;0.33392;193972;96296 +2335/11678;017-PtNairob: double preendorsement (AppMode: valid double preendorsement injected multiple times);0.297788;0.024145;0.322041;193964;96308 +2336/11678;017-PtNairob: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_same_payload_hash_1);0.291818;0.035977;0.327999;193076;96132 +2337/11678;017-PtNairob: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_same_payload_hash_2);0.296654;0.028061;0.32486;192944;96136 +2338/11678;017-PtNairob: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_different_rounds);0.295445;0.023955;0.319508;192940;96140 +2339/11678;017-PtNairob: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_same_preendorsement);0.295009;0.023919;0.319037;192944;96140 +2340/11678;017-PtNairob: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_different_validators);0.317883;0.008047;0.326028;193712;96140 +2341/11678;017-PtNairob: double preendorsement (ConstrMode: double_preendorsement_just_after_upgrade);0.313503;0.016077;0.329687;193068;96144 +2342/11678;017-PtNairob: double preendorsement (ConstrMode: double_preendorsement_denunciation_during_slashing_period);0.292519;0.032056;0.32468;192944;96144 +2343/11678;017-PtNairob: double preendorsement (ConstrMode: double_preendorsement_denunciation_after_slashing_period);0.304934;0.028086;0.333132;193072;96136 +2344/11678;017-PtNairob: double preendorsement (ConstrMode: valid double preendorsement injected multiple times);0.299553;0.023964;0.323616;194228;96144 +2345/11678;017-PtNairob: double endorsement (valid double endorsement evidence);0.295992;0.023999;0.32009;194092;96396 +2346/11678;017-PtNairob: double endorsement (valid evidence with same (pre)endorsements on different branches);0.309395;0.016072;0.325584;193072;96144 +2347/11678;017-PtNairob: double endorsement (valid evidence with same (pre)endorsements on different slots);0.288156;0.032017;0.320276;193072;96392 +2348/11678;017-PtNairob: double endorsement (2 valid double endorsement evidences lead to not being able to bake);0.283037;0.04385;0.327122;192944;96140 +2349/11678;017-PtNairob: double endorsement (valid double endorsement injected multiple time);0.300164;0.028015;0.328299;192820;96140 +2350/11678;017-PtNairob: double endorsement (invalid double endorsement evidence);0.293558;0.03217;0.32583;193964;96392 +2351/11678;017-PtNairob: double endorsement (another invalid double endorsement evidence);0.280708;0.044111;0.324922;194092;96140 +2352/11678;017-PtNairob: double endorsement (too early double endorsement evidence);0.305353;0.016071;0.32159;193196;96280 +2353/11678;017-PtNairob: double endorsement (too late double endorsement evidence);0.306318;0.023868;0.330374;192944;96120 +2354/11678;017-PtNairob: double endorsement (different delegates);0.305902;0.020125;0.326157;194128;96396 +2355/11678;017-PtNairob: double endorsement (wrong delegate);0.292066;0.036008;0.328173;194260;96300 +2356/11678;017-PtNairob: double endorsement (freeze available balance after slashing);0.367423;0.035943;0.403487;193072;96392 +2357/11678;017-PtNairob: double baking (valid double baking evidence);0.303304;0.019954;0.323367;193968;96140 +2358/11678;017-PtNairob: double baking (payload producer receives the rewards for double baking evidence);0.31481;0.011954;0.326906;193840;96280 +2359/11678;017-PtNairob: double baking (same blocks);0.295297;0.023943;0.319357;193108;96396 +2360/11678;017-PtNairob: double baking (incorrect order);0.290506;0.035815;0.326427;193364;96360 +2361/11678;017-PtNairob: double baking (different levels);0.292238;0.028022;0.320417;193232;96432 +2362/11678;017-PtNairob: double baking (too early double baking evidence);0.286531;0.035816;0.322449;193072;96140 +2363/11678;017-PtNairob: double baking (too late double baking evidence);0.292065;0.036008;0.328176;193972;96140 +2364/11678;017-PtNairob: double baking (just in time double baking evidence);0.288214;0.036026;0.324341;194096;96140 +2365/11678;017-PtNairob: double baking (different delegates);0.304909;0.020059;0.325075;193232;96144 +2366/11678;017-PtNairob: double baking (wrong delegate);0.301267;0.020084;0.321451;193748;96304 +2367/11678;017-PtNairob: double baking (reject double injection of an evidence);0.303387;0.027943;0.331444;194096;96140 +2368/11678;017-PtNairob: double baking (double baking followed by double endorsing);0.305772;0.020116;0.325987;193200;96396 +2369/11678;017-PtNairob: double baking (double endorsing followed by double baking);0.303378;0.02395;0.327428;193968;96136 +2370/11678;017-PtNairob: delegation (bootstrap contracts delegate to themselves);0.289361;0.028132;0.317602;193200;96400 +2371/11678;017-PtNairob: delegation (bootstrap contracts can change their delegate (small fee));0.28801;0.032001;0.32013;193072;96396 +2372/11678;017-PtNairob: delegation (bootstrap contracts can change their delegate (max fee));0.286907;0.031878;0.318891;193076;96140 +2373/11678;017-PtNairob: delegation (bootstrap contracts cannot remove their delegation (small fee));0.290962;0.035872;0.326951;193964;96396 +2374/11678;017-PtNairob: delegation (bootstrap contracts cannot remove their delegation (max fee));0.296114;0.024009;0.32023;192944;96136 +2375/11678;017-PtNairob: delegation (contracts not registered as delegate can change their delegation (small fee));0.291215;0.027924;0.31922;194036;96312 +2376/11678;017-PtNairob: delegation (contracts not registered as delegate can change their delegation (max fee));0.300813;0.020054;0.320968;193844;96140 +2377/11678;017-PtNairob: delegation (contracts not registered as delegate can remove their delegation (small fee));0.30429;0.020019;0.324416;193324;96396 +2378/11678;017-PtNairob: delegation (contracts not registered as delegate can remove their delegation (max fee));0.29795;0.020131;0.318189;193072;96396 +2379/11678;017-PtNairob: delegation (bootstrap keys are already registered as delegate keys (small fee));0.273875;0.044303;0.318296;193068;96396 +2380/11678;017-PtNairob: delegation (bootstrap keys are already registered as delegate keys (max fee));0.297647;0.028155;0.3259;192948;96188 +2381/11678;017-PtNairob: delegation (bootstrap manager can be delegate (init origination, small fee));0.295754;0.019983;0.315845;193204;96136 +2382/11678;017-PtNairob: delegation (bootstrap manager can be delegate (init origination, edge case));0.296902;0.028085;0.325099;193072;96308 +2383/11678;017-PtNairob: delegation (bootstrap manager can be delegate (init origination, large fee));0.279558;0.039936;0.319615;193332;96400 +2384/11678;017-PtNairob: delegation (originated bootstrap contract can be undelegated);0.299529;0.023962;0.323598;193324;96412 +2385/11678;017-PtNairob: delegation (originated bootstrap contract can be delegated);0.277388;0.040201;0.317723;192944;96140 +2386/11678;017-PtNairob: delegation (TEST);0.287098;0.035887;0.323102;194128;96304 +2387/11678;017-PtNairob: delegation (unregistered delegate key (origination, small fee));0.282452;0.035803;0.318358;192948;96140 +2388/11678;017-PtNairob: delegation (unregistered delegate key (origination, edge case fee));0.289185;0.032131;0.321423;193196;96140 +2389/11678;017-PtNairob: delegation (unregistered delegate key (origination, large fee));0.312089;0.012003;0.324198;193200;96388 +2390/11678;017-PtNairob: delegation (unregistered delegate key (init with delegation, small fee));0.291111;0.031902;0.323123;193324;96396 +2391/11678;017-PtNairob: delegation (unregistered delegate key (init with delegation, max fee));0.287637;0.039949;0.327733;192944;96244 +2392/11678;017-PtNairob: delegation (unregistered delegate key (switch with delegation, small fee));0.288788;0.032087;0.320988;194092;96140 +2393/11678;017-PtNairob: delegation (unregistered delegate key (switch with delegation, max fee));0.290752;0.031863;0.322778;193964;96128 +2394/11678;017-PtNairob: delegation (unregistered delegate key - credit/debit 1μꜩ (origination, small fee));0.293243;0.032136;0.325481;193200;96140 +2395/11678;017-PtNairob: delegation (unregistered delegate key - credit/debit 1μꜩ (origination, large fee));0.299241;0.027929;0.327295;193072;96136 +2396/11678;017-PtNairob: delegation (unregistered delegate key - credit/debit 1μꜩ (init with delegation, small fee));0.291674;0.035959;0.327741;193204;96396 +2397/11678;017-PtNairob: delegation (unregistered delegate key - credit/debit 1μꜩ (init with delegation, large fee));0.302717;0.023898;0.326715;194224;96396 +2398/11678;017-PtNairob: delegation (unregistered delegate key - credit/debit 1μꜩ (switch with delegation, small fee));0.293161;0.028111;0.321392;193968;96144 +2399/11678;017-PtNairob: delegation (unregistered delegate key - credit/debit 1μꜩ (switch with delegation, large fee));0.313286;0.016065;0.329491;194096;96276 +2400/11678;017-PtNairob: delegation (unregistered delegate key - credit 1μꜩ (origination, small fee));0.291272;0.03192;0.32335;193968;96224 +2401/11678;017-PtNairob: delegation (unregistered delegate key - credit 1μꜩ (origination, edge case fee));0.299398;0.027943;0.327458;193200;96140 +2402/11678;017-PtNairob: delegation (unregistered delegate key - credit 1μꜩ (origination, large fee));0.275949;0.047991;0.324074;193072;96140 +2403/11678;017-PtNairob: delegation (unregistered delegate key - credit 1μꜩ (init with delegation, small fee));0.294471;0.031834;0.326433;194092;96140 +2404/11678;017-PtNairob: delegation (unregistered delegate key - credit 1μꜩ (init with delegation, large fee));0.26463;0.056133;0.320863;193200;96396 +2405/11678;017-PtNairob: delegation (unregistered delegate key - credit 1μꜩ (switch with delegation, small fee));0.302017;0.027817;0.329944;192996;96236 +2406/11678;017-PtNairob: delegation (unregistered delegate key - credit 1μꜩ (switch with delegation, large fee));0.307905;0.023992;0.332005;193712;96140 +2407/11678;017-PtNairob: delegation (unregistered and unrevealed self-delegation (small fee));0.29633;0.032035;0.328528;193944;96168 +2408/11678;017-PtNairob: delegation (unregistered and unrevealed self-delegation (large fee));0.286879;0.035859;0.322846;193068;96140 +2409/11678;017-PtNairob: delegation (unregistered and revealed self-delegation (small fee));0.299751;0.019983;0.319854;193072;96136 +2410/11678;017-PtNairob: delegation (unregistered and revealed self-delegation large fee));0.300448;0.028041;0.328599;193964;96140 +2411/11678;017-PtNairob: delegation (unregistered and revealed self-delegation (fee = balance));0.311293;0.015963;0.327376;193820;96152 +2412/11678;017-PtNairob: delegation (registered and revealed self-delegation);0.307194;0.011968;0.319308;194220;96136 +2413/11678;017-PtNairob: delegation (failed self-delegation: no transaction);0.288704;0.032078;0.32094;193072;96220 +2414/11678;017-PtNairob: delegation (failed self-delegation: credit & debit 1μꜩ);0.305043;0.016054;0.321242;193332;96396 +2415/11678;017-PtNairob: delegation (empty delegated contract is not deleted: credit 1μꜩ, delegate & debit 1μꜩ);0.293088;0.028104;0.321304;194096;96140 +2416/11678;017-PtNairob: delegation (valid delegate registration: credit 1μꜩ, self delegation (init with delegation));0.300608;0.024048;0.324764;193716;96224 +2417/11678;017-PtNairob: delegation (valid delegate registration: credit 1μꜩ, self delegation (switch with delegation));0.295661;0.027967;0.32375;193712;96304 +2418/11678;017-PtNairob: delegation (valid delegate registration: credit 1μꜩ, self delegation, debit 1μꜩ (init with delegation));0.296638;0.02806;0.324845;193196;96396 +2419/11678;017-PtNairob: delegation (valid delegate registration: credit 1μꜩ, self delegation, debit 1μꜩ (switch with delegation));0.291843;0.031982;0.323934;193964;96396 +2420/11678;017-PtNairob: delegation (double registration);0.286503;0.031833;0.318436;194004;96140 +2421/11678;017-PtNairob: delegation (double registration when delegate account is emptied);0.297404;0.028132;0.32564;193968;96140 +2422/11678;017-PtNairob: delegation (double registration when delegate account is emptied and then recredited);0.292823;0.03209;0.325025;194096;96396 +2423/11678;017-PtNairob: deactivation (simple staking rights);0.289245;0.036155;0.325499;193236;96396 +2424/11678;017-PtNairob: deactivation (simple staking rights after baking);0.303181;0.019946;0.323255;193964;96136 +2425/11678;017-PtNairob: deactivation (deactivation then bake);0.314025;0.028181;0.342331;193104;96140 +2426/11678;017-PtNairob: deactivation (deactivation then self delegation);0.314228;0.023865;0.338285;193840;96140 +2427/11678;017-PtNairob: deactivation (deactivation then empty then self delegation);0.338453;0.035836;0.374411;194220;96396 +2428/11678;017-PtNairob: deactivation (deactivation then empty then self delegation then recredit);0.358609;0.019922;0.378635;192944;96140 +2429/11678;017-PtNairob: deactivation (delegate);0.285352;0.036171;0.32163;193076;96396 +2430/11678;017-PtNairob: deactivation (a really deactivated account is not part of the committee);0.373284;0.024082;0.397481;193072;96140 +2431/11678;017-PtNairob: consensus key (drain delegate high balance, excluding ck, ck delegates);0.311543;0.027958;0.339596;194096;96140 +2432/11678;017-PtNairob: consensus key (drain delegate high balance, excluding ck, ck does not delegate);0.295363;0.039913;0.335383;193840;96308 +2433/11678;017-PtNairob: consensus key (drain delegate high balance, with ck, ck delegates);0.286478;0.051725;0.33838;193968;96140 +2434/11678;017-PtNairob: consensus key (drain delegate high balance, with ck, ck does not delegate);0.315904;0.03199;0.348035;193204;96368 +2435/11678;017-PtNairob: consensus key (drain delegate low balance, excluding ck, ck delegates);0.301137;0.040151;0.341389;194096;96396 +2436/11678;017-PtNairob: consensus key (drain delegate low balance, excluding ck, ck does not delegate);0.315298;0.023946;0.339361;193068;96140 +2437/11678;017-PtNairob: consensus key (drain delegate low balance, with ck, ck delegates);0.295833;0.039977;0.335918;193968;96136 +2438/11678;017-PtNairob: consensus key (drain delegate low balance, with ck, ck does not delegate);0.30728;0.023943;0.331329;194224;96392 +2439/11678;017-PtNairob: consensus key (empty drain delegate excluding ck);0.307145;0.027922;0.335169;193068;96140 +2440/11678;017-PtNairob: consensus key (empty drain delegate with ck);0.335208;0.015962;0.351276;193840;96080 +2441/11678;017-PtNairob: consensus key (tz4 consensus key);0.313907;0.012073;0.326085;193236;96396 +2442/11678;017-PtNairob: consensus key (endorsement with ck);0.293034;0.036127;0.32926;192980;96140 +2443/11678;017-PtNairob: baking (cycle);0.301766;0.024141;0.326026;194132;96136 +2444/11678;017-PtNairob: baking (bake_n_cycles for 12 cycles);0.385061;0.008022;0.393199;192980;96136 +2445/11678;017-PtNairob: baking (voting_power);0.308263;0.016013;0.324385;194128;96352 +2446/11678;017-PtNairob: baking (the fixed baking reward is given after a bake);0.296825;0.028078;0.325013;193200;96304 +2447/11678;017-PtNairob: baking (the block producer gets the bonus while the payload producer gets the baking reward );0.286642;0.03583;0.322584;193836;96140 +2448/11678;017-PtNairob: baking (a delegate with 8000 tez can bake);0.309772;0.012069;0.321957;193076;96400 +2449/11678;017-PtNairob: baking (a delegate with 7999 tez cannot bake);0.280894;0.04414;0.325135;193072;96396 +2450/11678;017-PtNairob: baking (committee sampling);0.371769;0.019987;0.391854;203732;107052 +2451/11678;017-PtNairob: token movements (transfer - balances);0.283341;0.035916;0.319361;192984;96136 +2452/11678;017-PtNairob: token movements (transfer - balance updates);0.293272;0.024104;0.317484;193068;96136 +2453/11678;017-PtNairob: token movements (transfer - test allocated);0.293071;0.024088;0.317259;192948;96220 +2454/11678;017-PtNairob: token movements (transfer - test transfer to receiver);0.30333;0.019955;0.323401;193072;96140 +2455/11678;017-PtNairob: token movements (transfer - test transfer from giver);0.295828;0.027983;0.323914;193076;96396 +2456/11678;017-PtNairob: token movements (transfer - test all (givers x receivers));0.295903;0.023992;0.32;193076;96312 +2457/11678;017-PtNairob: token movements (transfer - test from no giver to a receiver);0.292629;0.02806;0.320797;192940;96136 +2458/11678;017-PtNairob: token movements (transfer - test from n givers to a receiver);0.308222;0.016011;0.324339;192944;96140 +2459/11678;017-PtNairob: storage tests (fold_keys_unaccounted smoke test);0.270925;0.04781;0.318838;192944;96140 +2460/11678;017-PtNairob: storage tests (length test);0.282615;0.035824;0.318557;192976;96136 +2461/11678;017-PtNairob: storage description (register single data in existing path);0.290738;0.027879;0.318718;192940;96140 +2462/11678;017-PtNairob: storage description (register named subcontext in existing path);0.287505;0.027951;0.315573;192944;96396 +2463/11678;017-PtNairob: storage description (register indexed subcontext in existing path);0.29882;0.015937;0.314866;193068;96140 +2464/11678;017-PtNairob: storage description (register indexed subcontext with existing indexed subcontext);0.290655;0.027871;0.318641;193072;96344 +2465/11678;017-PtNairob: liquidity baking (liquidity baking script hashes);0.307574;0.015977;0.323661;192944;96140 +2466/11678;017-PtNairob: liquidity baking (liquidity baking cpmm is originated at the expected address);0.288068;0.028006;0.316174;192940;96144 +2467/11678;017-PtNairob: liquidity baking (Init Context);0.308204;0.028018;0.336329;194132;96140 +2468/11678;017-PtNairob: liquidity baking (liquidity baking subsidy is correct);0.323009;0.027914;0.351028;193200;96396 +2469/11678;017-PtNairob: liquidity baking (liquidity baking toggle vote with 100% of bakers voting LB_off baking one block longer);0.508735;0.048069;0.556916;197548;99628 +2470/11678;017-PtNairob: liquidity baking (liquidity baking toggle vote with 100% of bakers voting LB_off baking two blocks longer);0.522132;0.023914;0.546172;197424;99624 +2471/11678;017-PtNairob: liquidity baking (liquidity baking toggle vote with 100% of bakers voting LB_off baking 100 blocks longer);0.51804;0.035864;0.554025;197804;99888 +2472/11678;017-PtNairob: liquidity baking (liquidity baking toggle vote with 80% of bakers voting LB_off baking one block longer);0.600848;0.040056;0.64102;200880;102960 +2473/11678;017-PtNairob: liquidity baking (liquidity baking toggle vote with 80% of bakers voting LB_off baking two blocks longer);0.66082;0.028034;0.688999;199860;103024 +2474/11678;017-PtNairob: liquidity baking (liquidity baking toggle vote with 80% of bakers voting LB_off baking 100 blocks longer);1.31998;0.047999;1.36809;200496;103732 +2475/11678;017-PtNairob: liquidity baking (liquidity baking toggle vote with 60% of bakers voting LB_off baking one block longer);0.859346;0.031975;0.891441;205996;108340 +2476/11678;017-PtNairob: liquidity baking (liquidity baking toggle vote with 60% of bakers voting LB_off baking two blocks longer);0.96556;0.028045;0.993696;204720;107828 +2477/11678;017-PtNairob: liquidity baking (liquidity baking toggle vote with 60% of bakers voting LB_off baking 100 blocks longer);0.879124;0.031968;0.911222;205996;108080 +2478/11678;017-PtNairob: liquidity baking (liquidity baking does not shut off with toggle vote at 50% and baking 100 blocks longer than sunset level in previous protocols);2.39736;0.052029;2.44947;205104;108328 +2479/11678;017-PtNairob: liquidity baking (liquidity baking restart with 100% of bakers voting off, then pass, then on);1.02496;0.016015;1.04108;204844;108080 +2480/11678;017-PtNairob: liquidity baking (liquidity baking toggle ema in block metadata is zero with no bakers voting LB_off.);0.317312;0.020083;0.337685;193964;96116 +2481/11678;017-PtNairob: liquidity baking (liquidity baking toggle ema is equal to the threshold after the subsidy has been stopped by a toggle vote);0.562152;0.019934;0.582242;196652;99632 +2482/11678;017-PtNairob: liquidity baking (liquidity baking storage is updated);0.286512;0.039793;0.326406;194096;96360 +2483/11678;017-PtNairob: liquidity baking (liquidity baking balance updates);0.36767;0.015985;0.383757;193072;96208 +2484/11678;017-PtNairob: liquidity baking (liquidity baking CPMM address in storage matches address in the origination result);0.30742;0.019962;0.3275;193708;96140 +2485/11678;017-PtNairob: liquidity baking (liquidity baking CPMM balance in origination result is 100 mutez);0.278727;0.0438;0.322631;193324;96392 +2486/11678;017-PtNairob: liquidity baking (liquidity baking LQT contract is originated at expected address);0.292021;0.032002;0.324128;193072;96308 +2487/11678;017-PtNairob: liquidity baking (liquidity baking LQT balance in origination result is 0 mutez);0.289271;0.036158;0.325522;193032;96220 +2488/11678;017-PtNairob: liquidity baking (liquidity baking originates three contracts when tzBTC does not exist and level indicates we are not on mainnet);0.276147;0.044023;0.320282;193196;96396 +2489/11678;017-PtNairob: liquidity baking (liquidity baking originates three contracts when tzBTC does not exist and level indicates we might be on mainnet);0.302928;0.023915;0.326956;194096;96392 +2490/11678;017-PtNairob: frozen bonds (frozen bonds - delegate then freeze);0.297759;0.028166;0.326032;193068;96140 +2491/11678;017-PtNairob: frozen bonds (frozen bonds - freeze then delegate);0.293114;0.024091;0.317313;193200;96396 +2492/11678;017-PtNairob: frozen bonds (frozen bonds - contract remains allocated, user is not a delegate);0.281171;0.03615;0.31743;193196;96140 +2493/11678;017-PtNairob: frozen bonds (frozen bonds - contract remains allocated, user is a delegate);0.291706;0.027971;0.319824;193100;96368 +2494/11678;017-PtNairob: frozen bonds (frozen bonds - total stake, user is not a delegate);0.289502;0.028146;0.31776;192944;96104 +2495/11678;017-PtNairob: frozen bonds (frozen bonds - total stake, user is a delegate);0.287382;0.031931;0.319432;192944;96140 +2496/11678;017-PtNairob: frozen bonds (frozen bonds - delegated balance);0.285837;0.032207;0.318171;193332;96436 +2497/11678;017-PtNairob: frozen bonds (frozen bonds - test rpcs);0.28644;0.031826;0.318428;193080;96296 +2498/11678;017-PtNairob: frozen bonds (delegate, freeze, unfreeze, undelegate);0.291506;0.027952;0.319556;193204;96140 +2499/11678;017-PtNairob: frozen bonds (delegate, freeze, undelegate, unfreeze);0.263018;0.055791;0.318918;193204;96140 +2500/11678;017-PtNairob: frozen bonds (delegate, double freeze, undelegate, unfreeze);0.295625;0.019974;0.315703;193076;96396 +2501/11678;017-PtNairob: frozen bonds (delegate, freeze, redelegate, unfreeze);0.280361;0.040051;0.320527;193072;96140 +2502/11678;017-PtNairob: frozen bonds (delegate, freeze, unfreeze, freeze, redelegate);0.296958;0.024077;0.321143;193200;96136 +2503/11678;017-PtNairob: frozen bonds (delegate, freeze, slash, undelegate);0.282537;0.035814;0.318456;192948;96140 +2504/11678;017-PtNairob: constants (constants consistency);0.294405;0.027849;0.322427;193076;96396 +2505/11678;017-PtNairob: constants (max_operations_ttl);0.294551;0.023882;0.318536;193108;96396 +2506/11678;017-PtNairob: constants (sc rollup challenge window less than max lookahead);0.2964;0.020027;0.316539;192812;96136 +2507/11678;017-PtNairob: constants (sc rollup max commitment storage cost less than deposit);0.299406;0.023952;0.323481;193072;96136 +2508/11678;017-PtNairob: constants (sc rollup commitment storage size correct);0.281618;0.032184;0.313964;192796;96108 +2509/11678;017-PtNairob: constants (liquidity_baking_subsidy parameter is 1/16th of total baking rewards);0.292813;0.028077;0.321;193200;96396 +2510/11678;017-PtNairob/plugin: fee_needed_to_replace_by_fee: non-manager operations;0.362766;0.027905;0.39078;200240;103476 +2511/11678;017-PtNairob/plugin: fee_needed_to_replace_by_fee: hand-picked fee and gas;0.349155;0.032106;0.381384;193328;96564 +2512/11678;017-PtNairob/plugin: fee_needed_to_replace_by_fee: random fee, gas, and config;0.529478;0.0361;0.565685;233064;136500 +2513/11678;017-PtNairob/plugin: fee_needed_to_overtake: non-manager operations;0.37692;0.032078;0.409107;203316;106552 +2514/11678;017-PtNairob/plugin: fee_needed_to_overtake: hand-picked fee and gas;0.319368;0.035929;0.355394;193196;96396 +2515/11678;017-PtNairob/plugin: fee_needed_to_overtake: random fee and gas;0.541251;0.016037;0.557406;230344;133380 +2516/11678;017-PtNairob: pre_filter (acceptable past op );0.296145;0.024011;0.320262;193108;96136 +2517/11678;017-PtNairob: pre_filter (same round, same level );0.2798;0.035974;0.315917;192980;96140 +2518/11678;017-PtNairob: pre_filter (same level, different round, acceptable op);0.290263;0.027833;0.31824;192948;96136 +2519/11678;017-PtNairob: pre_filter (same level, different round, too far);0.30925;0.012048;0.321411;193200;96396 +2520/11678;017-PtNairob: pre_filter (next level, acceptable op);0.278769;0.039824;0.318693;192980;96140 +2521/11678;017-PtNairob: pre_filter (next level, too far);0.285455;0.028143;0.313709;192984;96140 +2522/11678;017-PtNairob/plugin: conflict_handler: non-manager operations;0.460898;0.012023;0.473027;213676;117040 +2523/11678;017-PtNairob/plugin: conflict_handler: manager operations;0.510897;0.035922;0.546924;222512;125772 +2524/11678;mockup_baking: 017-PtNairob: reaches level 5 (017-PtNairob: reaches level 5);0.689239;0.02447;10.1376;219696;122936 +2525/11678;mockup_baking: 017-PtNairob: cannot progress without new head (017-PtNairob: cannot progress without new head);0.398606;0.023916;3.80768;201652;104760 +2526/11678;mockup_baking: 017-PtNairob: reset delayed pqc (017-PtNairob: reset delayed pqc);0.41514;0.024182;4.91977;199344;102452 +2527/11678;mockup_baking: 017-PtNairob: scenario t1 (017-PtNairob: scenario t1);0.38284;0.044328;1.94802;205716;109088 +2528/11678;mockup_baking: 017-PtNairob: scenario t2 (017-PtNairob: scenario t2);0.348514;0.040059;1.927;200324;103532 +2529/11678;mockup_baking: 017-PtNairob: scenario t3 (017-PtNairob: scenario t3);0.544822;0.036054;4.97714;215472;118760 +2530/11678;mockup_baking: 017-PtNairob: scenario f1 (017-PtNairob: scenario f1);0.550116;0.048185;5.407;215216;118320 +2531/11678;mockup_baking: 017-PtNairob: scenario f2 (017-PtNairob: scenario f2);0.600835;0.028038;15.3893;215216;118688 +2532/11678;mockup_baking: 017-PtNairob: scenario m1 (017-PtNairob: scenario m1);0.927864;0.040167;15.0116;226972;130384 +2533/11678;mockup_baking: 017-PtNairob: scenario m2 (017-PtNairob: scenario m2);1.06123;0.036178;12.9282;231404;134564 +2534/11678;mockup_baking: 017-PtNairob: scenario m3 (017-PtNairob: scenario m3);0.823106;0.023743;26.9637;218800;122124 +2535/11678;mockup_baking: 017-PtNairob: scenario m4 (017-PtNairob: scenario m4);0.443864;0.02421;1.05868;211244;114340 +2536/11678;mockup_baking: 017-PtNairob: scenario m5 (017-PtNairob: scenario m5);0.537249;0.032074;2.77477;219700;122932 +2537/11678;mockup_baking: 017-PtNairob: scenario m6 (017-PtNairob: scenario m6);1.08536;0.02439;14.0596;228720;131708 +2538/11678;mockup_baking: 017-PtNairob: scenario m7 (017-PtNairob: scenario m7);1.01424;0.032326;10.9349;227140;130344 +2539/11678;mockup_baking: 017-PtNairob: scenario m8 (017-PtNairob: scenario m8);1.14761;0.043985;22.9386;228328;131624 +2540/11678;017-PtNairob: [Unit] Slot_framing_protocol.ml (Encoded slot has expected size (V0, 1 rollup));0.286109;0.031789;0.317999;193068;96396 +2541/11678;017-PtNairob: [Unit] Slot_framing_protocol.ml (Encoded slot has expected size (V0, 2 rollups));0.30062;0.024049;0.324786;193200;96140 +2542/11678;017-PtNairob: [Unit] Slot_framing_protocol.ml (Encoded slot can be decoded (V0, 1 rollup));0.282657;0.035829;0.318595;193072;96140 +2543/11678;017-PtNairob: [Unit] Slot_framing_protocol.ml (Encoded slot can be decoded (V0, 2 rollups));0.287865;0.027986;0.315955;193204;96356 +2544/11678;017-PtNairob: [Unit] Slot_framing_protocol.ml (Encoding of a slot over maximum size fails (V0));0.295397;0.019959;0.315463;193076;96396 +2545/11678;017-PtNairob: [Unit] Slot_framing_protocol.ml (Offsets of messages frames are correct (V0));0.289531;0.028148;0.317791;192948;96136 +2546/11678;017-PtNairob: [Unit] Slot_framing_protocol.ml (Slot decoding fails when slot size is too big (V0));0.299076;0.01595;0.315138;193076;96396 +2547/11678;017-PtNairob: [Unit] Slot_framing_protocol.ml (Slot decoding fails when first byte has wrong version (V0));0.284373;0.040052;0.324529;192944;96140 +2548/11678;017-PtNairob: [Unit] Dac_plugin_registration.ml (Binary encoding roundtrip test between Dac hash and reveal hash);0.285597;0.028157;0.313854;193068;96396 +2549/11678;017-PtNairob: [Unit] Dac_plugin_registration.ml (Hex encoding roundtrip test between Dac hash and reveal hash);0.303503;0.015973;0.319587;192944;96140 +2550/11678;017-PtNairob: [Unit] Dac_plugin_registration.ml (Hash bytes should be equal between Dac hash and reveal hash);0.294632;0.023889;0.318625;193068;96140 +2551/11678;017-PtNairob: [Unit] Dac_plugin_registration.ml (Hash string should be equal between Dac hash and reveal hash);0.277199;0.044191;0.3215;192900;96396 +2552/11678;017-PtNairob: [Unit] Dac_plugin_registration.ml (Json encoded hash string should be a hex string);0.282683;0.039814;0.322604;193068;96136 +2553/11678;017-PtNairob: [Unit] Dac_pages_encoding.ml (Storing only one hash per page causes serialization to fail (Merkle tree, v0));0.281063;0.036136;0.31731;193200;96140 +2554/11678;017-PtNairob: [Unit] Dac_pages_encoding.ml (Serializing empty payload returns an error (Merkle tree, v0));0.281296;0.036166;0.317566;193068;96396 +2555/11678;017-PtNairob: [Unit] Dac_pages_encoding.ml (Contents fitting in one page can be retrieved after being saved (Merkle tree, v0));0.299833;0.015991;0.315926;193072;96140 +2556/11678;017-PtNairob: [Unit] Dac_pages_encoding.ml (Contents fitting in more pages can be retrieved after being saved - no repeated pages (Merkle tree, V0));0.303277;0.015961;0.319342;193200;96304 +2557/11678;017-PtNairob: [Unit] Dac_pages_encoding.ml (Contents fitting in more pages can be retrieved after being saved - repeated pages (Merkle tree, V0));0.299366;0.015966;0.315435;192944;96140 +2558/11678;017-PtNairob: [Unit] Dac_pages_encoding.ml (Serialization and deserialization of very long content is correct.);0.307823;0.01599;0.323926;193332;96396 +2559/11678;017-PtNairob: [Unit] Dac_pages_encoding.ml (Hashes pages are not larger than expected);0.285018;0.032114;0.317247;193204;96396 +2560/11678;017-PtNairob: [Unit] Dac_pages_encoding.ml (Deserialization with integrity check fails if page contents are corrupt);0.300742;0.020049;0.320906;192948;96136 +2561/11678;017-PtNairob: [Unit] Dac_pages_encoding.ml (PBT for merkle_tree_V0 serialization/deserialization roundtrip);0.363193;0.015964;0.379257;218668;121976 +2562/11678;017-PtNairob: proxy ([fst (split_key s)] is a prefix of [s]);0.926698;0.16377;1.09059;840664;745100 +2563/11678;017-PtNairob: micheline v1 macros (compare expansion);0.299726;0.019981;0.31981;192976;96220 +2564/11678;017-PtNairob: micheline v1 macros (if compare expansion);0.297623;0.020109;0.3179;193072;96276 +2565/11678;017-PtNairob: micheline v1 macros (if compare expansion: IFCMP);0.283794;0.031976;0.31595;192884;96172 +2566/11678;017-PtNairob: micheline v1 macros (fail expansion);0.288016;0.028001;0.316123;193112;96396 +2567/11678;017-PtNairob: micheline v1 macros (assert expansion);0.291285;0.031921;0.323308;193104;96140 +2568/11678;017-PtNairob: micheline v1 macros (assert if expansion);0.296065;0.020004;0.316183;192980;96140 +2569/11678;017-PtNairob: micheline v1 macros (assert cmpif expansion);0.290478;0.027854;0.318451;192944;96136 +2570/11678;017-PtNairob: micheline v1 macros (assert none expansion);0.303299;0.019953;0.323383;193196;96140 +2571/11678;017-PtNairob: micheline v1 macros (assert some expansion);0.296438;0.024035;0.320585;192944;96140 +2572/11678;017-PtNairob: micheline v1 macros (assert left expansion);0.291837;0.023986;0.315934;193200;96396 +2573/11678;017-PtNairob: micheline v1 macros (assert right expansion);0.295675;0.027969;0.323759;193068;96140 +2574/11678;017-PtNairob: micheline v1 macros (assert some annot expansion);0.282772;0.035844;0.31873;193328;96396 +2575/11678;017-PtNairob: micheline v1 macros (assert left annot expansion);0.297246;0.024101;0.321472;192940;96140 +2576/11678;017-PtNairob: micheline v1 macros (assert right annot expansion);0.283698;0.031966;0.315785;193200;96140 +2577/11678;017-PtNairob: micheline v1 macros (diip expansion);0.286912;0.031879;0.318928;193364;96456 +2578/11678;017-PtNairob: micheline v1 macros (duup expansion);0.262913;0.055769;0.318789;192984;96260 +2579/11678;017-PtNairob: micheline v1 macros (pair expansion);0.282599;0.035822;0.318518;192976;96140 +2580/11678;017-PtNairob: micheline v1 macros (pappaiir expansion);0.289025;0.028099;0.317308;192976;96140 +2581/11678;017-PtNairob: micheline v1 macros (unpair expansion);0.277992;0.036259;0.314355;193108;96396 +2582/11678;017-PtNairob: micheline v1 macros (caddadr expansion);0.292517;0.032056;0.324684;193232;96396 +2583/11678;017-PtNairob: micheline v1 macros (carn and cdrn expansion);0.292744;0.028071;0.320937;193072;96140 +2584/11678;017-PtNairob: micheline v1 macros (if_some expansion);0.287822;0.027982;0.31591;192980;96300 +2585/11678;017-PtNairob: micheline v1 macros (set_car expansion);0.29878;0.019918;0.318806;192976;96140 +2586/11678;017-PtNairob: micheline v1 macros (set_cdr expansion);0.29512;0.01994;0.315159;193108;96140 +2587/11678;017-PtNairob: micheline v1 macros (set_cadr expansion);0.273314;0.040193;0.313612;193112;96140 +2588/11678;017-PtNairob: micheline v1 macros (set_cdar expansion);0.292129;0.02401;0.316245;193236;96392 +2589/11678;017-PtNairob: micheline v1 macros (map_car expansion);0.27516;0.039878;0.315168;193112;96392 +2590/11678;017-PtNairob: micheline v1 macros (map_cdr expansion);0.287314;0.035914;0.323342;193108;96136 +2591/11678;017-PtNairob: micheline v1 macros (map_caadr expansion);0.28275;0.035841;0.318701;193232;96396 +2592/11678;017-PtNairob: micheline v1 macros (map_cdadr expansion);0.28063;0.036081;0.316828;193104;96284 +2593/11678;017-PtNairob: micheline v1 macros (fail unexpansion);0.284096;0.03201;0.316207;193112;96144 +2594/11678;017-PtNairob: micheline v1 macros (if_right unexpansion);0.292554;0.024045;0.316787;192940;96140 +2595/11678;017-PtNairob: micheline v1 macros (if_some unexpansion);0.295051;0.02791;0.32311;193104;96396 +2596/11678;017-PtNairob: micheline v1 macros (assert unexpansion);0.300269;0.016014;0.316386;193236;96396 +2597/11678;017-PtNairob: micheline v1 macros (assert_if unexpansion);0.304573;0.01603;0.320707;193068;96392 +2598/11678;017-PtNairob: micheline v1 macros (assert_cmp_if unexpansion);0.287795;0.031977;0.319881;192944;96392 +2599/11678;017-PtNairob: micheline v1 macros (assert_none unexpansion);0.303495;0.015973;0.319576;192944;96140 +2600/11678;017-PtNairob: micheline v1 macros (assert_some unexpansion);0.281632;0.036209;0.317943;193072;96140 +2601/11678;017-PtNairob: micheline v1 macros (assert_left unexpansion);0.290794;0.027884;0.318788;193072;96396 +2602/11678;017-PtNairob: micheline v1 macros (assert_right unexpansion);0.280314;0.03604;0.316459;193072;96140 +2603/11678;017-PtNairob: micheline v1 macros (assert_some annot unexpansion);0.283597;0.031954;0.315655;193072;96212 +2604/11678;017-PtNairob: micheline v1 macros (assert_left annot unexpansion);0.285617;0.032182;0.317905;193068;96136 +2605/11678;017-PtNairob: micheline v1 macros (assert_right annot unexpansion);0.28081;0.036104;0.31701;193068;96344 +2606/11678;017-PtNairob: micheline v1 macros (unpair unexpansion);0.296045;0.016002;0.312149;193236;96352 +2607/11678;017-PtNairob: micheline v1 macros (pair unexpansion);0.266415;0.047716;0.314238;193232;96396 +2608/11678;017-PtNairob: micheline v1 macros (pappaiir unexpansion);0.303317;0.015964;0.319382;193200;96396 +2609/11678;017-PtNairob: micheline v1 macros (duup unexpansion);0.302272;0.015909;0.31829;193108;96136 +2610/11678;017-PtNairob: micheline v1 macros (caddadr unexpansion);0.277672;0.036218;0.31399;192980;96140 +2611/11678;017-PtNairob: micheline v1 macros (carn and cdrn unexpansion);0.293659;0.024136;0.31793;193204;96444 +2612/11678;017-PtNairob: micheline v1 macros (set_car unexpansion);0.283;0.031887;0.31501;193236;96396 +2613/11678;017-PtNairob: micheline v1 macros (set_cdr unexpansion);0.297248;0.024101;0.321485;193236;96392 +2614/11678;017-PtNairob: micheline v1 macros (set_cdar unexpansion);0.291972;0.027997;0.320083;193068;96140 +2615/11678;017-PtNairob: micheline v1 macros (set_cadr unexpansion);0.285369;0.032154;0.317628;193200;96400 +2616/11678;017-PtNairob: micheline v1 macros (set_car annot unexpansion);0.274577;0.039793;0.314476;193324;96392 +2617/11678;017-PtNairob: micheline v1 macros (set_cdr annot unexpansion);0.296887;0.020059;0.317064;193072;96144 +2618/11678;017-PtNairob: micheline v1 macros (map_car unexpansion);0.2863;0.031811;0.318266;193232;96136 +2619/11678;017-PtNairob: micheline v1 macros (diip unexpansion);0.291554;0.027957;0.319614;193108;96140 +2620/11678;017-PtNairob: micheline v1 macros (diip_duup1 unexpansion);0.285059;0.032119;0.317285;193200;96392 +2621/11678;017-PtNairob: micheline v1 macros (diip_duup2 unexpansion);0.287095;0.027912;0.315109;193328;96392 +2622/11678;017-PtNairob: client_proto_contracts (test_find_destination);0.292667;0.024054;0.316846;193072;96396 +2623/11678;017-PtNairob: Encodings (test_batch_transfer_operation_encoding_roundtrip);0.288368;0.044056;0.332528;199344;102448 +2624/11678;016-PtMumbai: Smart rollup types octez conversions: roundtrip (roundtrip address);0.279633;0.043942;0.323693;192944;96348 +2625/11678;016-PtMumbai: Smart rollup types octez conversions: roundtrip (roundtrip state_hash);0.295254;0.027929;0.323285;193072;96396 +2626/11678;016-PtMumbai: Smart rollup types octez conversions: roundtrip (roundtrip payload_hash);0.285169;0.032131;0.317412;193196;96396 +2627/11678;016-PtMumbai: Smart rollup types octez conversions: roundtrip (roundtrip commitment_hash);0.292214;0.032023;0.32435;193076;96140 +2628/11678;016-PtMumbai: Smart rollup types octez conversions: roundtrip (roundtrip commitment);0.292385;0.024031;0.316521;192944;96140 +2629/11678;016-PtMumbai: Smart rollup types octez conversions: roundtrip (roundtrip stakers);0.364725;0.052103;0.416982;193076;96396 +2630/11678;016-PtMumbai: Smart rollup types octez conversions: roundtrip (roundtrip refutation);0.300166;0.024013;0.324278;192940;96144 +2631/11678;016-PtMumbai: Smart rollup types octez conversions: roundtrip (roundtrip inbox);0.347321;0.019961;0.367406;199472;102708 +2632/11678;016-PtMumbai: Smart rollup types octez conversions: roundtrip (roundtrip dal_slot_index);0.292062;0.028005;0.32015;193012;96356 +2633/11678;016-PtMumbai: Smart rollup types octez conversions: roundtrip (roundtrip dal_page_index);0.29135;0.023946;0.315394;192940;96140 +2634/11678;016-PtMumbai: Smart rollup types octez conversions: roundtrip (roundtrip dal_slot_header);0.373124;0.032096;0.405331;193332;96140 +2635/11678;016-PtMumbai: Smart rollup types octez conversions: roundtrip (roundtrip dal_slot_history);0.909249;0.028038;0.937388;193196;96396 +2636/11678;016-PtMumbai: Smart rollup types octez conversions: roundtrip (roundtrip dal_slot_history_cache);1.54404;0.040001;1.58414;212784;116020 +2637/11678;canary: 016-PtMumbai: canary (canary arith);0.304009;0.036001;0.340228;200148;103724 +2638/11678;canary: 016-PtMumbai: canary (canary wasm);0.337787;0.040212;0.378221;203348;105296 +2639/11678;016-PtMumbai: zk rollup storage (origination_pending_is_empty);0.792381;0.024011;0.816509;203440;106548 +2640/11678;016-PtMumbai: zk rollup storage (pending_list_append);0.809394;0.024041;0.833596;203476;106612 +2641/11678;016-PtMumbai: zk rollup storage (pending_list_append errors);0.804534;0.024015;0.82867;203444;106536 +2642/11678;016-PtMumbai: zk rollup storage (pending_list_get);0.783523;0.035978;0.819612;203220;106800 +2643/11678;016-PtMumbai: zk rollup storage (pending_list_get errors);0.78721;0.027971;0.815276;203564;106548 +2644/11678;016-PtMumbai: zk rollup storage (test_update);0.800266;0.028009;0.828405;203476;106544 +2645/11678;016-PtMumbai: zk rollup storage (update errors);0.801391;0.032055;0.833553;203472;106536 +2646/11678;016-PtMumbai: tx rollup l2 apply (simple transaction);0.28966;0.032184;0.321945;193360;96396 +2647/11678;016-PtMumbai: tx rollup l2 apply (returned transaction);0.29899;0.019932;0.319015;193108;96392 +2648/11678;016-PtMumbai: tx rollup l2 apply (simple l1 transaction);0.288692;0.028067;0.316873;193068;96312 +2649/11678;016-PtMumbai: tx rollup l2 apply (simple l1 transaction: inexistant ticket);0.301411;0.020094;0.32159;192860;96396 +2650/11678;016-PtMumbai: tx rollup l2 apply (simple l1 transaction: inexistant signer);0.29696;0.024077;0.321137;193072;96392 +2651/11678;016-PtMumbai: tx rollup l2 apply (simple l1 transaction: overdraft);0.291855;0.027986;0.31995;192940;96140 +2652/11678;016-PtMumbai: tx rollup l2 apply (simple l1 transaction: zero);0.304993;0.016052;0.321177;193196;96140 +2653/11678;016-PtMumbai: tx rollup l2 apply (simple l1 transaction: partial);0.296505;0.020034;0.316657;193068;96140 +2654/11678;016-PtMumbai: tx rollup l2 apply (simple l2 transaction);0.274739;0.043799;0.318637;193068;96140 +2655/11678;016-PtMumbai: tx rollup l2 apply (l2 transaction with l2 addr: good);0.282817;0.039833;0.32276;193196;96396 +2656/11678;016-PtMumbai: tx rollup l2 apply (test l2 transaction with l2 addr: bad);0.272882;0.048155;0.321139;193332;96396 +2657/11678;016-PtMumbai: tx rollup l2 apply (simple transaction with indexes and values);0.294927;0.027898;0.322939;193068;96140 +2658/11678;016-PtMumbai: tx rollup l2 apply (invalid transaction);0.281442;0.040206;0.321765;192976;96140 +2659/11678;016-PtMumbai: tx rollup l2 apply (invalid counter);0.300409;0.020027;0.320571;193112;96360 +2660/11678;016-PtMumbai: tx rollup l2 apply (update counter);0.284503;0.044077;0.328683;193104;96396 +2661/11678;016-PtMumbai: tx rollup l2 apply (pre apply batch);0.298334;0.027844;0.326281;193236;96396 +2662/11678;016-PtMumbai: tx rollup l2 apply (apply batch from message);0.297173;0.024095;0.321425;193068;96252 +2663/11678;016-PtMumbai: tx rollup l2 apply (apply batch from message with withdrawals);0.291078;0.031899;0.323085;193068;96372 +2664/11678;016-PtMumbai: tx rollup l2 apply (apply deposit from message);0.292551;0.024045;0.316699;193200;96396 +2665/11678;016-PtMumbai: tx rollup l2 apply (apply unparseable message);0.295198;0.019945;0.315259;192948;96396 +2666/11678;016-PtMumbai: tx rollup l2 apply (transfer to self fail);0.296203;0.024016;0.320322;192944;96140 +2667/11678;016-PtMumbai: tx rollup l2 apply (nb withdrawals per batch below limit);0.294361;0.023867;0.318341;193068;96392 +2668/11678;016-PtMumbai: tx rollup l2 apply (nb withdrawals per batch equals limit);0.300402;0.020026;0.320517;193200;96396 +2669/11678;016-PtMumbai: tx rollup l2 apply (nb withdrawals per batch above limit);0.301567;0.020104;0.321793;193200;96396 +2670/11678;016-PtMumbai: tx rollup l2 apply (indexes are dropped on deposit failure);0.285828;0.036231;0.322181;193072;96104 +2671/11678;016-PtMumbai: tx rollup l2 apply (indexes are created on deposit success);0.290309;0.031814;0.322313;192944;96136 +2672/11678;016-PtMumbai: tx rollup l2 apply (deposit with existing indexes);0.304951;0.020062;0.325198;192948;96140 +2673/11678;016-PtMumbai: tx rollup l2 apply (indexes are created on valid transfers transaction);0.273308;0.044211;0.317625;193200;96140 +2674/11678;016-PtMumbai: tx rollup l2 apply (indexes are dropped on invalid transfers transaction);0.305875;0.012074;0.318053;192944;96140 +2675/11678;016-PtMumbai: tx rollup l2 (test irmin storage);0.294707;0.023895;0.318712;193108;96136 +2676/11678;016-PtMumbai: tx rollup l2 (Address, test set and get);0.297435;0.020096;0.317634;193236;96392 +2677/11678;016-PtMumbai: tx rollup l2 (Address, test associate fresh index);0.299372;0.015966;0.315441;193072;96140 +2678/11678;016-PtMumbai: tx rollup l2 (Address, test associate same value twice);0.294964;0.01993;0.31501;193328;96392 +2679/11678;016-PtMumbai: tx rollup l2 (Address, test the limit of indexes);0.289195;0.028116;0.317425;193068;96236 +2680/11678;016-PtMumbai: tx rollup l2 (Ticket, test set and get);0.28911;0.028107;0.317387;193360;96280 +2681/11678;016-PtMumbai: tx rollup l2 (Ticket, test associate fresh index);0.289702;0.036212;0.326013;193076;96140 +2682/11678;016-PtMumbai: tx rollup l2 (Ticket, test associate same value twice);0.296297;0.024024;0.320431;193072;96396 +2683/11678;016-PtMumbai: tx rollup l2 (Ticket, test the limit of indexes);0.286651;0.039812;0.326566;193456;96396 +2684/11678;016-PtMumbai: tx rollup l2 (test init and increments);0.279708;0.035962;0.315781;192980;96140 +2685/11678;016-PtMumbai: tx rollup l2 (test init twice fails);0.301118;0.024089;0.325316;192976;96140 +2686/11678;016-PtMumbai: tx rollup l2 (test incr unknown index);0.303262;0.019951;0.323313;193236;96140 +2687/11678;016-PtMumbai: tx rollup l2 (test overflow counter);0.28239;0.035796;0.318281;193360;96388 +2688/11678;016-PtMumbai: tx rollup l2 (test credit);0.274625;0.0398;0.314532;192980;96396 +2689/11678;016-PtMumbai: tx rollup l2 (test credit too much);0.288315;0.036039;0.324464;193104;96292 +2690/11678;016-PtMumbai: tx rollup l2 (test credit unknown index);0.285006;0.032113;0.317223;193112;96136 +2691/11678;016-PtMumbai: tx rollup l2 (test spend);0.295576;0.019971;0.315643;192976;96140 +2692/11678;016-PtMumbai: tx rollup l2 (test spend without required balance);0.287415;0.027943;0.315473;192944;96136 +2693/11678;016-PtMumbai: tx rollup l2 (test remove empty balance);0.293125;0.024092;0.317366;193232;96424 +2694/11678;016-PtMumbai: tx rollup l2 (layer-2 transaction encoding size);0.304364;0.016019;0.320496;193332;96392 +2695/11678;016-PtMumbai: time (non-overflowing addition);0.288441;0.032049;0.320615;193236;96140 +2696/11678;016-PtMumbai: time (overflowing addition);0.307249;0.015961;0.323371;192912;96212 +2697/11678;016-PtMumbai: Tez_repr.ml (Check if predefined values hold expected values);0.299149;0.019943;0.319202;193200;96396 +2698/11678;016-PtMumbai: Tez_repr.ml (Tez.substract: basic behaviour);0.277782;0.040258;0.318149;193072;96136 +2699/11678;016-PtMumbai: Tez_repr.ml (Tez.substract: underflow case);0.295811;0.019987;0.315906;193324;96396 +2700/11678;016-PtMumbai: Tez_repr.ml (Tez.add: basic behaviour (one + zero));0.295503;0.019966;0.315579;192944;96136 +2701/11678;016-PtMumbai: Tez_repr.ml (Tez.add: overflow);0.267891;0.04798;0.315988;192980;96136 +2702/11678;016-PtMumbai: Tez_repr.ml (Tez.mul: basic case);0.309035;0.008026;0.317163;192860;96304 +2703/11678;016-PtMumbai: Tez_repr.ml (Tez.mul: overflow case);0.289469;0.028142;0.317721;193104;96140 +2704/11678;016-PtMumbai: Tez_repr.ml (Tez.div: basic case);0.299541;0.015975;0.315635;193112;96392 +2705/11678;016-PtMumbai: Tez_repr.ml (Tez.div: division by zero);0.291328;0.027935;0.319412;193104;96276 +2706/11678;016-PtMumbai: Tez_repr.ml (Tez.to_mutez: basic assertion);0.284397;0.032044;0.316563;193196;96148 +2707/11678;016-PtMumbai: Tez_repr.ml (Tez.of_mutez: of non-negative ints);0.303764;0.015987;0.31986;193072;96096 +2708/11678;016-PtMumbai: Tez_repr.ml (Tez.of_mutez: of negative ints);0.284336;0.032037;0.316466;193032;96388 +2709/11678;016-PtMumbai: Tez_repr.ml (Tez.of_mutez_exn: of non-negative ints);0.28881;0.036101;0.325015;193200;96392 +2710/11678;016-PtMumbai: Tez_repr.ml (Tez.of_mutez_exn: of negative ints);0.295407;0.027943;0.323453;192948;96140 +2711/11678;016-PtMumbai: Tez_repr.ml (Tez.data_encoding: must encode tezzies correctly);0.299469;0.015971;0.3156;192948;96260 +2712/11678;016-PtMumbai: skip list (Skip list: produce paths with `back_path` and check);0.276705;0.044112;0.320927;192944;96088 +2713/11678;016-PtMumbai: skip list (Skip list: find cell with `find` and `check`);0.288331;0.028032;0.316468;193068;96140 +2714/11678;016-PtMumbai: skip list (Skip list: `find` won't produce invalid value);0.297318;0.020089;0.317519;192944;96136 +2715/11678;016-PtMumbai: skip list (Skip list: `back_path` won't produce invalid paths);0.272248;0.052047;0.324396;192944;96140 +2716/11678;016-PtMumbai: skip list (Skip list: check if the back_path is minimal);0.281047;0.036134;0.317324;192940;96300 +2717/11678;016-PtMumbai: skip list (Skip list: produce paths with `search` and check);0.281088;0.03614;0.317352;193196;96396 +2718/11678;016-PtMumbai: skip list (Skip list: `search` won't produce invalid paths);0.286296;0.027834;0.314293;193068;96140 +2719/11678;016-PtMumbai: skip list (Skip list: `search` may not produce minimal path);0.312959;0.008024;0.321089;193204;96396 +2720/11678;016-PtMumbai: skip list (Skip list: check if the best basis for merkelized skip list is indeed the best);2.21263;0.052014;2.26476;491668;395412 +2721/11678;016-PtMumbai: sc rollup wasm (initial state hash for Wasm);0.293026;0.028098;0.321226;193328;96396 +2722/11678;016-PtMumbai: sc rollup wasm (size of a rollup metadata);0.299898;0.023991;0.323997;193204;96392 +2723/11678;016-PtMumbai: sc rollup wasm (l1 input kind);0.304023;0.020001;0.324125;193104;96396 +2724/11678;016-PtMumbai: sc rollup wasm (output proofs);0.291928;0.027993;0.320026;193620;96140 +2725/11678;016-PtMumbai: sc rollup storage (deposit);0.287174;0.031908;0.319184;193236;96248 +2726/11678;016-PtMumbai: sc rollup storage (deposit by underfunded staker);0.291681;0.031965;0.32375;192820;96140 +2727/11678;016-PtMumbai: sc rollup storage (deposit then withdraw);0.294294;0.023861;0.318262;192852;96396 +2728/11678;016-PtMumbai: sc rollup storage (deposit on two rollups);0.307195;0.019947;0.327269;193196;96140 +2729/11678;016-PtMumbai: sc rollup storage (deposit twice fails);0.280792;0.036101;0.316997;193108;96140 +2730/11678;016-PtMumbai: sc rollup storage (publish);0.280028;0.044004;0.324137;193108;96296 +2731/11678;016-PtMumbai: sc rollup storage (publish twice);0.289367;0.028132;0.317667;193104;96340 +2732/11678;016-PtMumbai: sc rollup storage (publish to missing rollup fails);0.279363;0.04789;0.32747;192944;96300 +2733/11678;016-PtMumbai: sc rollup storage (publish to wrong inbox level);0.300252;0.02402;0.324385;193076;96140 +2734/11678;016-PtMumbai: sc rollup storage (publish existing commitment);0.298682;0.023894;0.322693;193200;96396 +2735/11678;016-PtMumbai: sc rollup storage (publish commitment returns level when commitment was first published);0.303514;0.023961;0.327595;193072;96392 +2736/11678;016-PtMumbai: sc rollup storage (publish from the future is not allowed);0.291986;0.027998;0.32011;193072;96140 +2737/11678;016-PtMumbai: sc rollup storage (publish from behind lcc is allowed);0.298013;0.02819;0.326309;193204;96392 +2738/11678;016-PtMumbai: sc rollup storage (publish to any commitment of a branch);0.304828;0.024065;0.329005;192916;96136 +2739/11678;016-PtMumbai: sc rollup storage (publish needs a predecessor);0.289552;0.036194;0.325839;193196;96196 +2740/11678;016-PtMumbai: sc rollup storage (publish behind or at LCC);0.290408;0.035803;0.326325;192944;96136 +2741/11678;016-PtMumbai: sc rollup storage (cement);0.295722;0.023977;0.319875;193360;96396 +2742/11678;016-PtMumbai: sc rollup storage (cement to missing rollup fails);0.290362;0.027842;0.31835;193204;96372 +2743/11678;016-PtMumbai: sc rollup storage (cement with n stakers);0.296764;0.032082;0.328948;193104;96396 +2744/11678;016-PtMumbai: sc rollup storage (cement n commitments);0.294589;0.023885;0.318584;192980;96176 +2745/11678;016-PtMumbai: sc rollup storage (cement clean commitment(s));0.311411;0.015969;0.327479;193076;96304 +2746/11678;016-PtMumbai: sc rollup storage (cement conflicted branches);0.304294;0.024023;0.328414;193072;96140 +2747/11678;016-PtMumbai: sc rollup storage (withdraw to missing rollup fails);0.272779;0.044126;0.317014;192940;96140 +2748/11678;016-PtMumbai: sc rollup storage (withdraw when not staked fails);0.29972;0.019981;0.319804;193068;96136 +2749/11678;016-PtMumbai: sc rollup storage (withdraw twice fails);0.292838;0.02808;0.321033;193108;96372 +2750/11678;016-PtMumbai: sc rollup storage (withdraw fails when staked after LCC);0.283376;0.03592;0.319398;193068;96136 +2751/11678;016-PtMumbai: sc rollup storage (withdraw when staked before or at LCC);0.301013;0.024081;0.325232;193072;96396 +2752/11678;016-PtMumbai: sc rollup storage (remove staker);0.298264;0.019884;0.318247;193236;96396 +2753/11678;016-PtMumbai: sc rollup storage (staker come back after being slashed);0.303688;0.019979;0.323775;193072;96396 +2754/11678;016-PtMumbai: sc rollup storage (cement unknown commitment fails);0.304005;0.016;0.32012;192940;96140 +2755/11678;016-PtMumbai: sc rollup storage (cement fails when too recent);0.283989;0.035998;0.320097;193196;96392 +2756/11678;016-PtMumbai: sc rollup storage (cement deadline uses oldest add time);0.307208;0.019948;0.327332;192948;96148 +2757/11678;016-PtMumbai: sc rollup storage (last cemented commitment hash and level returns correct information);0.297537;0.028145;0.32579;192944;96140 +2758/11678;016-PtMumbai: sc rollup storage (cement with two stakers);0.298348;0.019889;0.318368;193068;96220 +2759/11678;016-PtMumbai: sc rollup storage (no cement on conflict);0.291918;0.035989;0.328039;193232;96320 +2760/11678;016-PtMumbai: sc rollup storage (refuse cementing when parent commitment is not the LCC);0.293097;0.028105;0.321284;193240;96408 +2761/11678;016-PtMumbai: sc rollup storage (finds conflict point at LCC);0.302882;0.015941;0.318926;193200;96396 +2762/11678;016-PtMumbai: sc rollup storage (finds conflict point beneath LCC);0.28361;0.043939;0.327653;193200;96396 +2763/11678;016-PtMumbai: sc rollup storage (finds first point of disagreement when as point of conflict);0.2837;0.035961;0.319772;193072;96168 +2764/11678;016-PtMumbai: sc rollup storage (finds no conflict point with two stakers, one of which is at LCC (PVM in preboot));0.303883;0.015993;0.319987;193328;96304 +2765/11678;016-PtMumbai: sc rollup storage (finds no conflict point when both stakers commit to LCC (PVM in preboot));0.300323;0.020021;0.320518;193072;96208 +2766/11678;016-PtMumbai: sc rollup storage (finds no conflict point with two stakers, one of which is at LCC);0.300391;0.020026;0.320562;193068;96144 +2767/11678;016-PtMumbai: sc rollup storage (finds no conflict point when both stakers commit to LCC);0.311789;0.015989;0.327892;193072;96396 +2768/11678;016-PtMumbai: sc rollup storage (test_conflict_point_computation_fits_in_gas_limit);0.515322;0.047937;0.56336;209200;112432 +2769/11678;016-PtMumbai: sc rollup storage (can remove staker 1);0.303758;0.015987;0.319853;193240;96264 +2770/11678;016-PtMumbai: sc rollup storage (can remove staker 2);0.30693;0.01993;0.326958;193104;96140 +2771/11678;016-PtMumbai: sc rollup storage (removed staker can not withdraw);0.294564;0.027864;0.322544;192944;96136 +2772/11678;016-PtMumbai: sc rollup storage (fetching last final commitment of missing rollup fails);0.302981;0.019932;0.323081;192912;96152 +2773/11678;016-PtMumbai: sc rollup storage (fetching last final commitment hash and level of missing rollup fails);0.29055;0.02786;0.318515;192944;96140 +2774/11678;016-PtMumbai: sc rollup storage (Finalizing commitment of missing rollup fails);0.289691;0.028164;0.317974;193068;96296 +2775/11678;016-PtMumbai: sc rollup storage (fetching commitment of missing rollup fails);0.291694;0.023974;0.315766;193072;96140 +2776/11678;016-PtMumbai: sc rollup storage (fetching non-existing commitment of rollup fails);0.287345;0.031927;0.319497;193332;96444 +2777/11678;016-PtMumbai: sc rollup storage (initial level of missing rollup fails);0.299354;0.023948;0.323407;193068;96244 +2778/11678;016-PtMumbai: sc rollup storage (Refinement operations are commutative (point of conflict));0.305907;0.020125;0.326151;193072;96136 +2779/11678;016-PtMumbai: sc rollup storage (Refinement operations are commutative (cement));0.290688;0.027874;0.318684;192940;96140 +2780/11678;016-PtMumbai: sc rollup storage (Record messages in storage outbox);0.297062;0.0281;0.325266;193196;96396 +2781/11678;016-PtMumbai: sc rollup storage (Record messages in storage outbox limits);0.294747;0.027881;0.322744;193200;96140 +2782/11678;016-PtMumbai: sc rollup storage (Record messages size diffs);0.279788;0.043966;0.323872;192720;96304 +2783/11678;016-PtMumbai: sc rollup storage (Originating a rollup creates a genesis commitment);0.294962;0.027901;0.322966;193196;96308 +2784/11678;016-PtMumbai: sc rollup storage (Getting cemented commitments with levels of missing rollups fails);0.289238;0.02812;0.317465;193196;96140 +2785/11678;016-PtMumbai: sc rollup storage (Getting cemented commitments returns multiple cemented commitments);0.289943;0.031774;0.3219;192944;96140 +2786/11678;016-PtMumbai: sc rollup storage (All cemented commitments are ancestors of last cemented commitment);0.279704;0.039957;0.319771;193196;96136 +2787/11678;016-PtMumbai: sc rollup storage (Unrelated commitments are classified as such);0.2814;0.03618;0.317699;193072;96140 +2788/11678;016-PtMumbai: sc rollup storage (fresh index is correcly incremented);0.291919;0.031991;0.324025;193072;96396 +2789/11678;016-PtMumbai: sc rollup storage (initial_level returns correct level);0.316563;0.012021;0.328691;193328;96396 +2790/11678;016-PtMumbai: sc rollup storage (rollup starts in pre-boot state);0.299203;0.023936;0.323246;193200;96140 +2791/11678;016-PtMumbai: sc rollup storage (kind of missing rollup is None);0.302339;0.01989;0.322328;193072;96140 +2792/11678;016-PtMumbai: sc rollup management protocol (Encode/decode internal inbox message transfer);0.297407;0.028133;0.325669;192948;96188 +2793/11678;016-PtMumbai: sc rollup management protocol (Encode/decode internal inbox message start of level);0.28292;0.035863;0.318886;193076;96300 +2794/11678;016-PtMumbai: sc rollup management protocol (Encode/decode internal inbox message end of level);0.297817;0.020122;0.318046;193068;96140 +2795/11678;016-PtMumbai: sc rollup management protocol (Encode/decode external inbox message);0.284249;0.032028;0.316383;193072;96396 +2796/11678;016-PtMumbai: sc rollup management protocol (Encode/decode outbox message);0.282533;0.039793;0.322436;193892;96396 +2797/11678;016-PtMumbai: sc rollup inbox (Merkelized messages: Add messages then retrieve them from history.);0.354344;0.019907;0.374329;193244;96820 +2798/11678;016-PtMumbai: sc rollup inbox (Merkelized messages: Produce proof and verify its validity.);0.335602;0.019976;0.355676;193076;96304 +2799/11678;016-PtMumbai: sc rollup inbox (Invalid merkelized payload hashes proof fails.);0.470557;0.027914;0.498599;205616;108844 +2800/11678;016-PtMumbai: sc rollup inbox (produce inclusion proof and verifies it.);0.799534;0.051969;0.851597;245948;149388 +2801/11678;016-PtMumbai: sc rollup inbox (negative test of inclusion proof.);0.843105;0.031966;0.87517;250732;153908 +2802/11678;016-PtMumbai: sc rollup inbox (produce inbox proof and verifies it.);0.395541;0.035958;0.431615;206124;109364 +2803/11678;016-PtMumbai: sc rollup inbox (negative test of inbox proof.);0.399493;0.035954;0.43555;205872;108848 +2804/11678;016-PtMumbai: sc rollup inbox (messages are correctly added in payloads history);0.360651;0.016028;0.376877;197932;101160 +2805/11678;016-PtMumbai: sc rollup inbox (Checking inboxes history length);0.30031;0.024024;0.324445;193072;96136 +2806/11678;016-PtMumbai: sc rollup inbox (Checking inboxes history content and order);0.28753;0.035941;0.323572;193068;96336 +2807/11678;016-PtMumbai: sc rollup inbox (Checking inclusion proofs validity depending on history capacity);0.307386;0.023952;0.33144;192944;96140 +2808/11678;016-PtMumbai: sc rollup inbox (Checking results of add_messages when histories have different capacities);0.289036;0.032115;0.321258;193196;96396 +2809/11678;016-PtMumbai: sc rollup game (A badly distributed dissection is an invalid move.);0.283876;0.039982;0.323961;193076;96140 +2810/11678;016-PtMumbai: sc rollup game (A single game move with a valid dissection);0.301572;0.020104;0.321781;193068;96396 +2811/11678;016-PtMumbai: sc rollup game (Invalid serialized inbox proof is rejected.);0.307171;0.011967;0.319264;192948;96396 +2812/11678;016-PtMumbai: sc rollup game (start a game with invalid commitment hash (swap commitment).);0.288699;0.032077;0.320881;192948;96396 +2813/11678;016-PtMumbai: sc rollup game (start a game with invalid commitment hash (op from outsider).);0.30321;0.015958;0.319277;193200;96140 +2814/11678;016-PtMumbai: sc rollup game (start a game with invalid commitment hash (opponent is not in game).);0.291463;0.031941;0.323514;193196;96396 +2815/11678;016-PtMumbai: sc rollup game (start a game with commitment hash that are not the first conflict.);0.311413;0.015969;0.32749;193072;96140 +2816/11678;016-PtMumbai: sc rollup arith (PreBoot);0.280524;0.040074;0.32073;192856;96140 +2817/11678;016-PtMumbai: sc rollup arith (Boot);0.281451;0.036186;0.317738;193236;96396 +2818/11678;016-PtMumbai: sc rollup arith (Metadata);0.30203;0.020135;0.322277;193112;96140 +2819/11678;016-PtMumbai: sc rollup arith (Input message);0.299882;0.019992;0.319973;192980;96136 +2820/11678;016-PtMumbai: sc rollup arith (Parsing message);0.284035;0.036004;0.320145;192984;96140 +2821/11678;016-PtMumbai: sc rollup arith (Evaluating message);0.308422;0.024032;0.332576;193752;96816 +2822/11678;016-PtMumbai: sc rollup arith (Valid output messages);0.287164;0.039883;0.327148;193488;96556 +2823/11678;016-PtMumbai: sc rollup arith (Invalid output messages);0.295333;0.019954;0.315396;193108;96288 +2824/11678;016-PtMumbai: sc rollup arith (Invalid outbox level);0.289171;0.028113;0.31739;193364;96396 +2825/11678;016-PtMumbai: sc rollup arith (Initial state hash for Arith);0.296985;0.020066;0.317156;193072;96396 +2826/11678;016-PtMumbai: sc rollup arith (Filter internal message);0.302669;0.019912;0.322683;192848;96136 +2827/11678;016-PtMumbai: saturation arithmetic (Addition);0.286226;0.035778;0.322191;192980;96216 +2828/11678;016-PtMumbai: saturation arithmetic (Subtraction);0.300382;0.02403;0.324519;192980;96136 +2829/11678;016-PtMumbai: saturation arithmetic (Multiplication);0.295098;0.023926;0.31913;192852;96204 +2830/11678;016-PtMumbai: saturation arithmetic (Multiplication (fast version));0.308456;0.016023;0.324593;193072;96304 +2831/11678;016-PtMumbai: saturation arithmetic (Shift left);0.290295;0.031813;0.322214;193108;96392 +2832/11678;016-PtMumbai: saturation arithmetic (Scale fast);0.292485;0.028046;0.320633;193240;96396 +2833/11678;016-PtMumbai: saturation arithmetic (Square root);0.288927;0.032103;0.321145;193108;96396 +2834/11678;016-PtMumbai: saturation arithmetic (Conversion from Z);0.304493;0.020032;0.324643;192984;96136 +2835/11678;016-PtMumbai: saturation arithmetic (Encoding through z);0.271128;0.051833;0.32307;193196;96140 +2836/11678;016-PtMumbai: saturation arithmetic (Encoding through n);0.290968;0.023915;0.315001;192940;96308 +2837/11678;016-PtMumbai: round (level_offset_of_round);0.285449;0.032163;0.317739;193360;96396 +2838/11678;016-PtMumbai: round (Round_duration);0.292006;0.024;0.316106;193236;96136 +2839/11678;016-PtMumbai: round (round_of_timestamp);0.31107;0.011964;0.323137;193104;96396 +2840/11678;016-PtMumbai: round (round_of_timestamp_perf);0.411115;0.031931;0.443146;193236;96136 +2841/11678;016-PtMumbai: round (timestamp_of_round_perf);0.277498;0.040217;0.317822;192976;96140 +2842/11678;016-PtMumbai: round (level offset too high error is triggered);0.303426;0.011977;0.315599;192820;96104 +2843/11678;016-PtMumbai: round (round_of_ts (ts_of_round r) = r);0.285177;0.032132;0.317411;193104;96396 +2844/11678;016-PtMumbai: round (ts_of_round (round_of_ts ts) <= ts);0.94929;0.020027;0.969424;193200;96396 +2845/11678;016-PtMumbai: round (round_and_offset is correct);0.289246;0.028121;0.317464;193108;96396 +2846/11678;016-PtMumbai: receipt encodings (receipt - encoding);0.295188;0.023934;0.319222;193108;96140 +2847/11678;016-PtMumbai: qty (tez-literals);0.298423;0.019894;0.318422;192976;96136 +2848/11678;016-PtMumbai: qty (rnd-tez-literals);0.353419;0.032129;0.385649;192976;96140 +2849/11678;016-PtMumbai: Operation_repr.ml (of_list: single element input list);0.294723;0.019913;0.314742;192944;96140 +2850/11678;016-PtMumbai: Operation_repr.ml (of_list: multiple element input list);0.300645;0.016034;0.316778;192948;96140 +2851/11678;016-PtMumbai: Operation_repr.ml (of_list: empty input list);0.303967;0.015998;0.320072;192944;96140 +2852/11678;016-PtMumbai: Operation_repr.ml (protocol_data_encoding: only signature prefix);0.292732;0.02406;0.316904;193200;96400 +2853/11678;016-PtMumbai: Operation_repr.ml (protocol_data_encoding: empty list);0.274379;0.043741;0.318231;193200;96396 +2854/11678;016-PtMumbai: Operation_repr.ml (protocol_data_encoding: multiple signature prefix);0.290403;0.031824;0.322343;193324;96396 +2855/11678;016-PtMumbai: Operation_repr.ml (protocol_data_encoding: signature prefix not final);0.288499;0.028048;0.316651;193068;96136 +2856/11678;016-PtMumbai: Operation_repr.ml (protocol_data_encoding: multiple non manager);0.284502;0.04007;0.324686;192816;96144 +2857/11678;016-PtMumbai: merkle list (compute);0.291377;0.023948;0.315432;193364;96304 +2858/11678;016-PtMumbai: merkle list (snoc);0.282313;0.031809;0.314289;193108;96212 +2859/11678;016-PtMumbai: merkle list (snoc_non_tr);0.296591;0.020039;0.316736;192980;96140 +2860/11678;016-PtMumbai: merkle list (compute_path);0.287717;0.031968;0.319783;193108;96396 +2861/11678;016-PtMumbai: merkle list (check_path);0.289256;0.028122;0.317495;193108;96140 +2862/11678;016-PtMumbai: merkle list (path_encoding);0.292719;0.028069;0.32092;192976;96132 +2863/11678;016-PtMumbai: merkle list (compute_path_negative_pos);0.292773;0.028074;0.320985;192776;96324 +2864/11678;016-PtMumbai: merkle list (compute_path_out_of_bounds);0.303762;0.019984;0.323847;193104;96396 +2865/11678;016-PtMumbai: merkle list (check_path_negative_pos);0.294515;0.027859;0.322533;193024;96308 +2866/11678;016-PtMumbai: merkle list (check_path_out_of_bounds);0.290492;0.023876;0.314536;192980;96144 +2867/11678;016-PtMumbai: merkle list (compute_path_out_of_bounds_full);0.313203;0.00803;0.321382;193068;96208 +2868/11678;016-PtMumbai: merkle list (check_path_wrong_pos);0.293677;0.02816;0.321935;193236;96396 +2869/11678;016-PtMumbai: merkle list (check_invalidated_path);0.289044;0.032116;0.321314;193024;96300 +2870/11678;016-PtMumbai: local_contexts (Local.remove_existing: check whether local access has the same behavior);0.307486;0.015973;0.323561;193200;96392 +2871/11678;016-PtMumbai: liquidity baking (EMA does not change when vote is Pass);0.292667;0.028064;0.320834;193328;96396 +2872/11678;016-PtMumbai: liquidity baking (EMA remains in bounds when vote is Off);0.301079;0.016057;0.317295;193196;96332 +2873/11678;016-PtMumbai: liquidity baking (EMA increases when vote is Off);0.290622;0.027867;0.318605;192948;96140 +2874/11678;016-PtMumbai: liquidity baking (EMA does not increase too much when vote is Off);0.288861;0.024071;0.31303;193068;96136 +2875/11678;016-PtMumbai: liquidity baking (EMA remains in bounds when vote is On);0.29258;0.032063;0.324747;192944;96204 +2876/11678;016-PtMumbai: liquidity baking (EMA decreases when vote is On);0.28746;0.027947;0.315506;193076;96308 +2877/11678;016-PtMumbai: liquidity baking (EMA does not decrease too much when vote is On);0.289178;0.028114;0.317402;193068;96396 +2878/11678;016-PtMumbai: liquidity baking (EMA goes from 0 to one billion in 1386 Off votes);0.293894;0.024155;0.318149;192948;96188 +2879/11678;016-PtMumbai: liquidity baking (EMA goes from two billions to one billion in 1386 On votes);0.275701;0.039956;0.315753;192940;96140 +2880/11678;016-PtMumbai: liquidity baking (voting On and Off have symmetric effects on the EMA);0.291563;0.023964;0.315661;192944;96240 +2881/11678;016-PtMumbai: level module (create_cycle_eras);0.280582;0.036074;0.316754;193104;96396 +2882/11678;016-PtMumbai: level module (level_from_raw);0.294715;0.019913;0.314731;193104;96136 +2883/11678;016-PtMumbai: level module (first_level_in_cycle);0.292013;0.024001;0.316115;193104;96140 +2884/11678;016-PtMumbai: Global_constants_storage (get on a nonexistent global constants fails);0.304129;0.02401;0.328246;199860;102964 +2885/11678;016-PtMumbai: Global_constants_storage (get always returned the registered constant);0.288842;0.036105;0.325079;196400;99380 +2886/11678;016-PtMumbai: Global_constants_storage (register: fails with unregistered references);0.289058;0.028102;0.317256;193072;96140 +2887/11678;016-PtMumbai: Global_constants_storage (register: fails with unregistered references pbt);0.317602;0.020101;0.337817;200756;103732 +2888/11678;016-PtMumbai: Global_constants_storage (register: fails if expression too deep);0.291745;0.027975;0.319825;193196;96312 +2889/11678;016-PtMumbai: Global_constants_storage (expand on an expression containing a nonexistent global constant fails);0.31223;0.02802;0.340353;205100;108336 +2890/11678;016-PtMumbai: Global_constants_storage (expand: no constants case);0.281666;0.036214;0.318;193068;96140 +2891/11678;016-PtMumbai: Global_constants_storage (register and expand are orthogonal);0.330263;0.043769;0.37414;224556;128044 +2892/11678;016-PtMumbai: Global_constants_storage (expand: deep constants);2.31607;0.024;2.34018;216752;119856 +2893/11678;016-PtMumbai: Global_constants_storage (expand: ill formed constants are rejected);0.296028;0.024002;0.320134;193328;96400 +2894/11678;016-PtMumbai: Global_constants_storage (expand: use of 'constant (constant ...)' is rejected);0.280271;0.036034;0.316459;193072;96216 +2895/11678;016-PtMumbai: Global_constants_storage (expand: data);0.295885;0.019992;0.315984;193104;96396 +2896/11678;016-PtMumbai: Global_constants_storage (expand: types);0.292928;0.024076;0.317113;193108;96140 +2897/11678;016-PtMumbai: Global_constants_storage (expand: instr);0.26722;0.04786;0.315179;192976;96140 +2898/11678;016-PtMumbai: Global_constants_storage (expand: random);0.322811;0.015941;0.338861;202964;106020 +2899/11678;016-PtMumbai: Global_constants_storage (expand is idempotent);0.313348;0.028121;0.341575;197420;100396 +2900/11678;016-PtMumbai: Global_constants_storage (bottom_up_fold_cps: does not stack overflow);0.443864;0.047985;0.491953;364124;267564 +2901/11678;016-PtMumbai: gas monad (exhaustion);0.295168;0.023932;0.31923;192980;96208 +2902/11678;016-PtMumbai: gas monad (exhaustion before error);0.304029;0.012001;0.316113;193184;96392 +2903/11678;016-PtMumbai: gas monad (successful result with remaining gas);0.288574;0.036071;0.324784;193068;96392 +2904/11678;016-PtMumbai: gas monad (successful result with spare gas);0.2958;0.019986;0.315887;193072;96396 +2905/11678;016-PtMumbai: gas monad (inner error);0.275131;0.047848;0.323095;193104;96396 +2906/11678;016-PtMumbai: gas monad (unlimited);0.297971;0.020133;0.31821;193108;96140 +2907/11678;016-PtMumbai: gas monad (syntax module);0.28793;0.027993;0.316036;192976;96140 +2908/11678;016-PtMumbai: fixed point computation (Integral tests (3 decimals));0.291923;0.023993;0.316049;193200;96396 +2909/11678;016-PtMumbai: fixed point computation (FP tests (3 decimals));0.299633;0.019975;0.319713;193332;96164 +2910/11678;016-PtMumbai: fixed point computation (FP pp tests (3 decimals));0.298247;0.019883;0.318236;193068;96392 +2911/11678;016-PtMumbai: fitness (from/to raw fitness is identity);0.281689;0.032193;0.313992;193232;96396 +2912/11678;016-PtMumbai: fitness (locked round is smaller than round);0.305535;0.020101;0.325741;193044;96396 +2913/11678;016-PtMumbai: fitness (compare fitness = compare raw_fitness);0.291068;0.023923;0.315092;192944;96140 +2914/11678;016-PtMumbai: Destination_repr.ml (Json decoding compat implicit contract (null address));0.29978;0.023982;0.323858;193068;96140 +2915/11678;016-PtMumbai: Destination_repr.ml (Json decoding compat smart contract (liquidity baking dex));0.30006;0.020004;0.320171;193068;96396 +2916/11678;016-PtMumbai: Destination_repr.ml (Binary Contract_repr to Destination_repr (null address));0.308843;0.016043;0.324999;193072;96396 +2917/11678;016-PtMumbai: Destination_repr.ml (Binary Contract_repr to Destination_repr (liquidity baking dex));0.271471;0.051898;0.323481;193196;96140 +2918/11678;016-PtMumbai: Destination_repr.ml (Binary Destination_repr to Contract_repr (null address));0.29968;0.023974;0.323756;193068;96140 +2919/11678;016-PtMumbai: Destination_repr.ml (Binary Destination_repr to Contract_repr (liquidity baking dex));0.288422;0.032046;0.32059;193076;96396 +2920/11678;016-PtMumbai: Destination_repr.ml (Json encoding compatibility Contract_repr to Destination_repr with dummy contracts);0.292109;0.024009;0.316225;193068;96392 +2921/11678;016-PtMumbai: Destination_repr.ml (Binary encoding compatibility Contract_repr to Destination_repr with dummy contracts);0.283355;0.031927;0.315413;192940;96136 +2922/11678;016-PtMumbai: Destination_repr.ml (Comparison of destinations);0.283166;0.031906;0.315205;193072;96140 +2923/11678;016-PtMumbai: dal slot proof ([test] add a slot on top of genesis that breaks ordering);0.426364;0.035862;0.462329;193200;96300 +2924/11678;016-PtMumbai: dal slot proof ([test] add a slot on top of genesis that satisfies ordering (1/2));0.421383;0.036118;0.457606;193200;96308 +2925/11678;016-PtMumbai: dal slot proof ([test] add a slot on top of genesis that satisfies ordering (2/2));0.434616;0.027911;0.462635;193328;96560 +2926/11678;016-PtMumbai: dal slot proof ([test] add two slots on top of genesis that satisfy ordering);0.424915;0.036077;0.4611;193456;96560 +2927/11678;016-PtMumbai: dal slot proof ([test] Confirmed page on genesis);0.306776;0.015936;0.322913;192944;96116 +2928/11678;016-PtMumbai: dal slot proof ([test] Unconfirmed page on genesis);0.279112;0.039873;0.319087;193072;96140 +2929/11678;016-PtMumbai: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with good data);0.428648;0.032048;0.460812;193460;96560 +2930/11678;016-PtMumbai: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with no data);0.435087;0.023949;0.459132;193460;96660 +2931/11678;016-PtMumbai: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with bad proof);0.440319;0.036026;0.476454;193452;96620 +2932/11678;016-PtMumbai: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with bad data);0.447381;0.023966;0.471459;193452;96560 +2933/11678;016-PtMumbai: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with too short data);0.425653;0.03614;0.461885;193456;96556 +2934/11678;016-PtMumbai: dal slot proof ([test] Confirmed slot on top of genesis: confirmed page with too long data);0.430554;0.031892;0.462554;193456;96560 +2935/11678;016-PtMumbai: dal slot proof ([test] Confirmed slot on top of genesis: unconfirmed page with good data);0.442717;0.027919;0.470744;193200;96308 +2936/11678;016-PtMumbai: dal slot proof ([test] Confirmed slot on top of genesis: unconfirmed page with no data);0.436004;0.032;0.468113;193328;96304 +2937/11678;016-PtMumbai: dal slot proof ([test] Confirmed slot on top of genesis: unconfirmed page with bad proof);0.449716;0.024091;0.473913;193328;96560 +2938/11678;016-PtMumbai: dal slot proof ([test] Confirmed slot on top of genesis: unconfirmed page with bad data (altered));0.430335;0.031876;0.462308;193456;96568 +2939/11678;016-PtMumbai: Contract_repr (Contract_repr.to_b58check: must correctly stringify, b58check encoded, an implicit contract);0.301235;0.024098;0.325442;193072;96396 +2940/11678;016-PtMumbai: Contract_repr (Contract_repr.originated_contract: must correctly create an originated contract);0.28688;0.031875;0.31886;193072;96396 +2941/11678;016-PtMumbai: Contract_repr (Contract_repr.to_b58check: must correctly stringify, b58check encoded, an originated contract);0.310833;0.011955;0.3229;193200;96396 +2942/11678;016-PtMumbai: Delegate consensus key (consensus_key_storage);0.291773;0.027978;0.319861;192944;96136 +2943/11678;016-PtMumbai: bond_id_repr (Deserializing sc bond ids succeeds only when id is valid);0.292772;0.020052;0.312928;192940;96136 +2944/11678;016-PtMumbai: bond_id_repr (Deserializing tx bond ids succeeds only when id is valid);0.300888;0.016047;0.31704;193072;96140 +2945/11678;016-PtMumbai: bond_id_repr (Deserializing invalid bond ids fails);0.295325;0.019954;0.315382;192940;96140 +2946/11678;016-PtMumbai: bond_id_repr (Deserialize/serialize roundtrip);0.301172;0.016062;0.3174;193068;96216 +2947/11678;016_PtMumbai: accounts;0.287989;0.035998;0.325526;192976;96140 +2948/11678;016_PtMumbai: append;0.281477;0.036189;0.319202;193108;96396 +2949/11678;016_PtMumbai: auction;0.275297;0.047877;0.324701;193136;96648 +2950/11678;016_PtMumbai: big_map_union;0.290234;0.031806;0.323567;193488;96560 +2951/11678;016_PtMumbai: check_signature;0.297128;0.02377;0.322371;193108;96396 +2952/11678;016_PtMumbai: comb-get;0.283603;0.039944;0.32506;193236;96300 +2953/11678;016_PtMumbai: comb-set;0.283561;0.03195;0.317015;193112;96392 +2954/11678;016_PtMumbai: concat;0.287244;0.031916;0.320681;193104;96392 +2955/11678;016_PtMumbai: conditionals;0.29169;0.023974;0.317198;192980;96140 +2956/11678;016_PtMumbai: cps_fact;0.279755;0.039965;0.320108;193360;96396 +2957/11678;016_PtMumbai: dign;0.303054;0.023925;0.328616;193236;96396 +2958/11678;016_PtMumbai: dipn;0.282699;0.035835;0.320171;192980;96140 +2959/11678;016_PtMumbai: dugn;0.295674;0.027969;0.325189;193104;96156 +2960/11678;016_PtMumbai: ediv;0.283948;0.035993;0.321457;193104;96140 +2961/11678;016_PtMumbai: faucet;0.295256;0.031919;0.32871;193108;96396 +2962/11678;016_PtMumbai: get_and_update_map;0.297037;0.020345;0.317817;193236;96396 +2963/11678;016_PtMumbai: if;0.306336;0.027848;0.335695;193108;96136 +2964/11678;016_PtMumbai: insertion_sort;0.325522;0.039697;0.366873;213396;116776 +2965/11678;016_PtMumbai: list_map_block;0.291225;0.028313;0.321067;193240;96556 +2966/11678;016_PtMumbai: loop_left;0.29099;0.027903;0.320456;193364;96396 +2967/11678;016_PtMumbai: packunpack;0.2956;0.027962;0.325075;193104;96400 +2968/11678;016_PtMumbai: pexec;0.316315;0.00811;0.325938;193112;96396 +2969/11678;016_PtMumbai: reverse_loop;0.300395;0.028036;0.329976;193108;96396 +2970/11678;016_PtMumbai: set_delegate;0.291578;0.023965;0.317007;193236;96348 +2971/11678;016_PtMumbai: shifts;0.303903;0.015994;0.321315;192984;96560 +2972/11678;016_PtMumbai: spawn_identities;0.353718;0.015897;0.371457;210516;113964 +2973/11678;016_PtMumbai: ticket_join;0.309636;0.016084;0.327273;193236;96396 +2974/11678;016_PtMumbai: ticket_split;0.299499;0.027953;0.328969;192852;96140 +2975/11678;016_PtMumbai: view_toplevel_lib;0.284956;0.036121;0.321499;193236;96396 +2976/11678;016_PtMumbai: xor;0.295802;0.023984;0.320167;193236;96408 +2977/11678;016_PtMumbai: opt_map;0.292847;0.032092;0.326462;192976;96136 +2978/11678;016_PtMumbai: view_fib;0.305779;0.015884;0.323157;193364;96396 +2979/11678;016_PtMumbai: rec_id_unit;0.280228;0.040032;0.32176;193104;96396 +2980/11678;016-PtMumbai: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup.t);0.293436;0.024118;0.317666;192816;96140 +2981/11678;016-PtMumbai: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup_state_repr.t);0.65711;0.03606;0.6933;230280;133424 +2982/11678;016-PtMumbai: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup_account_repr.t);7.31016;0.047987;7.35834;242100;145200 +2983/11678;016-PtMumbai: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup_operation_repr.t);0.697341;0.032061;0.729511;229120;132396 +2984/11678;016-PtMumbai: ZK rollup encoding: : roundtrip (roundtrip Zk_rollup_repr.pending_list);0.296479;0.024038;0.32062;192948;96140 +2985/11678;016-PtMumbai: ZK rollup encoding: : to_scalar (to_scalar Zk_rollup_repr.t);0.290619;0.027867;0.31859;193072;96140 +2986/11678;016-PtMumbai: ZK rollup encoding: : to_scalar (to_scalar Zk_rollup_operation.t);0.346783;0.027902;0.374787;219056;122416 +2987/11678;016-PtMumbai: Compact_encoding: : quantity (quantity operation);0.42919;0.028077;0.457387;197040;100404 +2988/11678;016-PtMumbai: Compact_encoding: : roundtrip (roundtrip batch);9.26337;0.075994;9.33954;477300;381232 +2989/11678;016-PtMumbai: Compact_encoding: : roundtrip (roundtrip message_result);7.00889;0.056007;7.06507;427820;331560 +2990/11678;016-PtMumbai: Tez_repr (Tez.(*?) is coherent w.r.t. Z.(*));0.289252;0.028121;0.317473;193072;96136 +2991/11678;016-PtMumbai: Tez_repr (Tez.(-?) is coherent w.r.t. Z.(-));0.266346;0.059629;0.326117;193200;96140 +2992/11678;016-PtMumbai: Tez_repr (Tez.(+?) is coherent w.r.t. Z.(+));0.301607;0.016085;0.317813;193196;96140 +2993/11678;016-PtMumbai: Tez_repr (Tez.(/?) is coherent w.r.t. Z.(/));0.281064;0.040152;0.321338;193204;96400 +2994/11678;016-PtMumbai: compatible_with_reference (compatible_with_reference);0.287117;0.039877;0.327095;192940;96136 +2995/11678;016-PtMumbai: compatible_with_packing (compatible_with_packing);0.307175;0.015957;0.32323;192944;96140 +2996/11678;016-PtMumbai: reflexivity (reflexivity);0.294741;0.019914;0.314764;193236;96392 +2997/11678;016-PtMumbai: symmetry (symmetry);0.292696;0.028066;0.320861;193240;96396 +2998/11678;016-PtMumbai: transitivity (transitivity);0.299205;0.027925;0.327231;192984;96136 +2999/11678;016-PtMumbai: pack_unpack (pack_unpack);1.45008;0.020028;1.47022;212532;116012 +3000/11678;016-PtMumbai: Tick_repr (next x > x);0.295224;0.023937;0.319263;192980;96140 +3001/11678;016-PtMumbai: Tick_repr (x = initial \/ x > initial);0.28887;0.032096;0.321068;192976;96140 +3002/11678;016-PtMumbai: Tick_repr (distance from x to x is 0);0.294585;0.019904;0.314593;193236;96392 +3003/11678;016-PtMumbai: Tick_repr (distance from non-self is non-zero);0.287152;0.031905;0.319157;192940;96144 +3004/11678;016-PtMumbai: Tick_repr (distance is a distance (symmetry));0.303116;0.011965;0.315199;193076;96360 +3005/11678;016-PtMumbai: Tick_repr (distance is a distance (triangle inequality));0.274707;0.039812;0.314622;192944;96140 +3006/11678;016-PtMumbai: Tick_repr (of_int only accepts natural numbers);0.292351;0.024028;0.316481;192944;96136 +3007/11678;016-PtMumbai: Tick_repr (to_int o of_int = identity);0.30002;0.020001;0.320121;193112;96296 +3008/11678;016-PtMumbai: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_commitment.t);0.290435;0.035807;0.326344;193072;96140 +3009/11678;016-PtMumbai: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_commitment.versioned);0.300943;0.024075;0.325124;192812;96140 +3010/11678;016-PtMumbai: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_game.t);0.525942;0.028103;0.554145;218668;121652 +3011/11678;016-PtMumbai: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_refutation_storage.conflict);0.330443;0.015924;0.346468;193196;96396 +3012/11678;016-PtMumbai: SC rollup encoding: : roundtrip (roundtrip Sc_rollup_inbox_message_repr.t);0.284888;0.036112;0.321108;192944;96392 +3013/11678;016-PtMumbai: sampling (alias_float);34.4324;0.056;34.4887;450324;353824 +3014/11678;016-PtMumbai: sampling (alias_z);39.4579;0.075995;39.5344;453904;357668 +3015/11678;016-PtMumbai: Refutation_game: Refutation (dissection is one kernel_run);1.72139;0.080064;1.80156;376668;280104 +3016/11678;016-PtMumbai: Refutation_game: Refutation (dissection shorter than 32 kernel_run);2.3149;0.043979;2.35894;376672;280356 +3017/11678;016-PtMumbai: Refutation_game: Refutation (dissection larger than 32 kernel_run);3.18279;0.047981;3.23098;382976;286508 +3018/11678;016-PtMumbai: Refutation_game: Refutation (Perfect against Random);7.48136;0.040007;7.52163;252672;154816 +3019/11678;016-PtMumbai: Refutation_game: Refutation (Perfect against Lazy);5.06868;0.036004;5.10484;241524;143916 +3020/11678;016-PtMumbai: Refutation_game: Refutation (Perfect against Keen);14.9783;0.051994;15.0307;256000;158564 +3021/11678;016-PtMumbai: Refutation_game: Refutation (Perfect against Eager);7.6368;0.032003;7.66911;248232;150572 +3022/11678;016-PtMumbai: Refutation_game: Refutation (Perfect against SOL hater);8.28143;0.040006;8.32154;253072;155596 +3023/11678;016-PtMumbai: Refutation_game: Refutation (Perfect against EOL hater);9.58736;0.059995;9.64761;253204;155700 +3024/11678;016-PtMumbai: Refutation_game: Refutation (Perfect against Info per level hater);146.931;0.139999;147.073;924508;828324 +3025/11678;016-PtMumbai: Refutation_game: Refutation (Perfect against Nostalgic);4.53856;0.023992;4.56273;235876;138028 +3026/11678;016-PtMumbai: Refutation_game: Refutation (cut at level properly cuts);0.285604;0.036203;0.321917;193196;96140 +3027/11678;016-PtMumbai: Refutation_game: Dissection (gen_dissection produces a valid dissection);0.409726;0.020084;0.429909;211760;115000 +3028/11678;016-PtMumbai: Refutation_game: Dissection (distance < nb_of_sections => (len dissection = succ (dist dissection)));0.304937;0.016049;0.32109;192952;96392 +3029/11678;016-PtMumbai: Refutation_game: Dissection (distance >= nb_of_sections => (len dissection = nb_of_sections);0.40326;0.035934;0.439308;207404;110384 +3030/11678;016-PtMumbai: Refutation_game: Dissection (dissection.start_chunk can not change);0.424004;0.012;0.436105;206380;109588 +3031/11678;016-PtMumbai: Refutation_game: Dissection (dissection.stop_chunk must change);0.386823;0.05583;0.442762;208948;112172 +3032/11678;016-PtMumbai: Refutation_game: Dissection (start_chunk.tick and stop_chunk.tick can not change in the dissection);0.390926;0.035901;0.426941;207152;110132 +3033/11678;016-PtMumbai: Refutation_game: Dissection (dissection must be well distributed);0.413316;0.028089;0.441486;208320;111664 +3034/11678;016-PtMumbai: Operation_encoding: : roundtrip (roundtrip Operation.t);2.08912;0.036019;2.12524;225968;129332 +3035/11678;016-PtMumbai: scons_equiv (scons_scons_tr_equiv);2.43423;0.024022;2.45838;267020;170540 +3036/11678;016-PtMumbai: scons_equiv (scons_compute_equiv);2.35265;0.048013;2.40078;266124;169256 +3037/11678;016-PtMumbai: check_path (check_path);2.27994;0.039998;2.32004;267656;171052 +3038/11678;016-PtMumbai: check_path (check_path_wrong);2.30525;0.040021;2.34538;267020;170464 +3039/11678;016-PtMumbai: gas properties (Consuming commutes);0.298784;0.019918;0.318815;193104;96468 +3040/11678;016-PtMumbai: gas properties (Consuming [free] consumes nothing);0.298743;0.019916;0.318784;193200;96392 +3041/11678;016-PtMumbai: gas properties ([free] is the neutral element of Gas addition);0.287448;0.027946;0.315497;193072;96392 +3042/11678;016-PtMumbai: Dal slots refutation game: [016-PtMumbai: test] Dal slots refutation (Pbt tests: confirmed pages);6.22848;0.052004;6.2806;207980;111532 +3043/11678;016-PtMumbai: Dal slots refutation game: [016-PtMumbai: test] Dal slots refutation (Pbt tests: unconfirmed pages);7.14823;0.036001;7.18431;218636;122136 +3044/11678;016-PtMumbai: Compare_operations (Compare operations is a strict total order);0.45766;0.032116;0.489888;204332;107312 +3045/11678;016-PtMumbai: Carbonated map (Size returns the number of elements);0.569725;0.02006;0.589904;217012;120116 +3046/11678;016-PtMumbai: Carbonated map (To-list/of-list roundtrip);0.564829;0.028041;0.592958;217716;121132 +3047/11678;016-PtMumbai: Carbonated map (Empty map is left identity for merge);0.546742;0.035917;0.582757;217264;120628 +3048/11678;016-PtMumbai: Carbonated map (Empty map is right identity for merge);0.573261;0.024052;0.59744;217648;120884 +3049/11678;016-PtMumbai: Carbonated map (Size should not change when map is merging with itself);0.558743;0.027937;0.586784;217264;120624 +3050/11678;016-PtMumbai: Carbonated map (Add a new element increases size by one);0.556096;0.032005;0.58821;217388;120516 +3051/11678;016-PtMumbai: Carbonated map (Remove new element decreases size by one);0.58151;0.032083;0.613763;217648;120948 +3052/11678;016-PtMumbai: Carbonated map (Merge compared with list operation);0.566371;0.031908;0.598385;217260;120624 +3053/11678;016-PtMumbai: Carbonated map (Merging with failing merge-overlap);0.534301;0.051835;0.586237;217652;120880 +3054/11678;016-PtMumbai: Carbonated map (Should not find non-existing);0.56824;0.032013;0.600358;217136;120372 +3055/11678;016-PtMumbai: Carbonated map (Find all elements);0.54621;0.039869;0.586194;217296;120364 +3056/11678;016-PtMumbai: Carbonated map (Test that map commutes with mapping over list);0.571941;0.031996;0.60405;217900;120880 +3057/11678;016-PtMumbai: Carbonated map (Test that fold commutes with folding over a list);0.555241;0.031956;0.587321;217264;120620 +3058/11678;016-PtMumbai: Carbonated map (Test that fold collecting the elements agrees with to-list);0.552467;0.04804;0.600646;217268;120364 +3059/11678;016-PtMumbai: Carbonated map (Test map with failing function);0.55733;0.036086;0.593526;217264;120372 +3060/11678;016-PtMumbai: Carbonated map (Size of empty map is 0);0.288248;0.028024;0.316376;193108;96140 +3061/11678;016-PtMumbai: Carbonated map (Update add);0.292685;0.024056;0.316842;192980;96144 +3062/11678;016-PtMumbai: Carbonated map (Update replace);0.297342;0.02009;0.317542;192980;96136 +3063/11678;016-PtMumbai: Carbonated map (Merge overlaps left);0.26742;0.051887;0.319412;193232;96396 +3064/11678;016-PtMumbai: Carbonated map (Merge overlap replace);0.265142;0.056242;0.321492;192976;96136 +3065/11678;016-PtMumbai: Carbonated map (Merge overlap by adding);0.286403;0.031822;0.318385;192976;96220 +3066/11678;016-PtMumbai: Carbonated map (Update with merge add);0.285518;0.036192;0.321811;193108;96396 +3067/11678;016-PtMumbai: Carbonated map (Merge overlap keep existing);0.287568;0.031952;0.319642;193200;96396 +3068/11678;016-PtMumbai: Carbonated map (Merge overlap replace existing);0.305151;0.01606;0.321323;192844;96236 +3069/11678;016-PtMumbai: Carbonated map (Update delete);0.290643;0.031851;0.322632;193236;96340 +3070/11678;016-PtMumbai: Carbonated map (Fold empty);0.284204;0.036025;0.320341;193104;96140 +3071/11678;016-PtMumbai: bytes and int/nat conversion : bytes_nat_conv (unit);0.302595;0.015926;0.318628;192816;96140 +3072/11678;016-PtMumbai: bytes and int/nat conversion : bytes_nat_conv (bytes_of_nat);0.287689;0.031965;0.319764;193072;96140 +3073/11678;016-PtMumbai: bytes and int/nat conversion : bytes_nat_conv (nat_of_bytes);0.300582;0.016031;0.316735;192816;96612 +3074/11678;016-PtMumbai: bytes and int/nat conversion : bytes_int_conv (unit);0.300377;0.01602;0.316498;192820;96140 +3075/11678;016-PtMumbai: bytes and int/nat conversion : bytes_int_conv (bytes_of_int);0.28516;0.036147;0.32142;193076;96140 +3076/11678;016-PtMumbai: bytes and int/nat conversion : bytes_int_conv (int_of_bytes);0.295694;0.019979;0.315804;192944;96140 +3077/11678;016-PtMumbai: quantity (get set);0.980935;0.012011;0.993055;225232;128560 +3078/11678;016-PtMumbai: quantity (inter);1.67261;0.052018;1.72472;230540;133636 +3079/11678;016-PtMumbai: quantity (diff);1.67775;0.036037;1.71389;228108;131368 +3080/11678;016-PtMumbai: quantity (fill);0.305842;0.016096;0.32206;193104;96140 +3081/11678;016-PtMumbai: add (t1 + t2 = t2 + t1);0.297234;0.028116;0.325454;193232;96136 +3082/11678;016-PtMumbai: add (t + 0 = t);0.287735;0.035966;0.323803;193360;96396 +3083/11678;016-PtMumbai: add (t1 + t2 >= t1);0.293161;0.028111;0.321398;193112;96296 +3084/11678;016-PtMumbai: mul (t1 * t2 = t2 * t1);0.296765;0.028072;0.324942;193488;96396 +3085/11678;016-PtMumbai: mul (t * 1 = t);0.302868;0.01594;0.318913;192984;96140 +3086/11678;016-PtMumbai: mul (t * 0 = 0);0.29617;0.024013;0.320281;193240;96396 +3087/11678;016-PtMumbai: sub (t - 0 = t);0.288324;0.032036;0.320465;193108;96400 +3088/11678;016-PtMumbai: sub (t - t = 0);0.273226;0.048216;0.321541;193108;96392 +3089/11678;016-PtMumbai: sub (t1 - t2 <= t1);0.274583;0.043774;0.318461;193232;96396 +3090/11678;016-PtMumbai: add and sub ((t1 + t2) - t2 <= t1);0.301191;0.012047;0.313344;193108;96392 +3091/11678;016-PtMumbai: add and sub ((t1 - t2) + t2 >= t1);0.302542;0.023884;0.326528;193104;96292 +3092/11678;016-PtMumbai: sqrt ((sqrt t)² <= t <= (succ (sqrt t))²);0.281784;0.036229;0.318114;192944;96140 +3093/11678;016-PtMumbai: sqrt (sqrt t² = t);0.291452;0.023955;0.315538;193108;96300 +3094/11678;016-PtMumbai: <= and >= (t <= saturated);0.299552;0.01997;0.319635;192976;96132 +3095/11678;016-PtMumbai: <= and >= (t >= 0);0.295004;0.023919;0.319037;193104;96392 +3096/11678;016-PtMumbai: Machines Cross-Validation (Concrete/Symbolic Consistency);9.719;0.059993;9.77918;218800;121396 +3097/11678;016-PtMumbai: Machines Cross-Validation (Storage consistency);1.93833;0.031972;1.9704;219824;121904 +3098/11678;016-PtMumbai: Machines Cross-Validation (Positive pools);26.8117;0.091998;26.9038;557436;461352 +3099/11678;016-PtMumbai: Economic Properties (No global gain);7.34854;0.084006;7.43271;514504;418336 +3100/11678;016-PtMumbai: Economic Properties (Remove liquidities is consistent);26.4185;0.111993;26.5307;559380;463400 +3101/11678;016-PtMumbai: Economic Properties (Share price only increases);26.5862;0.103992;26.6905;560124;464172 +3102/11678;016-PtMumbai: batched managers validation (batch reveal and transaction);0.931745;0.031991;0.963845;204592;106800 +3103/11678;016-PtMumbai: batched managers validation (batch two reveals);1.28489;0.032022;1.31701;222128;124464 +3104/11678;016-PtMumbai: batched managers validation (reveal in the middle);1.60238;0.047951;1.65044;224176;126512 +3105/11678;016-PtMumbai: batched managers validation (batch two sources);1.67192;0.055997;1.72803;222876;126212 +3106/11678;016-PtMumbai: batched managers validation (batch incons. counters);2.24917;0.036018;2.28529;246372;148756 +3107/11678;016-PtMumbai: batched managers validation (empty balance in middle of batch);1.96589;0.040038;2.00604;222012;124304 +3108/11678;016-PtMumbai: batched managers validation (empty balance at end of batch);2.61688;0.040013;2.65701;242824;145416 +3109/11678;016-PtMumbai: batched managers validation (too much gas consumption);1.98043;0.060013;2.04051;247072;149484 +3110/11678;016-PtMumbai: batched managers validation (too much gas consumption (mempool));1.90261;0.047965;1.95069;237404;139652 +3111/11678;016-PtMumbai: sanity checks (manager operation coverage);1.2691;0.028024;1.29723;222000;124468 +3112/11678;016-PtMumbai: sanity checks (covalidation coverage);3.17893;0.02799;3.20706;228952;131376 +3113/11678;016-PtMumbai: mempool (simple);0.303924;0.019995;0.324026;193876;96140 +3114/11678;016-PtMumbai: mempool (incompatible mempool);0.274661;0.043786;0.318556;194128;96396 +3115/11678;016-PtMumbai: mempool (merge);0.295684;0.023974;0.319763;194256;96396 +3116/11678;016-PtMumbai: mempool (adding invalid operation);0.283229;0.031913;0.315252;193236;96232 +3117/11678;016-PtMumbai: mempool (adding operation with conflict handler);0.299769;0.019984;0.319863;193200;96396 +3118/11678;016-PtMumbai: mempool (remove operations);0.295677;0.023973;0.319772;192980;96140 +3119/11678;016-PtMumbai: single manager validation (gas limit too low);0.935179;0.019982;0.955268;204720;106800 +3120/11678;016-PtMumbai: single manager validation (gas limit too high);1.28851;0.02801;1.31663;221104;123440 +3121/11678;016-PtMumbai: single manager validation (storage limit too high);1.27331;0.024024;1.29745;221228;123696 +3122/11678;016-PtMumbai: single manager validation (counter too high);1.27127;0.031981;1.30336;222256;124716 +3123/11678;016-PtMumbai: single manager validation (counter too low);1.25098;0.043964;1.29504;220332;122644 +3124/11678;016-PtMumbai: single manager validation (unallocated source);1.27708;0.02402;1.30126;219820;122272 +3125/11678;016-PtMumbai: single manager validation (unrevealed source);1.26063;0.036017;1.29676;222128;124464 +3126/11678;016-PtMumbai: single manager validation (balance too low for fee payment);1.26247;0.031961;1.29453;221104;123440 +3127/11678;016-PtMumbai: single manager validation (empty delegate source);1.27495;0.039967;1.31501;222128;124464 +3128/11678;016-PtMumbai: single manager validation (too much gas consumption in block);1.26646;0.031961;1.29855;221104;123692 +3129/11678;016-PtMumbai: single manager validation (fees are taken when valid);1.27835;0.043943;1.32239;222128;124720 +3130/11678;016-PtMumbai: single manager validation (empty self-delegate);1.29046;0.055933;1.34652;222256;124720 +3131/11678;016-PtMumbai: single manager validation (too much gas consumption in mempool);1.28741;0.031985;1.31952;220336;122672 +3132/11678;016-PtMumbai: single manager validation (empty undelegated source);1.29633;0.028007;1.32448;222128;124672 +3133/11678;016-PtMumbai: single manager validation (minimal gas for manager);0.928676;0.032023;0.960798;204592;106796 +3134/11678;016-PtMumbai: single manager validation (dal disabled);1.46146;0.024023;1.48558;222424;124720 +3135/11678;016-PtMumbai: single manager validation (toru disabled);1.41784;0.040052;1.45799;222420;124972 +3136/11678;016-PtMumbai: single manager validation (scoru disabled);1.42961;0.03604;1.46577;222380;124728 +3137/11678;016-PtMumbai: single manager validation (zkru disabled);1.37773;0.06408;1.4419;222292;124720 +3138/11678;016-PtMumbai: covalidity (scenario: 'promotion' period, 'vdf' seed);2.88768;0.051994;2.93978;245084;147212 +3139/11678;016-PtMumbai: covalidity (scenario: 'promotion' period, 'nonce' seed);2.41862;0.035979;2.45471;244348;146504 +3140/11678;016-PtMumbai: covalidity (scenario: 'exploration' period, 'vdf' seed);2.66547;0.024013;2.68971;241200;143080 +3141/11678;016-PtMumbai: covalidity (scenario: 'exploration' period, 'nonce' seed);2.43094;0.051977;2.48301;249756;151976 +3142/11678;016-PtMumbai: covalidity (scenario: 'proposal' period, 'vdf' seed);2.55242;0.036005;2.58855;244652;146956 +3143/11678;016-PtMumbai: covalidity (scenario: 'proposal' period, 'nonce' seed);2.38982;0.036027;2.42595;242200;144564 +3144/11678;016-PtMumbai: one-manager restriction (positive validated op);15.6707;0.055995;15.7268;247860;150496 +3145/11678;016-PtMumbai: one-manager restriction (check conflicts between managers.);15.8369;0.064003;15.9011;246700;148776 +3146/11678;016-PtMumbai: one-manager restriction (batch is not sequence of Single);15.8688;0.048002;15.9169;235712;138260 +3147/11678;016-PtMumbai: one-manager restriction (under 1M, co-valid ops commute);15.7409;0.056003;15.7971;237100;139472 +3148/11678;016-PtMumbai: zk rollup (check feature flag is disabled);0.784397;0.028014;0.812545;203440;106544 +3149/11678;016-PtMumbai: zk rollup (origination fees);0.796393;0.028013;0.824518;203472;106800 +3150/11678;016-PtMumbai: zk rollup (originate two rollups);0.767338;0.047958;0.815428;203472;106540 +3151/11678;016-PtMumbai: zk rollup (origination negative nb_ops);0.780004;0.036;0.816118;203216;106792 +3152/11678;016-PtMumbai: zk rollup (append with invalid op code);0.807086;0.027968;0.835157;203472;106796 +3153/11678;016-PtMumbai: zk rollup (append external deposit);0.788454;0.040023;0.828587;204500;106544 +3154/11678;016-PtMumbai: zk rollup (append check errors);0.803489;0.031979;0.83557;203480;106540 +3155/11678;016-PtMumbai: zk rollup (invalid deposit);0.798543;0.031941;0.830583;204368;106544 +3156/11678;016-PtMumbai: zk rollup (update);1.08547;0.024032;1.10962;214612;118060 +3157/11678;016-PtMumbai: zk rollup (update with false proof);1.09912;0.031974;1.13119;211688;114964 +3158/11678;016-PtMumbai: zk rollup (update with invalid circuit);0.957987;0.027941;0.986199;210772;114084 +3159/11678;016-PtMumbai: zk rollup (update with op for another rollup);0.999452;0.027984;1.02755;211504;114992 +3160/11678;016-PtMumbai: zk rollup (update with more public operations than pending);1.63078;0.023982;1.65486;234428;136992 +3161/11678;016-PtMumbai: zk rollup (update with inconsistent state);0.976444;0.02401;1.00056;210604;113968 +3162/11678;016-PtMumbai: zk rollup (update with not enough pending);0.964233;0.024005;0.988385;210608;113976 +3163/11678;016-PtMumbai: zk rollup (update with valid prefix);1.57443;0.031968;1.6065;230116;133372 +3164/11678;016-PtMumbai: zk rollup (valid deposit);0.977037;0.028029;1.00518;211284;113968 +3165/11678;016-PtMumbai: zk rollup (valid deposit and external withdrawal);1.15727;0.020021;1.17739;212272;115228 +3166/11678;016-PtMumbai: voting (voting successful_vote);0.392334;0.02402;0.41647;194136;96304 +3167/11678;016-PtMumbai: voting (voting cooldown, not enough quorum);0.370364;0.027876;0.398369;194100;96304 +3168/11678;016-PtMumbai: voting (voting promotion, not enough quorum);0.492164;0.020006;0.512292;198192;100144 +3169/11678;016-PtMumbai: voting (voting proposal, with supermajority);0.301261;0.0241;0.325466;194352;96396 +3170/11678;016-PtMumbai: voting (voting proposal, without supermajority);0.299659;0.035959;0.335723;194092;96396 +3171/11678;016-PtMumbai: voting (voting proposal, with quorum);0.285088;0.036137;0.321336;193236;96396 +3172/11678;016-PtMumbai: voting (voting proposal, without quorum);0.282481;0.039786;0.322574;193876;96548 +3173/11678;016-PtMumbai: voting (voting cooldown, with supermajority);0.328481;0.028041;0.356643;194220;96396 +3174/11678;016-PtMumbai: voting (voting cooldown, without supermajority);0.33752;0.024108;0.361743;194220;96396 +3175/11678;016-PtMumbai: voting (voting proposal, no winning proposal);0.510126;0.031882;0.542108;204948;107160 +3176/11678;016-PtMumbai: voting (voting quorum, quorum capped maximum);0.43593;0.015997;0.452043;196016;98100 +3177/11678;016-PtMumbai: voting (voting quorum, quorum capped minimum);0.391202;0.023951;0.415264;195760;97896 +3178/11678;016-PtMumbai: voting (voting power updated in each voting period);0.292588;0.032064;0.324761;193964;96140 +3179/11678;016-PtMumbai: voting (voting period pretty print);0.283657;0.031961;0.315721;193232;96136 +3180/11678;016-PtMumbai: voting (Proposals missing signature);0.305101;0.020072;0.325282;193112;96144 +3181/11678;016-PtMumbai: voting (Proposals invalid signature);0.285197;0.036151;0.321457;193112;96392 +3182/11678;016-PtMumbai: voting (Proposals wrong voting period index);0.291362;0.027938;0.319409;193076;96396 +3183/11678;016-PtMumbai: voting (Proposals wrong voting period kind);0.294797;0.027886;0.322782;193324;96396 +3184/11678;016-PtMumbai: voting (Proposals source not in vote listings);0.283735;0.043959;0.327791;193200;96308 +3185/11678;016-PtMumbai: voting (Empty proposals);0.287963;0.027996;0.316065;192984;96136 +3186/11678;016-PtMumbai: voting (Proposals contain a duplicate proposal);0.301304;0.016069;0.317475;193076;96140 +3187/11678;016-PtMumbai: voting (Too many proposals (over one operation));0.287527;0.031947;0.319583;193072;96396 +3188/11678;016-PtMumbai: voting (Too many proposals (over two operations));0.295991;0.023999;0.320093;193072;96140 +3189/11678;016-PtMumbai: voting (A proposal had already been proposed);0.304569;0.024044;0.328723;193076;96264 +3190/11678;016-PtMumbai: voting (Conflict: too many proposals in current block/mempool);0.310368;0.015916;0.326418;193072;96136 +3191/11678;016-PtMumbai: voting (Conflicting proposals in current block/mempool);0.297391;0.020094;0.317591;193964;96140 +3192/11678;016-PtMumbai: voting (Valid Proposals operations);0.30307;0.023926;0.32712;194004;96140 +3193/11678;016-PtMumbai: voting (Ballot missing signature);0.294509;0.027858;0.322473;193876;96140 +3194/11678;016-PtMumbai: voting (Ballot invalid signature);0.296181;0.024014;0.320309;193236;96396 +3195/11678;016-PtMumbai: voting (Ballot wrong voting period index);0.298516;0.019901;0.318519;192980;96140 +3196/11678;016-PtMumbai: voting (Ballot wrong voting period kind);0.30104;0.03211;0.333275;193108;96172 +3197/11678;016-PtMumbai: voting (Ballot for wrong proposal);0.303211;0.019948;0.323271;193872;96396 +3198/11678;016-PtMumbai: voting (Delegate has already submitted a ballot);0.305149;0.020075;0.325338;193072;96140 +3199/11678;016-PtMumbai: voting (Ballot source not in vote listings);0.308067;0.024005;0.332201;193072;96140 +3200/11678;016-PtMumbai: voting (Conflicting ballot in current block/mempool);0.297316;0.024106;0.321533;193072;96396 +3201/11678;016-PtMumbai: voting (Valid Ballot operations);0.317166;0.012044;0.329343;194132;96396 +3202/11678;016-PtMumbai: tx rollup (feature flag is disabled);0.303765;0.019984;0.323861;193236;96396 +3203/11678;016-PtMumbai: tx rollup (sunset);0.281287;0.044202;0.325642;192980;96300 +3204/11678;016-PtMumbai: tx rollup (tx rollup origination and burn);0.299262;0.01995;0.319344;192940;96108 +3205/11678;016-PtMumbai: tx rollup (two originated tx rollup in one operation have different address);0.296872;0.020058;0.317057;193452;96140 +3206/11678;016-PtMumbai: tx rollup (the function that updates the burn per byte rate of a transaction rollup);0.291126;0.027916;0.319144;193072;96184 +3207/11678;016-PtMumbai: tx rollup (add one batch to a rollup);0.283959;0.035994;0.320066;194008;96328 +3208/11678;016-PtMumbai: tx rollup (add two batches to a rollup);0.294379;0.027846;0.322345;193360;96400 +3209/11678;016-PtMumbai: tx rollup (add one batch and limit the burn);0.306054;0.016108;0.322276;193200;96392 +3210/11678;016-PtMumbai: tx rollup (Try to add a batch larger than the limit);0.287582;0.031953;0.319644;194092;96392 +3211/11678;016-PtMumbai: tx rollup (Try to add several batches to reach the inbox size limit);0.317344;0.032136;0.349586;201904;105008 +3212/11678;016-PtMumbai: tx rollup (Try to add several batches to reach the inbox count limit);0.426703;0.032204;0.460357;219956;122164 +3213/11678;016-PtMumbai: tx rollup (deposit with valid contract);0.30056;0.028052;0.328717;193232;96132 +3214/11678;016-PtMumbai: tx rollup (deposit with invalid parameter);0.292392;0.032042;0.326026;193324;96352 +3215/11678;016-PtMumbai: tx rollup (deposit with too big ticket);0.302956;0.027903;0.336527;193872;96204 +3216/11678;016-PtMumbai: tx rollup (deposit with too big ticket type);0.299939;0.024319;0.325766;193200;96140 +3217/11678;016-PtMumbai: tx rollup (valid deposit with big ticket);0.292933;0.028089;0.321134;192984;96140 +3218/11678;016-PtMumbai: tx rollup (valid deposit to inexistant rollup);0.293782;0.032195;0.326086;194224;96396 +3219/11678;016-PtMumbai: tx rollup (invalid entrypoint);0.292422;0.02804;0.320572;193364;96396 +3220/11678;016-PtMumbai: tx rollup (valid deposit to invalid L2 address);0.287618;0.035952;0.323671;193200;96140 +3221/11678;016-PtMumbai: tx rollup (valid deposit with non-zero amount);0.297168;0.019811;0.318498;193072;96140 +3222/11678;016-PtMumbai: tx rollup (depositing too many tickets);0.299743;0.027976;0.327821;193112;96136 +3223/11678;016-PtMumbai: tx rollup (finalization);3.29086;0.031988;3.32297;239068;142120 +3224/11678;016-PtMumbai: tx rollup (Smoke test commitment);0.308352;0.020022;0.328568;194260;96416 +3225/11678;016-PtMumbai: tx rollup (commitment predecessor edge cases);0.290555;0.031841;0.322492;193200;96396 +3226/11678;016-PtMumbai: tx rollup (full inbox);0.317873;0.016094;0.33409;193236;96140 +3227/11678;016-PtMumbai: tx rollup (too many finalized commitments);0.296206;0.024016;0.320325;193196;96392 +3228/11678;016-PtMumbai: tx rollup (finalization edge cases);0.31234;0.020021;0.332471;193240;96444 +3229/11678;016-PtMumbai: tx rollup (bond finalization);0.286653;0.03185;0.318608;193364;96396 +3230/11678;016-PtMumbai: tx rollup (state);0.312242;0.016012;0.328357;193240;96400 +3231/11678;016-PtMumbai: tx rollup (Try to commit to the current inbox and fail);0.284762;0.036096;0.320968;193196;96136 +3232/11678;016-PtMumbai: tx rollup (state with deleted commitment);0.279071;0.043854;0.323031;193104;96140 +3233/11678;016-PtMumbai: tx rollup (upfront message preallocation);0.292886;0.024072;0.317058;193104;96392 +3234/11678;016-PtMumbai: tx rollup (storage burn for submitting batch);0.289389;0.032154;0.321639;193068;96140 +3235/11678;016-PtMumbai: tx rollup (additional space allocation for deposit);0.291231;0.031915;0.323242;193204;96388 +3236/11678;016-PtMumbai: tx rollup (additional space allocation for commitment);0.299765;0.019984;0.31986;193972;96144 +3237/11678;016-PtMumbai: tx rollup (withdraw);0.298453;0.027855;0.326408;193368;96396 +3238/11678;016-PtMumbai: tx rollup (reveal withdrawals w/ missing commitment);0.3133;0.01205;0.325528;193188;96400 +3239/11678;016-PtMumbai: tx rollup (reveal withdrawals w/ missing withdraw in commitment);0.296969;0.024078;0.321152;193324;96396 +3240/11678;016-PtMumbai: tx rollup (reveal withdrawals w/ incorrect tickets info);0.288328;0.032036;0.320475;193936;96408 +3241/11678;016-PtMumbai: tx rollup (reveal withdrawals twice);0.30475;0.028069;0.332942;193108;96140 +3242/11678;016-PtMumbai: tx rollup (withdraw w/ an invalid message index);0.308099;0.016005;0.32422;194224;96392 +3243/11678;016-PtMumbai: tx rollup (withdrawing too late);0.297484;0.02814;0.325723;194008;96392 +3244/11678;016-PtMumbai: tx rollup (storage clean up);0.312877;0.020056;0.333031;193364;96396 +3245/11678;016-PtMumbai: tx rollup (deposits overflowing to withdrawals);0.293661;0.028159;0.321922;194220;96140 +3246/11678;016-PtMumbai: tx rollup (deposit to multiple destinations don't overflow);0.307241;0.01995;0.327291;193196;96396 +3247/11678;016-PtMumbai: tx rollup (multiple withdrawals from the same batch and from different batches);0.308233;0.020015;0.328413;193920;96272 +3248/11678;016-PtMumbai: tx rollup (deposit, followed by withdrawal, followed by deposit);0.305544;0.036182;0.341838;193200;96396 +3249/11678;016-PtMumbai: tx rollup (deposit, followed by withdrawal, followed by transfer to an implicit account);0.288043;0.040006;0.328148;193068;96140 +3250/11678;016-PtMumbai: tx rollup (regression test empty_l2_context_hash);0.287448;0.027946;0.315532;192940;96140 +3251/11678;016-PtMumbai: tx rollup (unencodable proofs fail);0.299383;0.02395;0.323415;193000;96296 +3252/11678;016-PtMumbai: tx rollup (reject invalid commitment);0.29894;0.027901;0.326957;193232;96292 +3253/11678;016-PtMumbai: tx rollup (reject valid commitment fails);0.315987;0.015999;0.33209;193236;96400 +3254/11678;016-PtMumbai: tx rollup (rejection rewards);0.291801;0.031978;0.323881;193112;96396 +3255/11678;016-PtMumbai: tx rollup (proof for a hard failing message: invalid signature);0.285227;0.040172;0.325514;193060;96396 +3256/11678;016-PtMumbai: tx rollup (proof for a hard failing message: unparseable message);0.297138;0.024092;0.32135;193328;96360 +3257/11678;016-PtMumbai: tx rollup (proof for a hard failing message: invalid counter);0.298511;0.031841;0.33046;193200;96396 +3258/11678;016-PtMumbai: tx rollup (proof for a hard failing message: zero-ticket transfer);0.300003;0.028;0.328103;193964;96132 +3259/11678;016-PtMumbai: tx rollup (proof for a hard failing message: multiple ops from one signer);0.289153;0.04016;0.329419;194092;96140 +3260/11678;016-PtMumbai: tx rollup (reject with invalid proof);0.297081;0.024087;0.321294;193104;96136 +3261/11678;016-PtMumbai: tx rollup (reject with invalid agreed);0.301068;0.024085;0.325272;194264;96392 +3262/11678;016-PtMumbai: tx rollup (reject with no commitment);0.31523;0.01197;0.327306;194008;96284 +3263/11678;016-PtMumbai: tx rollup (reject with wrong message);0.291065;0.031897;0.323052;193816;96396 +3264/11678;016-PtMumbai: tx rollup (reject with wrong message position);0.290808;0.035853;0.326762;193840;96140 +3265/11678;016-PtMumbai: tx rollup (reject too-large proof);0.292285;0.036035;0.328429;193236;96396 +3266/11678;016-PtMumbai: tx rollup (reject a final commitment);0.295072;0.023924;0.31912;192976;96392 +3267/11678;016-PtMumbai: tx rollup (test successful and unsuccessful rejection of nontrivial message);0.289521;0.032169;0.32181;194096;96396 +3268/11678;016-PtMumbai: tx rollup (reject with a truncated proof above the limit);0.292153;0.028014;0.320272;193200;96140 +3269/11678;016-PtMumbai: tx rollup (reject withdrawals when out of bound);0.322831;0.023913;0.346848;194092;96396 +3270/11678;016-PtMumbai: tx rollup (regression test rejection max proof size and message);0.39462;0.03986;0.434578;197552;100652 +3271/11678;016-PtMumbai: tx rollup (Originating `deposit` succeeds w/ tx rollups enabled);0.279554;0.043929;0.323635;192948;96140 +3272/11678;016-PtMumbai: tx rollup (Originating `deposit` fails w/ tx rollups disabled);0.281615;0.036207;0.317928;192944;96136 +3273/11678;016-PtMumbai: tx rollup (Originating `type` succeeds w/ tx rollups enabled);0.29487;0.023908;0.320266;192920;96396 +3274/11678;016-PtMumbai: tx rollup (Originating `type` fails w/ tx rollups disabled);0.290104;0.031792;0.322094;193200;96396 +3275/11678;016-PtMumbai: tx rollup (Originating `comparable_type` succeeds w/ tx rollups enabled);0.303345;0.020223;0.325223;193072;96396 +3276/11678;016-PtMumbai: tx rollup (Originating `comparable_type` fails w/ tx rollups disabled);0.302484;0.02388;0.326474;193068;96396 +3277/11678;016-PtMumbai: tx rollup (Originating `data` succeeds w/ tx rollups enabled);0.307379;0.016177;0.325073;193200;96392 +3278/11678;016-PtMumbai: tx rollup (Originating `data` fails w/ tx rollups disabled);0.300069;0.016003;0.316177;192840;96308 +3279/11678;016-PtMumbai: transfer ticket (ticket transfer operations);0.30808;0.020005;0.328204;194224;96396 +3280/11678;016-PtMumbai: transfer ticket ('contract (ticket cty)' as transfer destination);0.298454;0.023876;0.322441;194224;96396 +3281/11678;016-PtMumbai: transfer (single transfer);0.298135;0.019875;0.318145;193108;96140 +3282/11678;016-PtMumbai: transfer (single transfer with fee);0.304064;0.024005;0.328172;193748;96304 +3283/11678;016-PtMumbai: transfer (single transfer zero tez);0.279989;0.039998;0.320095;193364;96396 +3284/11678;016-PtMumbai: transfer (transfer zero tez from implicit contract);0.29072;0.031859;0.322684;193072;96304 +3285/11678;016-PtMumbai: transfer (transfer zero tez to an implicit contract with balance of src as fee);0.291783;0.027979;0.319864;192944;96140 +3286/11678;016-PtMumbai: transfer (transfer to originated contract paying transaction fee);0.293062;0.028101;0.321267;192940;96140 +3287/11678;016-PtMumbai: transfer (transfer zero tez to an originated contract with balance of src as fee);0.289066;0.028103;0.31729;193880;96316 +3288/11678;016-PtMumbai: transfer (transfer the amount from source contract balance);0.290492;0.027855;0.318459;193712;96396 +3289/11678;016-PtMumbai: transfer (transfers to itself);0.279827;0.039975;0.319901;193748;96396 +3290/11678;016-PtMumbai: transfer (missing transaction);0.291548;0.03195;0.323582;192900;96396 +3291/11678;016-PtMumbai: transfer (transfer from an implicit to implicit contract);0.29938;0.019958;0.319437;193072;96304 +3292/11678;016-PtMumbai: transfer (transfer from an implicit to an originated contract);0.287727;0.031969;0.319851;192940;96220 +3293/11678;016-PtMumbai: transfer (block with multiple transfers);0.330982;0.019938;0.351014;194004;96140 +3294/11678;016-PtMumbai: transfer (block with multiple transfer paying fee);0.295154;0.031908;0.327162;193072;96140 +3295/11678;016-PtMumbai: transfer (block with multiple transfer without paying fee);0.646593;0.03193;0.678633;206000;108084 +3296/11678;016-PtMumbai: transfer (build a chain);0.299215;0.027926;0.32724;193112;96392 +3297/11678;016-PtMumbai: transfer (empty implicit);0.293838;0.028176;0.322125;192976;96140 +3298/11678;016-PtMumbai: transfer (balance too low - transfer zero);0.297854;0.028175;0.326145;193068;96396 +3299/11678;016-PtMumbai: transfer (balance too low);0.299871;0.027987;0.327977;193624;96140 +3300/11678;016-PtMumbai: transfer (balance too low (max fee));0.304959;0.01605;0.321145;192988;96396 +3301/11678;016-PtMumbai: transfer (balance too low with two transfers - transfer zero);0.302734;0.0239;0.32676;193196;96140 +3302/11678;016-PtMumbai: transfer (balance too low with two transfers);0.309202;0.016062;0.325376;193072;96140 +3303/11678;016-PtMumbai: transfer (transfer one tez to an implicit contract with balance of src as fee);0.291759;0.031973;0.323857;193068;96140 +3304/11678;016-PtMumbai: transfer (invalid_counter);0.290502;0.027856;0.31849;193108;96296 +3305/11678;016-PtMumbai: transfer (add the same operation twice);0.293561;0.028149;0.321809;193232;96136 +3306/11678;016-PtMumbai: transfer (invalid_counter_in_the_future);0.291135;0.027917;0.319163;192932;96392 +3307/11678;016-PtMumbai: transfer (ownership sender);0.285654;0.032186;0.317949;193620;96140 +3308/11678;016-PtMumbai: transfer (random transfer);0.291829;0.031981;0.323915;192980;96392 +3309/11678;016-PtMumbai: transfer (random multi transfer);0.285003;0.044155;0.329256;193104;96140 +3310/11678;016-PtMumbai: transfer (bad entrypoint);0.286359;0.031817;0.318283;193232;96392 +3311/11678;016-PtMumbai: transfer (bad parameter);0.274475;0.039779;0.314365;193108;96300 +3312/11678;016-PtMumbai: transfer (no such entrypoint);0.279739;0.039962;0.31981;193620;96652 +3313/11678;016-PtMumbai: transfer (storage fees after contract call and allocation);0.310989;0.011961;0.323038;193048;96336 +3314/11678;016-PtMumbai: sc rollup (check effect of disabled feature flag);0.293769;0.024145;0.318024;193200;96396 +3315/11678;016-PtMumbai: sc rollup (check effect of disabled arith pvm flag);0.293383;0.024113;0.317664;193072;96140 +3316/11678;016-PtMumbai: sc rollup (can publish a commit, cement it and withdraw stake);0.317299;0.028115;0.345523;193076;96140 +3317/11678;016-PtMumbai: sc rollup (publish will fail if staker is double staking);0.305857;0.028171;0.334263;193072;96608 +3318/11678;016-PtMumbai: sc rollup (cement will fail if commitment is contested);0.327136;0.019947;0.347221;193200;96364 +3319/11678;016-PtMumbai: sc rollup (check the challenge window period boundaries);0.359278;0.039919;0.399291;193196;96248 +3320/11678;016-PtMumbai: sc rollup (originating with invalid types);0.306369;0.027851;0.334324;193328;96396 +3321/11678;016-PtMumbai: sc rollup (originating with valid type);0.327286;0.027939;0.355329;199892;101932 +3322/11678;016-PtMumbai: sc rollup (originating with invalid boot sector proof);0.270638;0.051739;0.322483;193200;96392 +3323/11678;016-PtMumbai: sc rollup (originating with invalid kind proof);0.304689;0.020045;0.324837;193200;96396 +3324/11678;016-PtMumbai: sc rollup (originating with random proof);0.29518;0.023933;0.319197;193536;96396 +3325/11678;016-PtMumbai: sc rollup (originating with proof for Tezos context trees);0.286883;0.03586;0.32286;193068;96184 +3326/11678;016-PtMumbai: sc rollup (originating with proof for Tezos context trees trying to pass as a binary tree);0.290881;0.031877;0.322861;193072;96140 +3327/11678;016-PtMumbai: sc rollup (single transaction atomic batch);0.330934;0.019935;0.350983;193972;96308 +3328/11678;016-PtMumbai: sc rollup (execute outbox message against older cemented commitment);0.476134;0.020005;0.496238;194096;96140 +3329/11678;016-PtMumbai: sc rollup (multi-transaction atomic batch);0.301429;0.036171;0.337717;193196;96140 +3330/11678;016-PtMumbai: sc rollup (transaction with invalid type);0.342374;0.023886;0.366381;193104;96140 +3331/11678;016-PtMumbai: sc rollup (execute same message twice);0.332048;0.028004;0.360142;192864;96312 +3332/11678;016-PtMumbai: sc rollup (execute same message twice against different cemented commitments);0.357411;0.024095;0.381613;194228;96396 +3333/11678;016-PtMumbai: sc rollup (transaction with zero amount ticket);0.301646;0.036197;0.337951;194100;96140 +3334/11678;016-PtMumbai: sc rollup (invalid output proof);0.30497;0.028089;0.333181;194128;96396 +3335/11678;016-PtMumbai: sc rollup (outbox message that overrides an old slot);17.8156;0.131996;17.9478;220592;122964 +3336/11678;016-PtMumbai: sc rollup (insufficient ticket balances);0.324017;0.028001;0.352131;194384;96396 +3337/11678;016-PtMumbai: sc rollup (inbox max number of messages per inbox level);2.26934;0.080047;2.34947;352612;256044 +3338/11678;016-PtMumbai: sc rollup (a player can't timeout another player before timeout period and related timeout value.);0.313257;0.028112;0.341498;193964;96140 +3339/11678;016-PtMumbai: sc rollup (a player cannot play more than max_number_of_parallel_games games in parallel.);0.371516;0.031958;0.403592;194220;96140 +3340/11678;016-PtMumbai: sc rollup (Two invalid final moves end the game in a draw situation);0.308676;0.024052;0.332815;193840;96396 +3341/11678;016-PtMumbai: sc rollup (Timeout during the final move can end the game in a draw situation);0.331351;0.015968;0.347427;193200;96392 +3342/11678;016-PtMumbai: sc rollup (Cannot play a dissection when the final move has started);0.310406;0.035816;0.346349;193964;96140 +3343/11678;016-PtMumbai: sc rollup (Invalid metadata initialization can be refuted);0.31983;0.031983;0.351984;193076;96096 +3344/11678;016-PtMumbai: sc rollup (SOL/Info_per_level/EOL are added in the inbox);0.287756;0.031972;0.319831;194092;96388 +3345/11678;016-PtMumbai: sc rollup (0-tick commitments are forbidden);0.310603;0.023892;0.334596;192940;96140 +3346/11678;016-PtMumbai: sc rollup (check the curfew functionality);0.325793;0.036199;0.36211;194092;96396 +3347/11678;016-PtMumbai: sc rollup (check that a commitment can be published after the inbox_level + challenge window is passed.);0.302692;0.031862;0.334669;192948;96200 +3348/11678;016-PtMumbai: sc rollup (An offline staker should not prevent cementation);0.324856;0.044116;0.369068;193072;96140 +3349/11678;016-PtMumbai: sc rollup (win refutation game by forfeit);0.330709;0.015937;0.346755;194096;96396 +3350/11678;016-PtMumbai: sc rollup (win refutation game by forfeit with draw);0.298616;0.047778;0.346507;193964;96136 +3351/11678;016-PtMumbai: sc rollup (cannot start a game with agreeing stakers);0.410205;0.039825;0.450132;194864;97072 +3352/11678;016-PtMumbai: sc rollup (find conflict point with incomplete branch);0.512694;0.040054;0.552864;193708;96820 +3353/11678;016-PtMumbai: sc rollup (cannot start a game on a cemented commitment);4.20129;0.048014;4.24946;217264;119592 +3354/11678;016-PtMumbai: sc rollup transfer (Transfer to a bad sc rollup address);0.306072;0.019874;0.326058;192944;96140 +3355/11678;016-PtMumbai: sc rollup transfer (Transfer to an unknown rollup address);0.302927;0.023915;0.32694;192948;96140 +3356/11678;016-PtMumbai: sc rollup transfer (Transfer with a wrong type);0.27309;0.048192;0.3214;193200;96300 +3357/11678;016-PtMumbai: sc rollup transfer (Transfer with a non-zero amount);0.283779;0.035972;0.319871;193072;96396 +3358/11678;016-PtMumbai: sc rollup transfer (Transfer works);0.293307;0.032143;0.325551;193364;96396 +3359/11678;016-PtMumbai: sc rollup transfer (Transfer of zero-amount ticket);0.311192;0.019948;0.331243;193072;96136 +3360/11678;016-PtMumbai: sc rollup transfer (Transfer of non-zero-amount ticket);0.300222;0.024017;0.32436;193200;96364 +3361/11678;016-PtMumbai: revelation (simple reveal);0.287537;0.031948;0.319584;193232;96396 +3362/11678;016-PtMumbai: revelation (empty account on reveal);0.279475;0.039925;0.319517;193744;96140 +3363/11678;016-PtMumbai: revelation (not enough funds for reveal);0.301155;0.020077;0.321334;193240;96392 +3364/11678;016-PtMumbai: revelation (transfer fees emptying balance after reveal in batch);0.305671;0.024131;0.329908;193068;96140 +3365/11678;016-PtMumbai: revelation (cannot forge reveal with fake keys and signature);0.287956;0.039993;0.328072;193072;96396 +3366/11678;016-PtMumbai: revelation (cannot re-reveal an account with fake keys and signature);0.288306;0.036038;0.32453;193840;96140 +3367/11678;016-PtMumbai: revelation (a backtracked reveal in a batch doesn't take effect);0.296847;0.024068;0.321031;193964;96140 +3368/11678;016-PtMumbai: revelation (cannot re-reveal a manager in a batch);0.285552;0.040218;0.325869;193884;96432 +3369/11678;016-PtMumbai: revelation (do not reveal when gas exhausted);0.296608;0.028057;0.324766;193836;96140 +3370/11678;016-PtMumbai: revelation (incorrect reveal position in batch);0.287518;0.031946;0.319566;192932;96236 +3371/11678;016-PtMumbai: revelation (cannot duplicate valid reveals in batch);0.295258;0.027929;0.323295;192940;96140 +3372/11678;016-PtMumbai: revelation (cannot batch a good reveal after a gas-exhausted one);0.300624;0.020041;0.320785;192944;96140 +3373/11678;016-PtMumbai: revelation (cannot batch a good reveal after an insolvent one);0.277662;0.048289;0.326054;193968;96300 +3374/11678;016-PtMumbai: revelation (cannot batch a good reveal after one emptying account);0.295581;0.031954;0.327637;193332;96396 +3375/11678;016-PtMumbai: paid storage increase (balances simple);0.289167;0.032129;0.321417;193104;96396 +3376/11678;016-PtMumbai: paid storage increase (null amount);0.308972;0.012037;0.321125;193236;96396 +3377/11678;016-PtMumbai: paid storage increase (negative amount);0.30374;0.023979;0.327835;192980;96140 +3378/11678;016-PtMumbai: paid storage increase (not enough tez to pay);0.290571;0.027863;0.318535;193968;96140 +3379/11678;016-PtMumbai: paid storage increase (no contract to bump its paid storage);0.285394;0.036176;0.32168;193196;96396 +3380/11678;016-PtMumbai: paid storage increase (effectiveness);0.313063;0.01204;0.325207;193104;96140 +3381/11678;016-PtMumbai: origination (balances_simple);0.290078;0.03223;0.322408;192976;96140 +3382/11678;016-PtMumbai: origination (balances_credit);0.300212;0.020014;0.320326;193620;96140 +3383/11678;016-PtMumbai: origination (balances_credit_fee);0.298451;0.023876;0.322436;193104;96300 +3384/11678;016-PtMumbai: origination (pay_fee);0.29627;0.024021;0.320395;193360;96396 +3385/11678;016-PtMumbai: origination (not enough tez in contract to pay fee);0.289005;0.032111;0.321246;193068;96396 +3386/11678;016-PtMumbai: origination (multiple originations);0.638923;0.023959;0.662987;218968;121136 +3387/11678;016-PtMumbai: origination (counter);0.308635;0.020041;0.328781;193108;96396 +3388/11678;016-PtMumbai: origination (unparsable script);0.292525;0.032057;0.324745;193876;96232 +3389/11678;016-PtMumbai: failing_noop operation (injection fails);0.303173;0.019945;0.323223;193236;96384 +3390/11678;016-PtMumbai: combined (multiple transfers);0.292661;0.032072;0.324838;193876;96396 +3391/11678;016-PtMumbai: combined (multiple originations and delegations);0.295668;0.031964;0.327739;193708;96388 +3392/11678;016-PtMumbai: combined (Failing operation in the middle);0.293756;0.032192;0.326067;193456;96136 +3393/11678;016-PtMumbai: combined (Failing operation in the middle (with fees));0.303061;0.019938;0.323103;193072;96200 +3394/11678;016-PtMumbai: combined (Failing operation (wrong manager in the middle of a pack));0.291282;0.031921;0.323303;193840;96140 +3395/11678;016-PtMumbai: combined (Inconsistent counters in batch);0.27923;0.047868;0.32721;192980;96140 +3396/11678;016-PtMumbai: activation (init with commitments);0.310397;0.031835;0.342338;193232;96320 +3397/11678;016-PtMumbai: activation (single activation);0.313127;0.028101;0.341384;194004;96240 +3398/11678;016-PtMumbai: activation (multi-activation one-by-one);0.321165;0.028102;0.349376;193876;96140 +3399/11678;016-PtMumbai: activation (multi-activation all at a time);0.298909;0.04384;0.342851;193836;96140 +3400/11678;016-PtMumbai: activation (activation and transfer);0.320382;0.024028;0.344512;193104;96300 +3401/11678;016-PtMumbai: activation (transfer to unactivated account then activate);0.308164;0.032017;0.340289;193972;96396 +3402/11678;016-PtMumbai: activation (invalid activation with no commitments);0.316448;0.024034;0.340588;193200;96136 +3403/11678;016-PtMumbai: activation (invalid activation with commitments);0.31765;0.028146;0.345899;193456;96140 +3404/11678;016-PtMumbai: activation (invalid double activation);0.308025;0.032002;0.340135;193108;96396 +3405/11678;016-PtMumbai: activation (wrong activation code);0.318525;0.02787;0.346506;192984;96140 +3406/11678;016-PtMumbai: activation (invalid transfer from unactivated account);0.307893;0.031988;0.339989;193584;96396 +3407/11678;016-PtMumbai: typechecking (unparse view);0.305278;0.020084;0.325488;192980;96396 +3408/11678;016-PtMumbai: typechecking (typecheck stack overflow error);0.305007;0.036119;0.341529;202540;105776 +3409/11678;016-PtMumbai: typechecking (comb type parsing);0.287903;0.035987;0.323995;193112;96392 +3410/11678;016-PtMumbai: typechecking (comb type unparsing);0.293164;0.032127;0.325394;193232;96392 +3411/11678;016-PtMumbai: typechecking (comb comparable type unparsing);0.283918;0.035989;0.320009;193076;96388 +3412/11678;016-PtMumbai: typechecking (comb data parsing);0.285187;0.03615;0.321439;193104;96140 +3413/11678;016-PtMumbai: typechecking (comb data unparsing);0.291713;0.027972;0.319794;192976;96140 +3414/11678;016-PtMumbai: typechecking (optimal comb data unparsing);0.286944;0.031882;0.318933;192948;96140 +3415/11678;016-PtMumbai: typechecking (parse address);0.297877;0.020126;0.318108;193876;96140 +3416/11678;016-PtMumbai: typechecking (unpackability of the contract type);0.299666;0.027968;0.327745;193044;96396 +3417/11678;016-PtMumbai: typechecking (forbidden SELF in view);0.290681;0.035837;0.328109;193236;96328 +3418/11678;016-PtMumbai: typechecking (forbidden SET_DELEGATE in view);0.292676;0.024055;0.318213;192940;96140 +3419/11678;016-PtMumbai: typechecking (forbidden TRANSFER_TOKENS in view);0.28722;0.031913;0.320599;193200;96396 +3420/11678;016-PtMumbai: typechecking (forbidden CREATE_CONTRACT in view);0.308227;0.012166;0.321938;193200;96392 +3421/11678;016-PtMumbai: typechecking (parse contract data for rollup);0.296138;0.024011;0.320266;193936;96396 +3422/11678;016-PtMumbai: typechecking (parse contract data for rollup with entrypoint invalid type);0.293148;0.032125;0.325372;193072;96140 +3423/11678;016-PtMumbai: typechecking (lambda_rec instruction);0.27424;0.043719;0.319436;192980;96140 +3424/11678;016-PtMumbai: typechecking (lambda_rec instruction with apply);0.281026;0.036132;0.317478;193200;96396 +3425/11678;016-PtMumbai: typechecking (lambda_rec with type error);0.283841;0.039977;0.325247;193364;96392 +3426/11678;016-PtMumbai: ticket storage (no overlapping keys for ticketer);0.291658;0.027967;0.319733;192940;96140 +3427/11678;016-PtMumbai: ticket storage (no overlapping keys for content);0.308152;0.020009;0.32826;193068;96308 +3428/11678;016-PtMumbai: ticket storage (no overlapping keys for content type);0.309177;0.016061;0.325355;192944;96084 +3429/11678;016-PtMumbai: ticket storage (no overlapping keys for owner);0.283821;0.035977;0.319897;193072;96140 +3430/11678;016-PtMumbai: ticket storage (ticket balance single update);0.29413;0.027823;0.322119;193072;96392 +3431/11678;016-PtMumbai: ticket storage (empty balance);0.297316;0.028124;0.325555;193240;96396 +3432/11678;016-PtMumbai: ticket storage (empty balance after update);0.290426;0.027849;0.318384;193328;96388 +3433/11678;016-PtMumbai: ticket storage (negative balance);0.279386;0.039912;0.319418;192980;96396 +3434/11678;016-PtMumbai: ticket storage (ticket balance multiple updates);0.289419;0.032157;0.321692;193076;96388 +3435/11678;016-PtMumbai: ticket storage (ticket balance different owners);0.303398;0.023952;0.327455;193204;96396 +3436/11678;016-PtMumbai: ticket storage (ticket storage space);0.28747;0.035933;0.323534;193000;96396 +3437/11678;016-PtMumbai: ticket scanner (tickets in unit ticket);0.308378;0.016019;0.324505;193236;96136 +3438/11678;016-PtMumbai: ticket scanner (tickets in list);0.295253;0.023939;0.319279;193004;96308 +3439/11678;016-PtMumbai: ticket scanner (tickets in list with zero amount);0.288594;0.032066;0.320763;193200;96140 +3440/11678;016-PtMumbai: ticket scanner (tickets in pair);0.294859;0.023907;0.318868;193108;96144 +3441/11678;016-PtMumbai: ticket scanner (tickets in pair with zero amount);0.295173;0.027921;0.323228;193068;96396 +3442/11678;016-PtMumbai: ticket scanner (tickets in map);0.284705;0.040099;0.324908;193236;96396 +3443/11678;016-PtMumbai: ticket scanner (tickets in map with zero amount);0.290732;0.035843;0.326693;192948;96140 +3444/11678;016-PtMumbai: ticket scanner (tickets in big map);0.283828;0.03198;0.315884;193080;96252 +3445/11678;016-PtMumbai: ticket scanner (tickets in big map with include lazy set to false);0.287692;0.031965;0.31977;192944;96140 +3446/11678;016-PtMumbai: ticket scanner (tickets in list in big map);0.295277;0.027931;0.323322;193068;96396 +3447/11678;016-PtMumbai: ticket scanner (tickets in a pair of big-map and list with include lazy set to false);0.302924;0.015943;0.319016;192940;96264 +3448/11678;016-PtMumbai: ticket scanner (tickets in or left);0.279548;0.043928;0.323575;193108;96400 +3449/11678;016-PtMumbai: ticket scanner (tickets in or left with zero amount);0.282503;0.043768;0.326385;193068;96396 +3450/11678;016-PtMumbai: ticket scanner (tickets in or right);0.300104;0.028009;0.32822;193108;96140 +3451/11678;016-PtMumbai: ticket scanner (tickets in empty big-map ref);0.293815;0.032198;0.326148;192940;96144 +3452/11678;016-PtMumbai: ticket scanner (tickets in big-map ref);0.300702;0.024056;0.324857;193744;96140 +3453/11678;016-PtMumbai: ticket scanner (tickets in non-empty big-map ref);0.297467;0.032158;0.329712;192888;96132 +3454/11678;016-PtMumbai: ticket scanner (tickets in non-empty big-map ref with overlay);0.288616;0.040085;0.328832;192940;96140 +3455/11678;016-PtMumbai: ticket scanner (tickets replace existing value from overlay);0.286354;0.031817;0.318306;192948;96112 +3456/11678;016-PtMumbai: ticket scanner (tickets remove existing value from overlay);0.276665;0.044106;0.32088;192904;96396 +3457/11678;016-PtMumbai: ticket operations diff (operations that do not involve tickets);0.285776;0.036225;0.322103;193200;96276 +3458/11678;016-PtMumbai: ticket operations diff (transfer to non-ticket contract);0.313578;0.01608;0.329769;193068;96396 +3459/11678;016-PtMumbai: ticket operations diff (transfer empty ticket list);0.299139;0.027919;0.32716;193072;96140 +3460/11678;016-PtMumbai: ticket operations diff (transfer one ticket);0.2907;0.027875;0.318688;193584;96140 +3461/11678;016-PtMumbai: ticket operations diff (transfer multiple tickets);0.298911;0.031883;0.330867;193032;96400 +3462/11678;016-PtMumbai: ticket operations diff (transfer different tickets);0.305935;0.016101;0.322155;193200;96400 +3463/11678;016-PtMumbai: ticket operations diff (transfer to two contracts with different tickets);0.286996;0.035874;0.323011;193968;96304 +3464/11678;016-PtMumbai: ticket operations diff (originate contract that does not contain tickets);0.292379;0.028036;0.320521;193968;96144 +3465/11678;016-PtMumbai: ticket operations diff (originate with empty ticket list);0.29542;0.031937;0.32747;193328;96368 +3466/11678;016-PtMumbai: ticket operations diff (originate with one ticket);0.301818;0.028169;0.330104;192948;96140 +3467/11678;016-PtMumbai: ticket operations diff (originate with multiple tickets);0.298568;0.023885;0.322556;192944;96136 +3468/11678;016-PtMumbai: ticket operations diff (originate with different tickets);0.298395;0.023871;0.322373;193068;96140 +3469/11678;016-PtMumbai: ticket operations diff (originate two contracts with different tickets);0.296301;0.028028;0.324448;193200;96396 +3470/11678;016-PtMumbai: ticket operations diff (originate and transfer);0.284751;0.036095;0.320946;193836;96136 +3471/11678;016-PtMumbai: ticket operations diff (originate big-map with tickets);0.285607;0.036203;0.321913;194096;96140 +3472/11678;016-PtMumbai: ticket operations diff (transfer big-map with tickets);0.289073;0.032119;0.321294;194096;96396 +3473/11678;016-PtMumbai: ticket operations diff (tx rollup deposit one ticket);0.274582;0.051732;0.32642;193580;96108 +3474/11678;016-PtMumbai: ticket operations diff (transfer fails on multiple zero tickets);0.299794;0.02798;0.327881;193200;96392 +3475/11678;016-PtMumbai: ticket operations diff (fail in zero-amount tickets);0.295442;0.031939;0.327484;193836;96140 +3476/11678;016-PtMumbai: ticket manager (Create contract);0.309253;0.03213;0.341486;193872;97064 +3477/11678;016-PtMumbai: ticket manager (Send self replace big-map);0.309694;0.028154;0.337959;192940;96140 +3478/11678;016-PtMumbai: ticket manager (Add and remove from strict storage);0.306525;0.031846;0.33848;193072;96136 +3479/11678;016-PtMumbai: ticket manager (Add and remove from lazy storage);0.312423;0.028037;0.340601;194608;97600 +3480/11678;016-PtMumbai: ticket manager (Mix of operations);0.316282;0.020017;0.336412;193108;96352 +3481/11678;016-PtMumbai: ticket lazy storage diff (allocate new empty);0.309431;0.016074;0.325615;193964;96140 +3482/11678;016-PtMumbai: ticket lazy storage diff (allocate new);0.281845;0.040263;0.322231;192720;96140 +3483/11678;016-PtMumbai: ticket lazy storage diff (allocate new no tickets);0.28301;0.035874;0.319006;193580;96396 +3484/11678;016-PtMumbai: ticket lazy storage diff (Remove);0.294596;0.027867;0.322564;193240;96396 +3485/11678;016-PtMumbai: ticket lazy storage diff (no updates to existing);0.287314;0.035914;0.323336;193712;96136 +3486/11678;016-PtMumbai: ticket lazy storage diff (update existing big-map);0.292892;0.028085;0.321082;193076;96144 +3487/11678;016-PtMumbai: ticket lazy storage diff (update same key multiple times on existing big-map);0.292968;0.024079;0.317152;193968;96136 +3488/11678;016-PtMumbai: ticket lazy storage diff (remove same key multiple times on existing big-map);0.304689;0.024054;0.328847;193324;96396 +3489/11678;016-PtMumbai: ticket lazy storage diff (update and remove same key multiple times on existing big-map);0.28755;0.039937;0.327588;192940;96136 +3490/11678;016-PtMumbai: ticket lazy storage diff (copy);0.312756;0.012029;0.324925;193236;96396 +3491/11678;016-PtMumbai: ticket lazy storage diff (copy with updates);0.287417;0.035927;0.323443;193068;96396 +3492/11678;016-PtMumbai: ticket lazy storage diff (copy with multiple updates to same key);0.291526;0.027954;0.319583;194096;96396 +3493/11678;016-PtMumbai: ticket lazy storage diff (mix lazy diffs);0.292567;0.024046;0.316723;193236;96392 +3494/11678;016-PtMumbai: ticket balance key (different ticketers);0.293101;0.028105;0.321306;193240;96396 +3495/11678;016-PtMumbai: ticket balance key (different owners);0.287822;0.03198;0.319907;193104;96148 +3496/11678;016-PtMumbai: ticket balance key (different content);0.296924;0.020062;0.317086;193112;96304 +3497/11678;016-PtMumbai: ticket balance key (different amounts);0.28344;0.035929;0.319476;193364;96396 +3498/11678;016-PtMumbai: ticket balance key (nat int);0.294398;0.027848;0.322354;192936;96364 +3499/11678;016-PtMumbai: ticket balance key (nat mutez);0.304636;0.016033;0.320773;192976;96140 +3500/11678;016-PtMumbai: ticket balance key (not bool);0.302401;0.023873;0.326381;193232;96396 +3501/11678;016-PtMumbai: ticket balance key (nat bytes);0.295928;0.031992;0.328034;192984;96140 +3502/11678;016-PtMumbai: ticket balance key (string chain_id);0.304708;0.016037;0.320864;192980;96148 +3503/11678;016-PtMumbai: ticket balance key (string key_hash);0.278814;0.03983;0.318758;192980;96140 +3504/11678;016-PtMumbai: ticket balance key (string timestamp);0.271597;0.051922;0.323649;192980;96264 +3505/11678;016-PtMumbai: ticket balance key (string address);0.298503;0.0199;0.318504;193104;96140 +3506/11678;016-PtMumbai: ticket balance key (string key);0.284747;0.040105;0.324953;193108;96296 +3507/11678;016-PtMumbai: ticket balance key (string signature);0.276352;0.044056;0.320539;193108;96400 +3508/11678;016-PtMumbai: ticket balance key (annotations for pair);0.299531;0.019968;0.319617;193232;96292 +3509/11678;016-PtMumbai: ticket balance key (annotations for or);0.292346;0.028033;0.320485;193236;96396 +3510/11678;016-PtMumbai: ticket balance key (annotations for type alias);0.29736;0.02411;0.321568;192948;96140 +3511/11678;016-PtMumbai: ticket balance key (annotations for paired ors);0.292574;0.03607;0.328742;193196;96136 +3512/11678;016-PtMumbai: ticket balance key (option none);0.295421;0.023953;0.31948;193236;96396 +3513/11678;016-PtMumbai: ticket balance key (option some);0.299659;0.019977;0.319736;192980;96140 +3514/11678;016-PtMumbai: ticket balance (add strict);0.294485;0.031836;0.326421;193872;96140 +3515/11678;016-PtMumbai: ticket balance (dd and remove);0.309672;0.020108;0.329889;193876;96140 +3516/11678;016-PtMumbai: ticket balance (add to big-map);0.304521;0.020034;0.324658;194132;96392 +3517/11678;016-PtMumbai: ticket balance (swap big-map);0.292063;0.036007;0.328172;194132;96296 +3518/11678;016-PtMumbai: ticket balance (send ticket);0.286796;0.031866;0.31878;194132;96396 +3519/11678;016-PtMumbai: ticket balance (send ticket to implicit);0.281086;0.040155;0.321359;192984;96140 +3520/11678;016-PtMumbai: ticket balance (send and store tickets with amount 0);0.305316;0.028121;0.33358;193196;96184 +3521/11678;016-PtMumbai: ticket balance (send tickets in big-map);0.303331;0.023947;0.327392;193364;96396 +3522/11678;016-PtMumbai: ticket balance (modify big-map);0.28787;0.039981;0.327957;194128;96396 +3523/11678;016-PtMumbai: ticket balance (send drop);0.300477;0.024038;0.324628;192980;96140 +3524/11678;016-PtMumbai: ticket balance (create contract with ticket);0.312252;0.016012;0.328366;193968;96400 +3525/11678;016-PtMumbai: ticket balance (join);0.299024;0.023921;0.323053;194004;96144 +3526/11678;016-PtMumbai: ticket balance (wallet);0.2999;0.023992;0.323994;193108;96388 +3527/11678;016-PtMumbai: ticket balance (ticket storage);0.304813;0.028074;0.332985;193232;96396 +3528/11678;016-PtMumbai: ticket balance (storage for create and remove tickets);0.311831;0.015991;0.327938;192940;96140 +3529/11678;016-PtMumbai: ticket accounting (Diffs empty);0.272999;0.048176;0.321292;193236;96404 +3530/11678;016-PtMumbai: ticket accounting (Diffs for tickets in args);0.286373;0.031819;0.318385;192944;96140 +3531/11678;016-PtMumbai: ticket accounting (Diffs for tickets in args and storage);0.304373;0.016019;0.320502;193836;96136 +3532/11678;016-PtMumbai: ticket accounting (Diffs for dropped ticket);0.301021;0.024081;0.325222;193840;96140 +3533/11678;016-PtMumbai: ticket accounting (Diffs for adding new ticket to storage);0.301151;0.024092;0.325347;193324;96396 +3534/11678;016-PtMumbai: ticket accounting (Diffs for removing from storage);0.301051;0.028098;0.329247;193524;96224 +3535/11678;016-PtMumbai: ticket accounting (Diffs for lazy storage allocation);0.299593;0.023967;0.323668;193200;96396 +3536/11678;016-PtMumbai: ticket accounting (Diffs for removing from big-map);0.2955;0.023959;0.319563;193072;96140 +3537/11678;016-PtMumbai: ticket accounting (Diffs for copying a big-map);0.281434;0.044225;0.325766;193072;96204 +3538/11678;016-PtMumbai: ticket accounting (Diffs for adding to an existing big-map);0.293515;0.024124;0.317747;193840;96140 +3539/11678;016-PtMumbai: ticket accounting (Diffs for args, storage and lazy-diff);0.299374;0.019958;0.319449;192948;96140 +3540/11678;016-PtMumbai: ticket accounting (Update tickets balances with invalid transfer);0.291486;0.031943;0.323544;192940;96208 +3541/11678;016-PtMumbai: ticket accounting (Update ticket self diff);0.297149;0.028108;0.325366;193072;96136 +3542/11678;016-PtMumbai: ticket accounting (Update ticket balances for valid transfer);0.311608;0.011984;0.323707;193068;96396 +3543/11678;016-PtMumbai: ticket accounting (Update ticket balances for transfer with 'self' tickets);0.312589;0.008015;0.320708;193200;96308 +3544/11678;016-PtMumbai: ticket accounting (Update transfer tickets to self);0.295836;0.027984;0.323937;193580;96136 +3545/11678;016-PtMumbai: ticket accounting (Update invalid origination);0.301095;0.028102;0.329294;193068;96396 +3546/11678;016-PtMumbai: ticket accounting (Update valid origination);0.288816;0.03209;0.321015;192940;96140 +3547/11678;016-PtMumbai: ticket accounting (Update valid self origination);0.305281;0.020084;0.325465;192940;96140 +3548/11678;016-PtMumbai: ticket accounting (Test ticket-token map with duplicate keys);0.278465;0.043758;0.322335;193072;96140 +3549/11678;016-PtMumbai: temp big maps (temp_big_maps(Left True, -1));0.300074;0.028006;0.329647;192816;96140 +3550/11678;016-PtMumbai: temp big maps (temp_big_maps(Left True, 0));0.289064;0.028103;0.317295;193840;96140 +3551/11678;016-PtMumbai: temp big maps (temp_big_maps(Left True, 1));0.300389;0.020025;0.320512;193072;96140 +3552/11678;016-PtMumbai: temp big maps (temp_big_maps(Left True, 2));0.292892;0.028085;0.321086;193204;96396 +3553/11678;016-PtMumbai: temp big maps (temp_big_maps(Left False, -1));0.296979;0.028092;0.325173;192944;96140 +3554/11678;016-PtMumbai: temp big maps (temp_big_maps(Left False, 0));0.295086;0.023925;0.319117;193964;96136 +3555/11678;016-PtMumbai: temp big maps (temp_big_maps(Left False, 1));0.279438;0.043911;0.323452;193072;96396 +3556/11678;016-PtMumbai: temp big maps (temp_big_maps(Left False, 2));0.297539;0.028145;0.32579;193196;96396 +3557/11678;016-PtMumbai: temp big maps (temp_big_maps(Right {}, -1));0.295752;0.023979;0.319829;193068;96392 +3558/11678;016-PtMumbai: temp big maps (temp_big_maps(Right {}, 0));0.319971;0.011998;0.332092;193964;96396 +3559/11678;016-PtMumbai: temp big maps (temp_big_maps(Right {}, 1));0.287874;0.031986;0.319958;192940;96140 +3560/11678;016-PtMumbai: temp big maps (temp_big_maps(Right {}, 2));0.288232;0.036029;0.32438;192940;96396 +3561/11678;016-PtMumbai: script typed ir size (value size);0.712635;0.040035;0.752772;219728;121388 +3562/11678;016-PtMumbai: script typed ir size (ty size);0.276598;0.040086;0.316768;193104;96396 +3563/11678;016-PtMumbai: script typed ir size (kinstr size);0.311121;0.015954;0.32719;193012;96140 +3564/11678;016-PtMumbai: script typed ir size (witness sizes);0.3008;0.020053;0.320963;192980;96140 +3565/11678;016-PtMumbai: script typed ir size (micheline sizes);0.282475;0.031828;0.314479;192980;96144 +3566/11678;016-PtMumbai: script cache (assumption about size of liquidity baking holds);0.292089;0.036011;0.328225;193324;96396 +3567/11678;016-PtMumbai: script cache (assumption about size of 'int_store' contract holds);0.292558;0.028053;0.322246;193072;96284 +3568/11678;016-PtMumbai: script cache (find correctly looks up);0.306117;0.012083;0.318567;194000;96396 +3569/11678;016-PtMumbai: script cache (update correctly modifies);0.298408;0.023872;0.322383;194260;96300 +3570/11678;016-PtMumbai: script cache (entries correctly list contracts in order);0.306945;0.039863;0.346921;193076;96396 +3571/11678;016-PtMumbai: script cache (contract_rank is LRU rank);0.308633;0.024049;0.332798;193108;96140 +3572/11678;016-PtMumbai: script cache (size returns entries size);0.293457;0.036179;0.329751;192080;95372 +3573/11678;016-PtMumbai: script cache (size limit is a protocol constant);0.301902;0.024152;0.32616;193204;96396 +3574/11678;016-PtMumbai: script cache (entries show LRU behavior);0.315386;0.015968;0.331455;194132;96360 +3575/11678;016-PtMumbai: sapling (commitments_add_uncommitted);0.396386;0.036035;0.432531;192980;96140 +3576/11678;016-PtMumbai: sapling (nullifier_double);0.271958;0.051992;0.324061;193880;96140 +3577/11678;016-PtMumbai: sapling (nullifier_test);0.332284;0.028024;0.360409;193752;96140 +3578/11678;016-PtMumbai: sapling (cm_cipher_test);0.30789;0.02799;0.336068;193620;96144 +3579/11678;016-PtMumbai: sapling (list_insertion_test);0.419725;0.035976;0.455821;193748;96140 +3580/11678;016-PtMumbai: sapling (root);0.301398;0.02813;0.32963;193112;96140 +3581/11678;016-PtMumbai: sapling (test_get_memo_size);0.266955;0.059766;0.326822;192984;96136 +3582/11678;016-PtMumbai: sapling (verify_memo);1.54038;0.032007;0.579028;260236;164308 +3583/11678;016-PtMumbai: sapling (bench_phases);50.0752;0.205523;4.76221;398624;302132 +3584/11678;016-PtMumbai: sapling (bench_phases_legacy);49.9837;0.265016;4.73601;394428;297944 +3585/11678;016-PtMumbai: sapling (bench_fold_over_same_token);44.2968;0.180459;4.25553;407316;310940 +3586/11678;016-PtMumbai: sapling (double_spend_same_input);26.2569;0.129683;2.72993;387216;291200 +3587/11678;016-PtMumbai: sapling (verifyupdate_one_transaction);10.0956;0.083963;1.3413;338612;242700 +3588/11678;016-PtMumbai: sapling (verifyupdate_two_transactions);19.8279;0.111571;2.18273;355408;258376 +3589/11678;016-PtMumbai: sapling (shielded_tez);412.454;0.751799;35.5219;438124;341292 +3590/11678;016-PtMumbai: sapling (use state from other contract and transact);2.65159;0.056675;0.675202;263312;167548 +3591/11678;016-PtMumbai: sapling (Instruction PUSH sapling_state 0 should be forbidden);0.295165;0.028303;0.324947;194092;96396 +3592/11678;016-PtMumbai: sapling (transac_and_block);10.2079;0.103552;1.37786;339164;242868 +3593/11678;016-PtMumbai: sapling (drop);15.7344;0.122892;1.77585;272400;176948 +3594/11678;016-PtMumbai: sapling (double);2.6576;0.04076;0.69476;263436;167092 +3595/11678;016-PtMumbai: sapling (state_as_arg);2.65395;0.027727;0.679607;265960;169332 +3596/11678;016-PtMumbai: lazy storage diff (conversion roundtrip);0.288199;0.032022;0.32032;192980;96092 +3597/11678;016-PtMumbai: lazy storage diff (encoding roundtrip);0.296038;0.028003;0.324135;192864;96652 +3598/11678;016-PtMumbai: lambda normalization (lambdas are normalized to optimized format during elaboration);0.343433;0.043927;0.387472;205484;109108 +3599/11678;016-PtMumbai: interpretation (bad contract error);0.290472;0.027853;0.318404;192992;96396 +3600/11678;016-PtMumbai: interpretation (check robustness overflow error);0.489603;0.036118;0.525887;241460;144804 +3601/11678;016-PtMumbai: interpretation (check robustness overflow error in lwt);1.71992;0.039998;1.76004;289712;193076 +3602/11678;016-PtMumbai: interpretation (test multiplication no illegitimate overflow);0.302902;0.023913;0.326922;192944;96108 +3603/11678;016-PtMumbai: interpretation (stack overflow error);0.495841;0.027991;0.523936;241676;144680 +3604/11678;016-PtMumbai: interpretation (map instr against options);0.60208;0.035885;0.638171;218032;121136 +3605/11678;016-PtMumbai: interpretation (lambda_rec instruction);0.291844;0.027985;0.319945;192980;96136 +3606/11678;016-PtMumbai: interpretation (lambda_rec instruction with apply);0.285181;0.036149;0.321436;193068;96392 +3607/11678;016-PtMumbai: interpretation (lambda_rec instruction with an infinite recursion);0.941163;0.120148;1.06162;880440;784968 +3608/11678;016-PtMumbai: interpretation (lambda_rec instruction storage);0.292499;0.040068;0.332927;193068;96140 +3609/11678;016-PtMumbai: interpretation (lambda_rec instruction storage apply store);0.287031;0.035878;0.324413;193068;96140 +3610/11678;016-PtMumbai: interpretation (test error encoding: Reject);0.277038;0.044165;0.321303;192948;96396 +3611/11678;016-PtMumbai: interpretation (test error encoding: Overflow);0.26911;0.044182;0.313511;193196;96252 +3612/11678;016-PtMumbai: interpretation (test error encoding: Runtime_contract_error);0.281723;0.040246;0.322135;192944;96068 +3613/11678;016-PtMumbai: interpretation (test error encoding: Bad_contract_parameter);0.296174;0.028016;0.3243;192944;96140 +3614/11678;016-PtMumbai: interpretation (test error encoding: Cannot_serialize_failure);0.295308;0.023943;0.319351;193068;96396 +3615/11678;016-PtMumbai: interpretation (test error encoding: Cannot_serialize_storage);0.280689;0.036088;0.31689;193072;96140 +3616/11678;016-PtMumbai: global table of constants (Multiple blocks happy path);0.309401;0.02009;0.329596;194096;96396 +3617/11678;016-PtMumbai: global table of constants (Bad register global operations fail when added to the block);0.291928;0.027993;0.320021;193328;96392 +3618/11678;016-PtMumbai: global table of constants (You cannot register the same expression twice.);0.315689;0.007992;0.323791;193068;96108 +3619/11678;016-PtMumbai: event logging (contract emits event with correct data in proper order);0.290001;0.035753;0.327371;193324;96396 +3620/11678;016-PtMumbai: block time instructions (MIN_BLOCK_TIME gives current minimal block delay);0.303223;0.023938;0.327274;193072;96308 +3621/11678;016-PtMumbai: annotations (External origination preserves annotations);0.292809;0.028077;0.320995;193840;96308 +3622/11678;016-PtMumbai: annotations (Internal origination preserves annotations);0.294675;0.027874;0.322651;193716;96252 +3623/11678;016-PtMumbai: gas levels (Detect gas exhaustion in fresh context);0.279192;0.039884;0.319196;192948;96140 +3624/11678;016-PtMumbai: gas levels (Detect gas exhaustion when operation gas as hits zero);0.301694;0.01609;0.317894;192944;96140 +3625/11678;016-PtMumbai: gas levels (Detect gas exhaustion when block gas as hits zero);0.295247;0.023938;0.319317;193200;96336 +3626/11678;016-PtMumbai: gas levels (Detect gas limit consumption when it is above the hard gas operation limit);0.27949;0.039927;0.319517;192940;96140 +3627/11678;016-PtMumbai: gas levels (Each new operation impacts block gas level, each gas consumption impacts operation gas level);0.297282;0.024104;0.321484;192944;96140 +3628/11678;016-PtMumbai: gas levels (Switches operation gas consumption from limited to unlimited);0.2964;0.028037;0.324543;193072;96144 +3629/11678;016-PtMumbai: gas levels (Switches operation gas consumption from unlimited to limited);0.285694;0.036214;0.322008;193076;96140 +3630/11678;016-PtMumbai: gas levels (Accepts a block that consumes all of its gas);0.267633;0.055923;0.323658;193836;96140 +3631/11678;016-PtMumbai: gas levels (Detect when the sum of all operation gas limits exceeds the hard gas limit per block);0.291697;0.035962;0.327782;193200;96208 +3632/11678;016-PtMumbai: gas levels (Detect when gas limit of operation list exceeds the hard gas limit per block);0.298964;0.023917;0.322985;193068;96140 +3633/11678;016-PtMumbai: gas levels (the gas consumption of various operations);0.291676;0.031964;0.323762;192812;96396 +3634/11678;016-PtMumbai: gas levels (emptying an account costs gas);0.301901;0.024152;0.326153;193076;96140 +3635/11678;016-PtMumbai: gas levels (bake one operation with contract nil);0.286708;0.035838;0.322721;194092;96260 +3636/11678;016-PtMumbai: gas levels (bake one operation list with contract nil);0.294356;0.027844;0.322274;192900;96396 +3637/11678;016-PtMumbai: gas levels (multiple single operations with contract nil);0.292828;0.028079;0.321003;193068;96396 +3638/11678;016-PtMumbai: gas levels (both lists and single operations with contract nil);0.296558;0.020037;0.316704;194092;96140 +3639/11678;016-PtMumbai: gas levels (bake one operation with contract fail);0.278354;0.043741;0.322281;192940;96136 +3640/11678;016-PtMumbai: gas levels (bake one operation list with contract fail);0.295996;0.023999;0.320098;193072;96308 +3641/11678;016-PtMumbai: gas levels (multiple single operations with contract fail);0.296129;0.032014;0.328248;194228;96396 +3642/11678;016-PtMumbai: gas levels (both lists and single operations with contract fail);0.305368;0.024108;0.329576;193328;96396 +3643/11678;016-PtMumbai: gas levels (bake one operation with contract infinite loop);0.302932;0.023915;0.326954;192944;96140 +3644/11678;016-PtMumbai: gas levels (bake one operation list with contract infinite loop);0.292305;0.036037;0.328475;192940;96140 +3645/11678;016-PtMumbai: gas levels (multiple single operations with contract infinite loop);0.295266;0.03192;0.327282;194092;96312 +3646/11678;016-PtMumbai: gas levels (both lists and single operations with contract infinite loop);0.301718;0.02816;0.329987;194092;96392 +3647/11678;016-PtMumbai: gas cost functions (Positivity of interpreter costs);0.301628;0.020108;0.321846;193072;96392 +3648/11678;016-PtMumbai: gas cost functions (Positivity of typechecking costs);0.315651;0.007991;0.323749;193072;96140 +3649/11678;016-PtMumbai: gas cost functions (Positivity of unparsing costs);0.277022;0.040148;0.31727;193072;96140 +3650/11678;016-PtMumbai: gas cost functions (Positivity of io costs);0.287936;0.035992;0.324041;193072;96140 +3651/11678;016-PtMumbai: seed (seed computation (no commitment));0.355794;0.027983;0.383882;193108;96140 +3652/11678;016-PtMumbai: seed (no commitment);0.292197;0.036024;0.328321;192984;96140 +3653/11678;016-PtMumbai: seed (revelation_early_wrong_right_twice);0.30325;0.031921;0.335261;192864;96304 +3654/11678;016-PtMumbai: seed (revelation_missing_and_late);0.299343;0.031929;0.331447;192980;96292 +3655/11678;016-PtMumbai: seed (unrevealed);0.302935;0.039859;0.34291;193108;96396 +3656/11678;016-PtMumbai: seed (early_incorrect_unverified_correct_already_vdf);0.856309;0.040014;0.896409;194556;97844 +3657/11678;016-PtMumbai: seed (VDF status);0.305109;0.024087;0.32935;193108;96184 +3658/11678;016-PtMumbai: seed (for_cycle cycle bounds);0.319257;0.011972;0.331333;193240;96140 +3659/11678;016-PtMumbai: preendorsement (AppMode: ok: include_preendorsement_in_block_with_locked_round);0.302397;0.023873;0.326386;193072;96140 +3660/11678;016-PtMumbai: preendorsement (AppMode: ko: test_preendorsement_with_bad_branch);0.312962;0.012037;0.325098;193716;96396 +3661/11678;016-PtMumbai: preendorsement (AppMode: ko: duplicate_preendorsement_in_pqc);0.283903;0.035987;0.319991;194092;96140 +3662/11678;016-PtMumbai: preendorsement (AppMode: ko:locked_round_not_before_block_round);0.290643;0.035832;0.326581;193068;96140 +3663/11678;016-PtMumbai: preendorsement (AppMode: ko: with_locked_round_in_block_but_without_any_pqc);0.303151;0.023933;0.327246;193964;96252 +3664/11678;016-PtMumbai: preendorsement (AppMode: ko: preendorsement_has_wrong_level);0.298584;0.031849;0.330557;193968;96140 +3665/11678;016-PtMumbai: preendorsement (AppMode: ok: preendorsement_in_block_with_good_slot);0.299113;0.023929;0.32314;194096;96396 +3666/11678;016-PtMumbai: preendorsement (AppMode: ko: preendorsement_in_block_with_wrong_slot);0.308592;0.020038;0.328742;194096;96140 +3667/11678;016-PtMumbai: preendorsement (AppMode: ko: preendorsement_in_block_with_wrong_signature);0.307639;0.011985;0.319723;193968;96396 +3668/11678;016-PtMumbai: preendorsement (AppMode: ko: locked_round_is_higher_than_pqc_round);0.294958;0.031887;0.326957;193712;96140 +3669/11678;016-PtMumbai: preendorsement (ConstrMode: ok: include_preendorsement_in_block_with_locked_round);0.309322;0.020085;0.329503;192888;96136 +3670/11678;016-PtMumbai: preendorsement (ConstrMode: ko: test_preendorsement_with_bad_branch);0.304254;0.020016;0.324372;193196;96132 +3671/11678;016-PtMumbai: preendorsement (ConstrMode: ko: duplicate_preendorsement_in_pqc);0.290978;0.031888;0.323015;193968;96152 +3672/11678;016-PtMumbai: preendorsement (ConstrMode: ko:locked_round_not_before_block_round);0.292258;0.028024;0.320389;193196;96244 +3673/11678;016-PtMumbai: preendorsement (ConstrMode: ko: with_locked_round_in_block_but_without_any_pqc);0.287747;0.035968;0.323823;193196;96140 +3674/11678;016-PtMumbai: preendorsement (ConstrMode: ko: preendorsement_has_wrong_level);0.28365;0.035955;0.319709;193068;96236 +3675/11678;016-PtMumbai: preendorsement (ConstrMode: ok: preendorsement_in_block_with_good_slot);0.304997;0.016052;0.321153;192948;96248 +3676/11678;016-PtMumbai: preendorsement (ConstrMode: ko: preendorsement_in_block_with_wrong_slot);0.28503;0.03613;0.321318;193204;96264 +3677/11678;016-PtMumbai: preendorsement (ConstrMode: ko: preendorsement_in_block_with_wrong_signature);0.283145;0.039879;0.323146;193072;96140 +3678/11678;016-PtMumbai: preendorsement (ConstrMode: ko: locked_round_is_higher_than_pqc_round);0.299947;0.023995;0.324051;193072;96140 +3679/11678;016-PtMumbai: preendorsement (Preendorsement for future level);0.304461;0.02003;0.324602;192944;96140 +3680/11678;016-PtMumbai: preendorsement (Preendorsement for old level);0.292402;0.032044;0.324598;193204;96392 +3681/11678;016-PtMumbai: preendorsement (Preendorsement for future round);0.308605;0.012023;0.320726;193200;96132 +3682/11678;016-PtMumbai: preendorsement (Preendorsement for old round);0.306949;0.019931;0.326982;192948;96140 +3683/11678;016-PtMumbai: preendorsement (Preendorsement on competing proposal);0.290698;0.035839;0.32664;193580;96144 +3684/11678;016-PtMumbai: preendorsement (Unexpected preendorsements in blocks);0.299483;0.027951;0.327549;193968;96396 +3685/11678;016-PtMumbai: preendorsement (Preendorsements round too high);0.272109;0.048019;0.320227;193072;96140 +3686/11678;016-PtMumbai: preendorsement (Duplicate preendorsement);0.284872;0.03611;0.321085;193620;96140 +3687/11678;016-PtMumbai: preendorsement (Preendorsement for next level);0.293093;0.028104;0.321334;193204;96192 +3688/11678;016-PtMumbai: preendorsement (Preendorsement for next round);0.307413;0.023954;0.331451;193008;96232 +3689/11678;016-PtMumbai: participation monitoring (insufficient participation);0.320575;0.012021;0.33274;193076;96136 +3690/11678;016-PtMumbai: participation monitoring (minimal participation);0.306593;0.027872;0.334568;193200;96136 +3691/11678;016-PtMumbai: participation monitoring (participation RPC);0.301509;0.0201;0.321782;193840;96140 +3692/11678;016-PtMumbai: helpers rpcs (baking_rights);0.2895;0.028145;0.317759;193360;96396 +3693/11678;016-PtMumbai: frozen deposits (invariants);0.293103;0.036136;0.329345;193880;96392 +3694/11678;016-PtMumbai: frozen deposits (set deposits limit to 0%);0.30258;0.03185;0.334531;193968;96140 +3695/11678;016-PtMumbai: frozen deposits (set deposits limit to 5%);0.327432;0.031944;0.35948;193072;96396 +3696/11678;016-PtMumbai: frozen deposits (set a too high deposits limit);0.293359;0.036167;0.329633;193200;96308 +3697/11678;016-PtMumbai: frozen deposits (unset deposits limit);0.309443;0.028131;0.33767;193748;96140 +3698/11678;016-PtMumbai: frozen deposits (cannot bake with zero deposits);0.309404;0.024109;0.333619;194100;96140 +3699/11678;016-PtMumbai: frozen deposits (deposits after stake removal);0.312022;0.020001;0.332128;193076;96140 +3700/11678;016-PtMumbai: frozen deposits (unfreeze deposits after deactivation);0.391408;0.027957;0.419519;193072;96308 +3701/11678;016-PtMumbai: frozen deposits (deposits with delegation);0.32629;0.027854;0.354265;193840;96140 +3702/11678;016-PtMumbai: frozen deposits (frozen deposits with overdelegation);0.317561;0.036177;0.353843;193072;96396 +3703/11678;016-PtMumbai: frozen deposits (set limit with overdelegation);0.377441;0.020076;0.39761;193008;96384 +3704/11678;016-PtMumbai: frozen deposits (error is thrown when the frozen window is smaller);0.294233;0.043737;0.338064;194096;96140 +3705/11678;016-PtMumbai: endorsement (Simple endorsement);0.291028;0.027906;0.319059;194260;96396 +3706/11678;016-PtMumbai: endorsement (Endorsement with slot -1);0.29782;0.024147;0.322072;193880;96396 +3707/11678;016-PtMumbai: endorsement (Endorsement wrapped with non-normalized slot);0.300335;0.024026;0.324463;193840;96396 +3708/11678;016-PtMumbai: endorsement (Fitness gap);0.294549;0.031843;0.326493;193104;96140 +3709/11678;016-PtMumbai: endorsement (Wrong endorsement predecessor);0.284779;0.036098;0.320986;193456;96392 +3710/11678;016-PtMumbai: endorsement (Invalid endorsement level);0.30098;0.024078;0.325163;193240;96400 +3711/11678;016-PtMumbai: endorsement (Duplicate endorsement);0.301346;0.020089;0.321532;193616;96140 +3712/11678;016-PtMumbai: endorsement (Endorsement for future level);0.300919;0.028085;0.329111;193076;96396 +3713/11678;016-PtMumbai: endorsement (Endorsement for predecessor level);0.284305;0.040043;0.32445;193840;96140 +3714/11678;016-PtMumbai: endorsement (Endorsement for old level);0.298303;0.023864;0.32233;193732;96316 +3715/11678;016-PtMumbai: endorsement (Endorsement for future round);0.276202;0.044032;0.320334;193968;96396 +3716/11678;016-PtMumbai: endorsement (Endorsement for old round);0.293574;0.02815;0.321825;193360;96292 +3717/11678;016-PtMumbai: endorsement (Endorsement on competing proposal);0.284648;0.036082;0.320832;193204;96396 +3718/11678;016-PtMumbai: endorsement (Wrong level for consensus operation);0.300379;0.02403;0.324562;192900;96160 +3719/11678;016-PtMumbai: endorsement (Wrong round for consensus operation);0.283655;0.035956;0.319719;193840;96136 +3720/11678;016-PtMumbai: endorsement (Wrong payload hash for consensus operation);0.304781;0.020051;0.325001;192996;96236 +3721/11678;016-PtMumbai: endorsement (Wrong slot used for consensus operation);0.288658;0.032073;0.320834;193580;96140 +3722/11678;016-PtMumbai: endorsement (sufficient endorsement threshold);0.312756;0.016038;0.328964;193712;96408 +3723/11678;016-PtMumbai: endorsement (insufficient endorsement threshold);0.291287;0.039902;0.3313;193972;96396 +3724/11678;016-PtMumbai: endorsement (Endorsement/Preendorsement at same level);0.292486;0.028046;0.320637;193972;96140 +3725/11678;016-PtMumbai: endorsement (Wrong endorsement slot in mempool mode);0.305254;0.016066;0.32142;193584;96140 +3726/11678;016-PtMumbai: endorsement (Endorsement for next level);0.311176;0.015957;0.327302;193232;96228 +3727/11678;016-PtMumbai: endorsement (Endorsement for next round);0.303408;0.023953;0.32747;193492;96240 +3728/11678;016-PtMumbai: endorsement (Endorsement for grandparent);0.300207;0.024016;0.324334;192980;96136 +3729/11678;016-PtMumbai: endorsement (Double endorsement of grandparent);0.284656;0.036083;0.320815;192988;96652 +3730/11678;016-PtMumbai: endorsement (Endorsement for grandparent on same slot as parent);0.283252;0.035905;0.319273;193068;96140 +3731/11678;016-PtMumbai: endorsement (Endorsement for grandparent in application mode);0.300274;0.024021;0.324453;194096;96408 +3732/11678;016-PtMumbai: endorsement (Endorsement for grandparent in full construction mode);0.277368;0.044218;0.321693;192944;96140 +3733/11678;016-PtMumbai: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_same_payload_hash_1);0.299552;0.031952;0.331609;193712;96140 +3734/11678;016-PtMumbai: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_same_payload_hash_2);0.301168;0.020077;0.321351;193584;96140 +3735/11678;016-PtMumbai: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_different_rounds);0.300555;0.024044;0.324693;194352;96396 +3736/11678;016-PtMumbai: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_same_preendorsement);0.2995;0.027953;0.32756;193712;96140 +3737/11678;016-PtMumbai: double preendorsement (AppMode: ko: malformed_double_preendorsement_denunciation_different_validators);0.279697;0.043952;0.323763;193972;96348 +3738/11678;016-PtMumbai: double preendorsement (AppMode: double_preendorsement_just_after_upgrade);0.304343;0.020022;0.324481;194224;96400 +3739/11678;016-PtMumbai: double preendorsement (AppMode: double_preendorsement_denunciation_during_slashing_period);0.306252;0.023863;0.330296;194096;96140 +3740/11678;016-PtMumbai: double preendorsement (AppMode: double_preendorsement_denunciation_after_slashing_period);0.304983;0.02809;0.3332;193840;96140 +3741/11678;016-PtMumbai: double preendorsement (AppMode: valid double preendorsement injected multiple times);0.303174;0.027923;0.331199;194100;96136 +3742/11678;016-PtMumbai: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_same_payload_hash_1);0.294942;0.031885;0.32693;193076;96140 +3743/11678;016-PtMumbai: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_same_payload_hash_2);0.314468;0.011941;0.326527;193200;96396 +3744/11678;016-PtMumbai: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_different_rounds);0.282847;0.043821;0.326776;193072;96140 +3745/11678;016-PtMumbai: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_same_preendorsement);0.300638;0.020042;0.320782;193076;96396 +3746/11678;016-PtMumbai: double preendorsement (ConstrMode: ko: malformed_double_preendorsement_denunciation_different_validators);0.291913;0.039988;0.332001;193328;96392 +3747/11678;016-PtMumbai: double preendorsement (ConstrMode: double_preendorsement_just_after_upgrade);0.308508;0.024039;0.332653;193588;96152 +3748/11678;016-PtMumbai: double preendorsement (ConstrMode: double_preendorsement_denunciation_during_slashing_period);0.302186;0.027832;0.330138;193204;96396 +3749/11678;016-PtMumbai: double preendorsement (ConstrMode: double_preendorsement_denunciation_after_slashing_period);0.316208;0.020013;0.336314;192948;96140 +3750/11678;016-PtMumbai: double preendorsement (ConstrMode: valid double preendorsement injected multiple times);0.307364;0.02395;0.331456;193968;96192 +3751/11678;016-PtMumbai: double endorsement (valid double endorsement evidence);0.293325;0.036163;0.329589;192944;96144 +3752/11678;016-PtMumbai: double endorsement (2 valid double endorsement evidences lead to not being able to bake);0.306658;0.023895;0.330663;193968;96140 +3753/11678;016-PtMumbai: double endorsement (valid double endorsement injected multiple time);0.307528;0.019969;0.327602;194092;96396 +3754/11678;016-PtMumbai: double endorsement (invalid double endorsement evidence);0.287273;0.035909;0.323287;194228;96396 +3755/11678;016-PtMumbai: double endorsement (another invalid double endorsement evidence);0.310901;0.019929;0.330931;193068;96140 +3756/11678;016-PtMumbai: double endorsement (too early double endorsement evidence);0.305515;0.016079;0.321702;193836;96140 +3757/11678;016-PtMumbai: double endorsement (too late double endorsement evidence);0.309488;0.028135;0.337743;192940;96140 +3758/11678;016-PtMumbai: double endorsement (different delegates);0.294483;0.031836;0.326422;193112;96140 +3759/11678;016-PtMumbai: double endorsement (wrong delegate);0.302709;0.019915;0.322726;194004;96300 +3760/11678;016-PtMumbai: double endorsement (freeze available balance after slashing);0.3727;0.044082;0.416886;193204;96140 +3761/11678;016-PtMumbai: double baking (valid double baking evidence);0.29739;0.024112;0.321598;193332;96396 +3762/11678;016-PtMumbai: double baking (payload producer receives the rewards for double baking evidence);0.301622;0.024129;0.325854;193860;96248 +3763/11678;016-PtMumbai: double baking (same blocks);0.291193;0.027922;0.319229;193748;96400 +3764/11678;016-PtMumbai: double baking (incorrect order);0.297788;0.028169;0.326081;193748;96396 +3765/11678;016-PtMumbai: double baking (different levels);0.300613;0.024049;0.324764;193876;96136 +3766/11678;016-PtMumbai: double baking (too early double baking evidence);0.295438;0.027946;0.323493;194224;96396 +3767/11678;016-PtMumbai: double baking (too late double baking evidence);0.299855;0.027986;0.327951;193968;96136 +3768/11678;016-PtMumbai: double baking (just in time double baking evidence);0.311838;0.027985;0.339923;193076;96396 +3769/11678;016-PtMumbai: double baking (different delegates);0.300957;0.020063;0.321103;193040;96100 +3770/11678;016-PtMumbai: double baking (wrong delegate);0.3058;0.024142;0.330081;193232;96140 +3771/11678;016-PtMumbai: double baking (reject double injection of an evidence);0.288487;0.040067;0.328653;194096;96400 +3772/11678;016-PtMumbai: double baking (double baking followed by double endorsing);0.283235;0.039892;0.323239;194092;96396 +3773/11678;016-PtMumbai: double baking (double endorsing followed by double baking);0.314737;0.011952;0.326789;192948;96140 +3774/11678;016-PtMumbai: delegation (bootstrap contracts delegate to themselves);0.295623;0.027964;0.323692;192944;96140 +3775/11678;016-PtMumbai: delegation (bootstrap contracts can change their delegate (small fee));0.289703;0.032189;0.322016;193836;96136 +3776/11678;016-PtMumbai: delegation (bootstrap contracts can change their delegate (max fee));0.29912;0.023929;0.323156;193072;96140 +3777/11678;016-PtMumbai: delegation (bootstrap contracts cannot remove their delegation (small fee));0.279033;0.039861;0.318999;193712;96140 +3778/11678;016-PtMumbai: delegation (bootstrap contracts cannot remove their delegation (max fee));0.303905;0.015995;0.319998;192944;96136 +3779/11678;016-PtMumbai: delegation (contracts not registered as delegate can change their delegation (small fee));0.304249;0.020016;0.324357;193964;96308 +3780/11678;016-PtMumbai: delegation (contracts not registered as delegate can change their delegation (max fee));0.299046;0.023923;0.323087;193328;96396 +3781/11678;016-PtMumbai: delegation (contracts not registered as delegate can remove their delegation (small fee));0.286497;0.035812;0.322418;193968;96144 +3782/11678;016-PtMumbai: delegation (contracts not registered as delegate can remove their delegation (max fee));0.288614;0.032068;0.320786;194092;96296 +3783/11678;016-PtMumbai: delegation (bootstrap keys are already registered as delegate keys (small fee));0.316368;0.012013;0.328484;193584;96136 +3784/11678;016-PtMumbai: delegation (bootstrap keys are already registered as delegate keys (max fee));0.29827;0.023861;0.32224;193196;96400 +3785/11678;016-PtMumbai: delegation (bootstrap manager can be delegate (init origination, small fee));0.30061;0.02004;0.320751;193068;96140 +3786/11678;016-PtMumbai: delegation (bootstrap manager can be delegate (init origination, edge case));0.29897;0.023917;0.323022;193072;96144 +3787/11678;016-PtMumbai: delegation (bootstrap manager can be delegate (init origination, large fee));0.297559;0.024126;0.321798;193332;96396 +3788/11678;016-PtMumbai: delegation (originated bootstrap contract can be undelegated);0.291594;0.035949;0.327648;193968;96396 +3789/11678;016-PtMumbai: delegation (originated bootstrap contract can be delegated);0.300573;0.020038;0.320714;193068;96400 +3790/11678;016-PtMumbai: delegation (TEST);0.280895;0.040127;0.321135;193108;96140 +3791/11678;016-PtMumbai: delegation (unregistered delegate key (origination, small fee));0.308711;0.016036;0.32485;193712;96300 +3792/11678;016-PtMumbai: delegation (unregistered delegate key (origination, edge case fee));0.290723;0.027877;0.3187;193068;96396 +3793/11678;016-PtMumbai: delegation (unregistered delegate key (origination, large fee));0.293455;0.024119;0.317692;193200;96312 +3794/11678;016-PtMumbai: delegation (unregistered delegate key (init with delegation, small fee));0.2921;0.03201;0.324213;194096;96140 +3795/11678;016-PtMumbai: delegation (unregistered delegate key (init with delegation, max fee));0.299839;0.019989;0.319957;193200;96140 +3796/11678;016-PtMumbai: delegation (unregistered delegate key (switch with delegation, small fee));0.288487;0.040067;0.328692;194224;96396 +3797/11678;016-PtMumbai: delegation (unregistered delegate key (switch with delegation, max fee));0.305321;0.024104;0.329527;193584;96392 +3798/11678;016-PtMumbai: delegation (unregistered delegate key - credit/debit 1μꜩ (origination, small fee));0.304147;0.016007;0.32026;193712;96140 +3799/11678;016-PtMumbai: delegation (unregistered delegate key - credit/debit 1μꜩ (origination, large fee));0.300386;0.020025;0.320517;193968;96140 +3800/11678;016-PtMumbai: delegation (unregistered delegate key - credit/debit 1μꜩ (init with delegation, small fee));0.303216;0.019948;0.323249;193480;96300 +3801/11678;016-PtMumbai: delegation (unregistered delegate key - credit/debit 1μꜩ (init with delegation, large fee));0.30425;0.020016;0.32438;193712;96140 +3802/11678;016-PtMumbai: delegation (unregistered delegate key - credit/debit 1μꜩ (switch with delegation, small fee));0.299825;0.019988;0.31992;193968;96396 +3803/11678;016-PtMumbai: delegation (unregistered delegate key - credit/debit 1μꜩ (switch with delegation, large fee));0.295859;0.023988;0.31995;193328;96396 +3804/11678;016-PtMumbai: delegation (unregistered delegate key - credit 1μꜩ (origination, small fee));0.290723;0.035842;0.326672;193068;96140 +3805/11678;016-PtMumbai: delegation (unregistered delegate key - credit 1μꜩ (origination, edge case fee));0.284531;0.040074;0.32478;192960;96284 +3806/11678;016-PtMumbai: delegation (unregistered delegate key - credit 1μꜩ (origination, large fee));0.311327;0.015965;0.327409;193324;96140 +3807/11678;016-PtMumbai: delegation (unregistered delegate key - credit 1μꜩ (init with delegation, small fee));0.272752;0.052143;0.324998;193200;96396 +3808/11678;016-PtMumbai: delegation (unregistered delegate key - credit 1μꜩ (init with delegation, large fee));0.308386;0.020025;0.32851;194092;96140 +3809/11678;016-PtMumbai: delegation (unregistered delegate key - credit 1μꜩ (switch with delegation, small fee));0.292423;0.032046;0.324577;193968;96396 +3810/11678;016-PtMumbai: delegation (unregistered delegate key - credit 1μꜩ (switch with delegation, large fee));0.305017;0.016053;0.321176;193580;96140 +3811/11678;016-PtMumbai: delegation (unregistered and unrevealed self-delegation (small fee));0.295515;0.031947;0.32758;192940;96140 +3812/11678;016-PtMumbai: delegation (unregistered and unrevealed self-delegation (large fee));0.30614;0.019879;0.326119;193036;96136 +3813/11678;016-PtMumbai: delegation (unregistered and revealed self-delegation (small fee));0.290195;0.031802;0.32214;194092;96252 +3814/11678;016-PtMumbai: delegation (unregistered and revealed self-delegation large fee));0.294451;0.027853;0.322414;193844;96136 +3815/11678;016-PtMumbai: delegation (unregistered and revealed self-delegation (fee = balance));0.302177;0.023856;0.326291;193968;96224 +3816/11678;016-PtMumbai: delegation (registered and revealed self-delegation);0.2904;0.035802;0.326315;193200;96396 +3817/11678;016-PtMumbai: delegation (failed self-delegation: no transaction);0.270764;0.047781;0.318685;193200;96328 +3818/11678;016-PtMumbai: delegation (failed self-delegation: credit & debit 1μꜩ);0.28671;0.03982;0.326637;193708;96396 +3819/11678;016-PtMumbai: delegation (empty delegated contract is not deleted: credit 1μꜩ, delegate & debit 1μꜩ);0.290291;0.031812;0.322188;194032;96312 +3820/11678;016-PtMumbai: delegation (valid delegate registration: credit 1μꜩ, self delegation (init with delegation));0.298679;0.027876;0.326655;193324;96396 +3821/11678;016-PtMumbai: delegation (valid delegate registration: credit 1μꜩ, self delegation (switch with delegation));0.297395;0.028132;0.325636;194096;96304 +3822/11678;016-PtMumbai: delegation (valid delegate registration: credit 1μꜩ, self delegation, debit 1μꜩ (init with delegation));0.283014;0.043847;0.327034;194220;96344 +3823/11678;016-PtMumbai: delegation (valid delegate registration: credit 1μꜩ, self delegation, debit 1μꜩ (switch with delegation));0.300781;0.020052;0.320945;194092;96396 +3824/11678;016-PtMumbai: delegation (double registration);0.29846;0.031835;0.330394;194000;96340 +3825/11678;016-PtMumbai: delegation (double registration when delegate account is emptied);0.276033;0.044005;0.320152;194220;96396 +3826/11678;016-PtMumbai: delegation (double registration when delegate account is emptied and then recredited);0.311102;0.015953;0.327166;192812;96140 +3827/11678;016-PtMumbai: deactivation (simple staking rights);0.301197;0.020079;0.321381;193232;96300 +3828/11678;016-PtMumbai: deactivation (simple staking rights after baking);0.28113;0.040161;0.321392;193200;96140 +3829/11678;016-PtMumbai: deactivation (deactivation then bake);0.303818;0.039976;0.343886;193708;96396 +3830/11678;016-PtMumbai: deactivation (deactivation then self delegation);0.305563;0.040205;0.345873;193968;96140 +3831/11678;016-PtMumbai: deactivation (deactivation then empty then self delegation);0.318316;0.027852;0.346274;193968;96140 +3832/11678;016-PtMumbai: deactivation (deactivation then empty then self delegation then recredit);0.334973;0.043865;0.378942;193584;96144 +3833/11678;016-PtMumbai: deactivation (delegate);0.292327;0.028031;0.320477;193876;96300 +3834/11678;016-PtMumbai: deactivation (a really deactivated account is not part of the committee);0.338936;0.019937;0.358984;194096;96396 +3835/11678;016-PtMumbai: consensus key (drain delegate high balance, excluding ck, ck delegates);0.295831;0.043974;0.339908;193964;96396 +3836/11678;016-PtMumbai: consensus key (drain delegate high balance, excluding ck, ck does not delegate);0.299517;0.027954;0.327576;194032;96320 +3837/11678;016-PtMumbai: consensus key (drain delegate high balance, with ck, ck delegates);0.301511;0.028141;0.329792;194224;96208 +3838/11678;016-PtMumbai: consensus key (drain delegate high balance, with ck, ck does not delegate);0.301617;0.02815;0.329875;194096;96416 +3839/11678;016-PtMumbai: consensus key (drain delegate low balance, excluding ck, ck delegates);0.317093;0.020069;0.337269;194096;96392 +3840/11678;016-PtMumbai: consensus key (drain delegate low balance, excluding ck, ck does not delegate);0.311357;0.027942;0.339403;194220;96392 +3841/11678;016-PtMumbai: consensus key (drain delegate low balance, with ck, ck delegates);0.316423;0.016021;0.332563;192940;96140 +3842/11678;016-PtMumbai: consensus key (drain delegate low balance, with ck, ck does not delegate);0.333611;0.008038;0.341758;193964;96140 +3843/11678;016-PtMumbai: consensus key (empty drain delegate excluding ck);0.30287;0.031881;0.334857;194096;96396 +3844/11678;016-PtMumbai: consensus key (empty drain delegate with ck);0.312968;0.020062;0.333128;193968;96140 +3845/11678;016-PtMumbai: consensus key (tz4 consensus key);0.303456;0.023957;0.327526;194004;96396 +3846/11678;016-PtMumbai: consensus key (endorsement with ck);0.322349;0.023877;0.346331;193104;96300 +3847/11678;016-PtMumbai: baking (cycle);0.287623;0.039947;0.32768;194132;96368 +3848/11678;016-PtMumbai: baking (bake_n_cycles for 12 cycles);0.307735;0.043962;0.351805;194004;96136 +3849/11678;016-PtMumbai: baking (voting_power);0.303892;0.023991;0.327987;194132;96396 +3850/11678;016-PtMumbai: baking (the fixed baking reward is given after a bake);0.286217;0.035777;0.322228;193068;96208 +3851/11678;016-PtMumbai: baking (the block producer gets the bonus while the payload producer gets the baking reward );0.320087;0.008002;0.328187;193968;96396 +3852/11678;016-PtMumbai: baking (a delegate with 8000 tez can bake);0.311602;0.015979;0.327691;193204;96304 +3853/11678;016-PtMumbai: baking (a delegate with 7999 tez cannot bake);0.275319;0.043891;0.319311;193076;96396 +3854/11678;016-PtMumbai: baking (committee sampling);0.364294;0.028022;0.392497;203864;107112 +3855/11678;016-PtMumbai: token movements (transfer - balances);0.294867;0.027892;0.322862;193104;96304 +3856/11678;016-PtMumbai: token movements (transfer - balance updates);0.289875;0.028182;0.318161;193068;96136 +3857/11678;016-PtMumbai: token movements (transfer - test allocated);0.294714;0.023895;0.318708;193200;96396 +3858/11678;016-PtMumbai: token movements (transfer - test transfer to sink);0.30081;0.024064;0.324977;193068;96140 +3859/11678;016-PtMumbai: token movements (transfer - test transfer from source);0.286737;0.031859;0.318696;193196;96140 +3860/11678;016-PtMumbai: token movements (transfer - test all (sources x sinks));0.305427;0.020093;0.325627;192944;96140 +3861/11678;016-PtMumbai: token movements (transfer - test from empty sources to a destination);0.295492;0.023958;0.319552;192944;96144 +3862/11678;016-PtMumbai: token movements (transfer - test from n sources to a destination);0.283848;0.031982;0.315935;192944;96140 +3863/11678;016-PtMumbai: storage tests (fold_keys_unaccounted smoke test);0.299566;0.023965;0.323643;193072;96396 +3864/11678;016-PtMumbai: storage tests (length test);0.29919;0.015956;0.315265;192900;96364 +3865/11678;016-PtMumbai: storage description (register single data in existing path);0.284272;0.03203;0.316406;193200;96396 +3866/11678;016-PtMumbai: storage description (register named subcontext in existing path);0.302473;0.019899;0.322487;193068;96140 +3867/11678;016-PtMumbai: storage description (register indexed subcontext in existing path);0.280513;0.036066;0.316681;193072;96400 +3868/11678;016-PtMumbai: storage description (register indexed subcontext with existing indexed subcontext);0.287495;0.031943;0.319564;193068;96396 +3869/11678;016-PtMumbai: liquidity baking (liquidity baking script hashes);0.288224;0.036028;0.324351;193068;96140 +3870/11678;016-PtMumbai: liquidity baking (liquidity baking cpmm is originated at the expected address);0.283984;0.039997;0.324102;193072;96396 +3871/11678;016-PtMumbai: liquidity baking (Init Context);0.308787;0.024061;0.332962;194128;96392 +3872/11678;016-PtMumbai: liquidity baking (liquidity baking subsidy is correct);0.291196;0.0359;0.327199;193844;96140 +3873/11678;016-PtMumbai: liquidity baking (liquidity baking toggle vote with 100% of bakers voting LB_off baking one block longer);1.03086;0.027969;1.05894;198188;101172 +3874/11678;016-PtMumbai: liquidity baking (liquidity baking toggle vote with 100% of bakers voting LB_off baking two blocks longer);1.02691;0.043953;1.07096;198104;101328 +3875/11678;016-PtMumbai: liquidity baking (liquidity baking toggle vote with 100% of bakers voting LB_off baking 100 blocks longer);1.08587;0.032055;1.11807;198752;101856 +3876/11678;016-PtMumbai: liquidity baking (liquidity baking toggle vote with 80% of bakers voting LB_off baking one block longer);1.34196;0.032046;1.3741;202412;105512 +3877/11678;016-PtMumbai: liquidity baking (liquidity baking toggle vote with 80% of bakers voting LB_off baking two blocks longer);0.675677;0.031984;0.707753;203440;105524 +3878/11678;016-PtMumbai: liquidity baking (liquidity baking toggle vote with 80% of bakers voting LB_off baking 100 blocks longer);0.676123;0.028005;0.704292;203928;105956 +3879/11678;016-PtMumbai: liquidity baking (liquidity baking toggle vote with 60% of bakers voting LB_off baking one block longer);0.954339;0.035937;0.99038;205872;108048 +3880/11678;016-PtMumbai: liquidity baking (liquidity baking toggle vote with 60% of bakers voting LB_off baking two blocks longer);2.20764;0.027995;2.23572;205100;108336 +3881/11678;016-PtMumbai: liquidity baking (liquidity baking toggle vote with 60% of bakers voting LB_off baking 100 blocks longer);1.06072;0.032021;1.09283;205100;108340 +3882/11678;016-PtMumbai: liquidity baking (liquidity baking does not shut off with toggle vote at 50% and baking 100 blocks longer than sunset level in previous protocols);1.06546;0.028038;1.0936;207280;109616 +3883/11678;016-PtMumbai: liquidity baking (liquidity baking restart with 100% of bakers voting off, then pass, then on);1.09753;0.040055;1.13773;204848;108080 +3884/11678;016-PtMumbai: liquidity baking (liquidity baking toggle ema in block metadata is zero with no bakers voting LB_off.);0.309775;0.028161;0.338037;193972;96140 +3885/11678;016-PtMumbai: liquidity baking (liquidity baking toggle ema is equal to the threshold after the subsidy has been stopped by a toggle vote);0.570001;0.015944;0.586092;199084;101168 +3886/11678;016-PtMumbai: liquidity baking (liquidity baking storage is updated);0.307158;0.023934;0.331195;193196;96316 +3887/11678;016-PtMumbai: liquidity baking (liquidity baking balance updates);0.320086;0.028007;0.348234;193068;96392 +3888/11678;016-PtMumbai: liquidity baking (liquidity baking CPMM address in storage matches address in the origination result);0.297306;0.024105;0.321513;193712;96180 +3889/11678;016-PtMumbai: liquidity baking (liquidity baking CPMM balance in origination result is 100 mutez);0.308267;0.020017;0.328425;193068;96392 +3890/11678;016-PtMumbai: liquidity baking (liquidity baking LQT contract is originated at expected address);0.294441;0.031831;0.32643;193584;96140 +3891/11678;016-PtMumbai: liquidity baking (liquidity baking LQT balance in origination result is 0 mutez);0.278803;0.047794;0.32671;193712;96396 +3892/11678;016-PtMumbai: liquidity baking (liquidity baking originates three contracts when tzBTC does not exist and level indicates we are not on mainnet);0.295861;0.031984;0.327976;193840;96396 +3893/11678;016-PtMumbai: liquidity baking (liquidity baking originates three contracts when tzBTC does not exist and level indicates we might be on mainnet);0.321167;0.028102;0.349448;193072;96188 +3894/11678;016-PtMumbai: frozen bonds (frozen bonds - delegate then freeze);0.273756;0.048309;0.322173;193068;96304 +3895/11678;016-PtMumbai: frozen bonds (frozen bonds - freeze then delegate);0.28217;0.035768;0.318221;193072;96140 +3896/11678;016-PtMumbai: frozen bonds (frozen bonds - contract remains allocated, user is not a delegate);0.308068;0.016003;0.324171;193200;96396 +3897/11678;016-PtMumbai: frozen bonds (frozen bonds - contract remains allocated, user is a delegate);0.296491;0.024039;0.320635;193072;96140 +3898/11678;016-PtMumbai: frozen bonds (frozen bonds - total stake, user is not a delegate);0.307187;0.015957;0.323247;193072;96136 +3899/11678;016-PtMumbai: frozen bonds (frozen bonds - total stake, user is a delegate);0.286584;0.031842;0.318564;193200;96396 +3900/11678;016-PtMumbai: frozen bonds (frozen bonds - delegated balance);0.311137;0.015955;0.3272;193068;96144 +3901/11678;016-PtMumbai: frozen bonds (frozen bonds - test rpcs);0.29732;0.028124;0.325547;193368;96392 +3902/11678;016-PtMumbai: frozen bonds (delegate, freeze, unfreeze, undelegate);0.291851;0.023987;0.315938;192944;96140 +3903/11678;016-PtMumbai: frozen bonds (delegate, freeze, undelegate, unfreeze);0.299384;0.02395;0.323434;193172;96240 +3904/11678;016-PtMumbai: frozen bonds (delegate, double freeze, undelegate, unfreeze);0.286763;0.035845;0.322718;193072;96396 +3905/11678;016-PtMumbai: frozen bonds (delegate, freeze, redelegate, unfreeze);0.295431;0.027946;0.323482;193076;96392 +3906/11678;016-PtMumbai: frozen bonds (delegate, freeze, unfreeze, freeze, redelegate);0.287637;0.031959;0.319695;193200;96392 +3907/11678;016-PtMumbai: frozen bonds (delegate, freeze, slash, undelegate);0.299261;0.02394;0.323318;193196;96392 +3908/11678;016-PtMumbai: constants (constants consistency);0.287713;0.031968;0.319781;193236;96392 +3909/11678;016-PtMumbai: constants (max_operations_ttl);0.303425;0.015969;0.319496;193236;96140 +3910/11678;016-PtMumbai: constants (sc rollup challenge window less than max lookahead);0.282119;0.035761;0.317996;193200;96396 +3911/11678;016-PtMumbai: constants (sc rollup max commitment storage cost less than deposit);0.287621;0.031957;0.319722;192944;96216 +3912/11678;016-PtMumbai: constants (sc rollup commitment storage size correct);0.304995;0.016052;0.321143;192944;96140 +3913/11678;016-PtMumbai: constants (test liquidity_baking_subsidy parameter is 1/16th of total baking rewards);0.281574;0.044247;0.325932;193068;96140 +3914/11678;016-PtMumbai/plugin: fee_needed_to_replace_by_fee: non-manager operations;0.368899;0.020048;0.389056;200364;103476 +3915/11678;016-PtMumbai/plugin: fee_needed_to_replace_by_fee: hand-picked fee and gas;0.351616;0.03596;0.387687;193076;96564 +3916/11678;016-PtMumbai/plugin: fee_needed_to_replace_by_fee: random fee, gas, and config;0.545946;0.036128;0.582193;235368;138796 +3917/11678;016-PtMumbai/plugin: fee_needed_to_overtake: non-manager operations;0.33236;0.044047;0.37652;198708;101936 +3918/11678;016-PtMumbai/plugin: fee_needed_to_overtake: hand-picked fee and gas;0.328595;0.024043;0.352743;193200;96144 +3919/11678;016-PtMumbai/plugin: fee_needed_to_overtake: random fee and gas;0.504922;0.048087;0.553127;230760;134188 +3920/11678;016-PtMumbai: pre_filter (acceptable past op );0.295485;0.027951;0.323547;193108;96296 +3921/11678;016-PtMumbai: pre_filter (same round, same level );0.2831;0.031898;0.315108;193104;96300 +3922/11678;016-PtMumbai: pre_filter (same level, different round, acceptable op);0.288629;0.028061;0.316792;192940;96136 +3923/11678;016-PtMumbai: pre_filter (same level, different round, too far);0.285432;0.036181;0.321719;193200;96396 +3924/11678;016-PtMumbai: pre_filter (next level, acceptable op);0.304531;0.01202;0.316657;193092;96652 +3925/11678;016-PtMumbai: pre_filter (next level, too far);0.301085;0.024086;0.325279;193232;96396 +3926/11678;016-PtMumbai/plugin: conflict_handler: non-manager operations;0.447616;0.019982;0.467698;213812;117044 +3927/11678;016-PtMumbai/plugin: conflict_handler: manager operations;0.498758;0.05187;0.55073;227048;130336 +3928/11678;mockup_baking: 016-PtMumbai: reaches level 5 (016-PtMumbai: reaches level 5);0.768219;0.024259;10.0411;219948;123172 +3929/11678;mockup_baking: 016-PtMumbai: cannot progress without new head (016-PtMumbai: cannot progress without new head);0.413312;0.024312;3.79725;201772;105012 +3930/11678;mockup_baking: 016-PtMumbai: reset delayed pqc (016-PtMumbai: reset delayed pqc);0.416285;0.040027;4.89369;199468;102476 +3931/11678;mockup_baking: 016-PtMumbai: scenario t1 (016-PtMumbai: scenario t1);0.395071;0.040313;1.90364;205872;109108 +3932/11678;mockup_baking: 016-PtMumbai: scenario t2 (016-PtMumbai: scenario t2);0.374742;0.016117;1.93238;200620;103588 +3933/11678;mockup_baking: 016-PtMumbai: scenario t3 (016-PtMumbai: scenario t3);0.568239;0.04433;4.99632;215340;118676 +3934/11678;mockup_baking: 016-PtMumbai: scenario f1 (016-PtMumbai: scenario f1);0.577678;0.051791;5.41837;215216;118464 +3935/11678;mockup_baking: 016-PtMumbai: scenario f2 (016-PtMumbai: scenario f2);0.634364;0.035461;15.4525;215596;118708 +3936/11678;mockup_baking: 016-PtMumbai: scenario m1 (016-PtMumbai: scenario m1);1.06362;0.031749;14.9901;227056;130420 +3937/11678;mockup_baking: 016-PtMumbai: scenario m2 (016-PtMumbai: scenario m2);1.20112;0.028214;12.9179;231360;134680 +3938/11678;mockup_baking: 016-PtMumbai: scenario m3 (016-PtMumbai: scenario m3);0.815488;0.031979;26.9439;218672;121972 +3939/11678;mockup_baking: 016-PtMumbai: scenario m4 (016-PtMumbai: scenario m4);0.461696;0.028103;1.06525;211248;114512 +3940/11678;mockup_baking: 016-PtMumbai: scenario m5 (016-PtMumbai: scenario m5);0.573094;0.028053;2.76799;219568;122704 +3941/11678;mockup_baking: 016-PtMumbai: scenario m6 (016-PtMumbai: scenario m6);1.10131;0.028447;13.9295;227464;130608 +3942/11678;mockup_baking: 016-PtMumbai: scenario m7 (016-PtMumbai: scenario m7);1.07956;0.016052;11.0492;227216;130560 +3943/11678;mockup_baking: 016-PtMumbai: scenario m8 (016-PtMumbai: scenario m8);1.35041;0.036279;22.9076;227256;130552 +3944/11678;016-PtMumbai: [Unit] Slot_framing_protocol.ml (Encoded slot has expected size (V0, 1 rollup));0.294091;0.023845;0.318038;193196;96140 +3945/11678;016-PtMumbai: [Unit] Slot_framing_protocol.ml (Encoded slot has expected size (V0, 2 rollups));0.283503;0.031944;0.31556;193072;96396 +3946/11678;016-PtMumbai: [Unit] Slot_framing_protocol.ml (Encoded slot can be decoded (V0, 1 rollup));0.286175;0.027822;0.314111;193072;96140 +3947/11678;016-PtMumbai: [Unit] Slot_framing_protocol.ml (Encoded slot can be decoded (V0, 2 rollups));0.290455;0.03183;0.322419;193068;96392 +3948/11678;016-PtMumbai: [Unit] Slot_framing_protocol.ml (Encoding of a slot over maximum size fails (V0));0.281468;0.032167;0.313738;193196;96392 +3949/11678;016-PtMumbai: [Unit] Slot_framing_protocol.ml (Offsets of messages frames are correct (V0));0.292733;0.02406;0.316915;193328;96408 +3950/11678;016-PtMumbai: [Unit] Slot_framing_protocol.ml (Slot decoding fails when slot size is too big (V0));0.300015;0.024001;0.324123;193068;96400 +3951/11678;016-PtMumbai: [Unit] Slot_framing_protocol.ml (Slot decoding fails when first byte has wrong version (V0));0.29996;0.023996;0.324067;193068;96140 +3952/11678;016-PtMumbai: [Unit] pages encoding (Storing only one hash per page causes serialization to fail (Merkle tree, v0));0.294354;0.027844;0.322332;192944;96140 +3953/11678;016-PtMumbai: [Unit] pages encoding (Serializing empty payload returns an error (Merkle tree, v0));0.283481;0.039927;0.323524;192940;96396 +3954/11678;016-PtMumbai: [Unit] pages encoding (Contents fitting in one page can be retrieved after being saved (Merkle tree, v0));0.288265;0.028025;0.316403;193076;96140 +3955/11678;016-PtMumbai: [Unit] pages encoding (Contents fitting in more pages can be retrieved after being saved - no repeated pages (Merkle tree, V0));0.292236;0.028022;0.32038;193068;96200 +3956/11678;016-PtMumbai: [Unit] pages encoding (Contents fitting in more pages can be retrieved after being saved - repeated pages (Merkle tree, V0));0.29539;0.027942;0.323434;193200;96236 +3957/11678;016-PtMumbai: [Unit] pages encoding (Serialization and deserialization of very long contents is correct.);0.292933;0.024076;0.317117;193072;96396 +3958/11678;016-PtMumbai: [Unit] pages encoding (Hashes pages are not larger than expected);0.270842;0.051778;0.322722;193068;96140 +3959/11678;016-PtMumbai: [Unit] pages encoding (Constructing hash chain (V0) for single page content is correct);0.290471;0.023874;0.314457;193032;96312 +3960/11678;016-PtMumbai: [Unit] pages encoding (Constructing hash chain (V0) for multi page content is correct);0.268144;0.048025;0.316277;192944;96140 +3961/11678;016-PtMumbai: [Unit] pages encoding (Serializing an empty payload returns an error (Hash chain));0.304802;0.016042;0.320954;193068;96140 +3962/11678;016-PtMumbai: [Unit] pages encoding (Contents fitting in more pages can be retrieved after being saved - repeated pages (Hash chain, V0));0.288619;0.024051;0.312773;193072;96396 +3963/11678;016-PtMumbai: proxy ([fst (split_key s)] is a prefix of [s]);0.357888;0.03619;0.394182;253288;156460 +3964/11678;016-PtMumbai: micheline v1 macros (compare expansion);0.291743;0.031971;0.323824;193000;96228 +3965/11678;016-PtMumbai: micheline v1 macros (if compare expansion);0.280591;0.036076;0.316791;193328;96400 +3966/11678;016-PtMumbai: micheline v1 macros (if compare expansion: IFCMP);0.287729;0.027973;0.315805;193200;96384 +3967/11678;016-PtMumbai: micheline v1 macros (fail expansion);0.295732;0.019981;0.315805;192832;96312 +3968/11678;016-PtMumbai: micheline v1 macros (assert expansion);0.291824;0.027983;0.319918;193112;96396 +3969/11678;016-PtMumbai: micheline v1 macros (assert if expansion);0.307281;0.007981;0.315374;192984;96140 +3970/11678;016-PtMumbai: micheline v1 macros (assert cmpif expansion);0.290191;0.023851;0.31415;193196;96396 +3971/11678;016-PtMumbai: micheline v1 macros (assert none expansion);0.283135;0.031902;0.315152;193200;96396 +3972/11678;016-PtMumbai: micheline v1 macros (assert some expansion);0.277058;0.036138;0.313303;193328;96420 +3973/11678;016-PtMumbai: micheline v1 macros (assert left expansion);0.295725;0.019981;0.315821;193324;96396 +3974/11678;016-PtMumbai: micheline v1 macros (assert right expansion);0.287302;0.027932;0.315338;193204;96396 +3975/11678;016-PtMumbai: micheline v1 macros (assert some annot expansion);0.30118;0.016062;0.317355;193068;96308 +3976/11678;016-PtMumbai: micheline v1 macros (assert left annot expansion);0.295136;0.027918;0.323153;192948;96140 +3977/11678;016-PtMumbai: micheline v1 macros (assert right annot expansion);0.289469;0.028142;0.317714;193200;96392 +3978/11678;016-PtMumbai: micheline v1 macros (diip expansion);0.304123;0.012004;0.316241;193076;96300 +3979/11678;016-PtMumbai: micheline v1 macros (duup expansion);0.303729;0.019982;0.323815;193232;96288 +3980/11678;016-PtMumbai: micheline v1 macros (pair expansion);0.297213;0.020081;0.317413;192984;96136 +3981/11678;016-PtMumbai: micheline v1 macros (pappaiir expansion);0.290514;0.023877;0.314501;193360;96396 +3982/11678;016-PtMumbai: micheline v1 macros (unpair expansion);0.289817;0.032201;0.322119;192980;96196 +3983/11678;016-PtMumbai: micheline v1 macros (caddadr expansion);0.303299;0.019953;0.323354;193104;96396 +3984/11678;016-PtMumbai: micheline v1 macros (carn and cdrn expansion);0.283018;0.031889;0.315012;193200;96396 +3985/11678;016-PtMumbai: micheline v1 macros (if_some expansion);0.300031;0.024002;0.324142;193232;96240 +3986/11678;016-PtMumbai: micheline v1 macros (set_car expansion);0.285133;0.032127;0.31738;193232;96476 +3987/11678;016-PtMumbai: micheline v1 macros (set_cdr expansion);0.311892;0.007997;0.319993;193108;96300 +3988/11678;016-PtMumbai: micheline v1 macros (set_cadr expansion);0.286769;0.031863;0.31874;193104;96136 +3989/11678;016-PtMumbai: micheline v1 macros (set_cdar expansion);0.288441;0.028042;0.316589;193108;96392 +3990/11678;016-PtMumbai: micheline v1 macros (map_car expansion);0.298177;0.023854;0.322172;193108;96136 +3991/11678;016-PtMumbai: micheline v1 macros (map_cdr expansion);0.280024;0.036003;0.316129;193240;96396 +3992/11678;016-PtMumbai: micheline v1 macros (map_caadr expansion);0.256709;0.060166;0.316978;192984;96136 +3993/11678;016-PtMumbai: micheline v1 macros (map_cdadr expansion);0.286252;0.031805;0.318167;193108;96296 +3994/11678;016-PtMumbai: micheline v1 macros (fail unexpansion);0.280407;0.036052;0.316574;193104;96140 +3995/11678;016-PtMumbai: micheline v1 macros (if_right unexpansion);0.287866;0.031985;0.31997;193076;96396 +3996/11678;016-PtMumbai: micheline v1 macros (if_some unexpansion);0.278956;0.035865;0.31494;193112;96140 +3997/11678;016-PtMumbai: micheline v1 macros (assert unexpansion);0.296;0.024;0.320099;193364;96396 +3998/11678;016-PtMumbai: micheline v1 macros (assert_if unexpansion);0.279175;0.035894;0.315176;193196;96392 +3999/11678;016-PtMumbai: micheline v1 macros (assert_cmp_if unexpansion);0.284532;0.03206;0.316688;193048;96396 +4000/11678;016-PtMumbai: micheline v1 macros (assert_none unexpansion);0.297047;0.028099;0.325255;193072;96324 +4001/11678;016-PtMumbai: micheline v1 macros (assert_some unexpansion);0.303406;0.01996;0.323487;193200;96396 +4002/11678;016-PtMumbai: micheline v1 macros (assert_left unexpansion);0.287651;0.031961;0.319714;193200;96396 +4003/11678;016-PtMumbai: micheline v1 macros (assert_right unexpansion);0.29339;0.024114;0.317594;193016;96368 +4004/11678;016-PtMumbai: micheline v1 macros (assert_some annot unexpansion);0.290133;0.027821;0.318082;193200;96392 +4005/11678;016-PtMumbai: micheline v1 macros (assert_left annot unexpansion);0.291628;0.027964;0.319705;193068;96396 +4006/11678;016-PtMumbai: micheline v1 macros (assert_right annot unexpansion);0.301241;0.020082;0.321426;193200;96396 +4007/11678;016-PtMumbai: micheline v1 macros (unpair unexpansion);0.279221;0.043877;0.323199;193108;96396 +4008/11678;016-PtMumbai: micheline v1 macros (pair unexpansion);0.289031;0.032114;0.321285;192928;96156 +4009/11678;016-PtMumbai: micheline v1 macros (pappaiir unexpansion);0.300608;0.016032;0.316768;193076;96396 +4010/11678;016-PtMumbai: micheline v1 macros (duup unexpansion);0.299416;0.023953;0.323537;193104;96300 +4011/11678;016-PtMumbai: micheline v1 macros (caddadr unexpansion);0.268673;0.04812;0.316909;193232;96392 +4012/11678;016-PtMumbai: micheline v1 macros (carn and cdrn unexpansion);0.308429;0.016022;0.324554;193072;96140 +4013/11678;016-PtMumbai: micheline v1 macros (set_car unexpansion);0.287679;0.031964;0.319746;193108;96136 +4014/11678;016-PtMumbai: micheline v1 macros (set_cdr unexpansion);0.280292;0.040041;0.320435;192976;96140 +4015/11678;016-PtMumbai: micheline v1 macros (set_cdar unexpansion);0.274879;0.039837;0.314834;192924;96480 +4016/11678;016-PtMumbai: micheline v1 macros (set_cadr unexpansion);0.295962;0.027996;0.324067;192940;96140 +4017/11678;016-PtMumbai: micheline v1 macros (set_car annot unexpansion);0.292089;0.024007;0.316193;193196;96136 +4018/11678;016-PtMumbai: micheline v1 macros (set_cdr annot unexpansion);0.28896;0.028093;0.317203;192868;96372 +4019/11678;016-PtMumbai: micheline v1 macros (map_car unexpansion);0.284184;0.03202;0.316314;192976;96140 +4020/11678;016-PtMumbai: micheline v1 macros (diip unexpansion);0.298365;0.019891;0.318365;193232;96300 +4021/11678;016-PtMumbai: micheline v1 macros (diip_duup1 unexpansion);0.276411;0.040059;0.316582;193072;96144 +4022/11678;016-PtMumbai: micheline v1 macros (diip_duup2 unexpansion);0.292511;0.024042;0.316653;192948;96128 +4023/11678;016-PtMumbai: client_proto_contracts (test_find_destination);0.28545;0.036183;0.321751;193072;96140 +4024/11678;016-PtMumbai: Encodings (test_batch_transfer_operation_encoding_roundtrip);0.324002;0.016;0.340162;203588;106820 +4025/11678;Workers: Queue history (Random normal requests);0.293285;0.024105;0.317497;193108;96344 +4026/11678;Workers: Queue history (Random normal requests on Bounded);0.289093;0.028106;0.31731;193072;96140 +4027/11678;Workers: Status (Canceled worker);0.292652;0.024053;0.316826;192980;96144 +4028/11678;Workers: Status (Crashing requests);0.270681;0.047767;0.318551;193112;96300 +4029/11678;Workers: Buffer handling (Dropbox/Async);0.309258;0.016065;0.325428;193236;96392 +4030/11678;WebAssembly reference interpreter tests: Smallint (Check_smallint);0.276602;0.040087;0.316788;193076;96136 +4031/11678;Wasmer: Memory (get_string behaves like get);0.304085;0.020005;0.324193;193104;96392 +4032/11678;Wasmer: Memory (set_string behaves like set);0.296247;0.02402;0.320383;192980;96136 +4033/11678;version: parser (versions);0.295473;0.019964;0.31555;192976;96108 +4034/11678;test lib tree encoding: Encodings (String);0.290275;0.027834;0.318226;193232;96396 +4035/11678;test lib tree encoding: Encodings (Int);0.299949;0.019996;0.320056;193232;96396 +4036/11678;test lib tree encoding: Encodings (Tree);0.28831;0.032034;0.320454;193236;96304 +4037/11678;test lib tree encoding: Encodings (Raw);0.29249;0.028047;0.320638;193040;96248 +4038/11678;test lib tree encoding: Encodings (Convert);0.29631;0.028029;0.324457;193108;96360 +4039/11678;test lib tree encoding: Encodings (Tagged-union);0.293121;0.020076;0.313319;193112;96304 +4040/11678;test lib tree encoding: Encodings (Tagged-union ~default);0.286453;0.027849;0.314406;192816;96140 +4041/11678;test lib tree encoding: Encodings (Lazy mapping);0.284359;0.03204;0.316508;193104;96140 +4042/11678;test lib tree encoding: Encodings (Add element to decoded empty map);0.295783;0.027979;0.323875;193204;96396 +4043/11678;test lib tree encoding: Encodings (Lazy tree);0.295646;0.019976;0.315734;193112;96140 +4044/11678;test lib tree encoding: Encodings (Lazy vector);0.297489;0.02814;0.325734;193108;96140 +4045/11678;test lib tree encoding: Encodings (Lazy vector pop);0.300199;0.020013;0.320318;193236;96396 +4046/11678;test lib tree encoding: Encodings (Chunked byte vector);0.304784;0.01203;0.316921;193232;96140 +4047/11678;test lib tree encoding: Encodings (Tuples);0.283586;0.031953;0.315645;193232;96396 +4048/11678;test lib tree encoding: Encodings (Option);0.284507;0.032057;0.31667;193108;96400 +4049/11678;test lib tree encoding: Encodings (Value ~default);0.292501;0.024041;0.316658;192980;96136 +4050/11678;test lib tree encoding: Encodings (Value-option);0.286146;0.031794;0.318208;193108;96296 +4051/11678;test lib tree encoding: Encodings (Delayed);0.28511;0.032125;0.317342;193364;96392 +4052/11678;test lib tree encoding: Encodings (Return);0.288454;0.028044;0.3166;192984;96136 +4053/11678;test lib tree encoding: Encodings (Swap maps);0.288852;0.028082;0.317036;193236;96396 +4054/11678;test lib tree encoding: Encodings (Swap vectors);0.29234;0.032037;0.324497;192980;96140 +4055/11678;test lib tree encoding: Proofs (Move subtrees);0.331915;0.027992;0.360025;198608;101676 +4056/11678;test lib tree encoding: Proofs (Decode, set, and move subtree);0.308541;0.04007;0.348726;197548;100656 +4057/11678;test lib tree encoding: Proofs (Copy subtrees);0.394555;0.047824;0.442482;219348;122672 +4058/11678;tezos-store: test chain (forking a test chain);0.304914;0.024072;0.329082;196308;99940 +4059/11678;tezos-store: test chain (spawning a test chain);0.306782;0.023905;0.330784;197072;100924 +4060/11678;tezos-store: test chain (shutdown test chain then load it);0.293062;0.032116;0.325282;196788;100580 +4061/11678;tezos-store: store (store cycles);0.329419;0.024103;0.353612;201300;105700 +4062/11678;tezos-store: store (path between blocks);0.287951;0.035993;0.32405;194644;98000 +4063/11678;tezos-store: store (common ancestor);0.296401;0.024032;0.320532;194768;98196 +4064/11678;tezos-store: store (block locators);0.317807;0.040228;0.358228;195408;98632 +4065/11678;tezos-store: store (set head);0.283182;0.039884;0.323166;194772;98140 +4066/11678;tezos-store: store (blocks in chain);0.292251;0.028024;0.320378;194896;98240 +4067/11678;tezos-store: store (new blocks);0.288877;0.036109;0.325088;195024;98348 +4068/11678;tezos-store: store (basic checkpoint);0.300703;0.028065;0.328872;194768;98236 +4069/11678;tezos-store: store (is valid target);0.300093;0.024007;0.324215;194640;98100 +4070/11678;tezos-store: store (acceptable block);0.290909;0.035865;0.326871;194768;98320 +4071/11678;tezos-store: store (future target);0.304541;0.024042;0.328679;194900;98224 +4072/11678;tezos-store: store (reach target);0.297023;0.028096;0.325217;194768;98188 +4073/11678;tezos-store: store (update target in node);0.279896;0.043983;0.323985;194896;98308 +4074/11678;tezos-store: store (block_of_identifier should succeed to retrieve block from level);0.299913;0.023993;0.324027;194860;98188 +4075/11678;tezos-store: store (block_of_identifier should succeed to retrieve block from hash);0.296389;0.032042;0.328532;195248;98568 +4076/11678;tezos-store: store (block_of_identifier should succeed to retrieve block from hash predecessor);0.302843;0.019923;0.322872;194996;98448 +4077/11678;tezos-store: store (block_of_identifier should succeed to retrieve block from hash successor);0.287113;0.035889;0.323117;194736;98144 +4078/11678;tezos-store: store (block_of_identifier should succeed to retrieve the caboose);0.27555;0.043928;0.319576;194612;97924 +4079/11678;tezos-store: store (block_of_identifier should succeed to retrieve caboose successor);0.304936;0.020061;0.325107;194860;98212 +4080/11678;tezos-store: store (block_of_identifier should fail to retrieve caboose predecessor);0.301658;0.024132;0.3259;194992;98320 +4081/11678;tezos-store: store (block_of_identifier should succeed to retrieve the checkpoint);0.28169;0.040241;0.322043;194608;98304 +4082/11678;tezos-store: store (block_of_identifier should succeed to retrieve checkpoint predecessor);0.29995;0.027995;0.328044;194608;97908 +4083/11678;tezos-store: store (block_of_identifier should succeed to retrieve the checkpoint successor);0.292666;0.028063;0.320838;194864;98440 +4084/11678;tezos-store: store (block_of_identifier should fail to retrieve the checkpoint successor after the head);0.301147;0.028107;0.329374;194740;98080 +4085/11678;tezos-store: store (block_of_identifier should succeed to retrieve the savepoint);0.291116;0.031903;0.323167;194868;98120 +4086/11678;tezos-store: protocol store (generic protocol storing);0.290774;0.055764;0.346671;218128;121604 +4087/11678;tezos-store: locator (test pred);0.393723;0.080351;0.474196;206680;110528 +4088/11678;tezos-store: locator (test protocol locator);0.35177;0.043971;0.395815;206552;110352 +4089/11678;tezos-store: consistency (protocol level consistency (Archive mode): drop protocol #1);0.323179;0.024238;0.347518;202928;106840 +4090/11678;tezos-store: consistency (protocol level consistency (Archive mode): drop protocol #2);0.328559;0.020281;0.348826;202932;107276 +4091/11678;tezos-store: consistency (protocol level consistency (Archive mode): drop protocol #3);0.317502;0.032152;0.349508;203056;107448 +4092/11678;tezos-store: consistency (protocol level consistency (Archive mode): drop protocol #4);0.325137;0.024084;0.349572;202928;106796 +4093/11678;tezos-store: consistency (protocol level consistency (Archive mode): drop protocol #5);0.323608;0.023971;0.347376;203056;107296 +4094/11678;tezos-store: consistency (protocol level consistency (Archive mode): remove file);0.317699;0.032172;0.350035;202796;107096 +4095/11678;tezos-store: consistency (protocol level consistency (Full mode + 1 extra cycles): drop protocol #1);0.327982;0.037705;0.368419;200364;115328 +4096/11678;tezos-store: consistency (protocol level consistency (Full mode + 1 extra cycles): drop protocol #2);0.317661;0.051144;0.371363;200500;115156 +4097/11678;tezos-store: consistency (protocol level consistency (Full mode + 1 extra cycles): drop protocol #3);0.342979;0.028658;0.374336;200628;115736 +4098/11678;tezos-store: consistency (protocol level consistency (Full mode + 1 extra cycles): drop protocol #4);0.312855;0.061606;0.377148;203440;116108 +4099/11678;tezos-store: consistency (protocol level consistency (Full mode + 1 extra cycles): drop protocol #5);0.326499;0.046896;0.375808;202928;115524 +4100/11678;tezos-store: consistency (protocol level consistency (Full mode + 1 extra cycles): remove file);0.316512;0.051372;0.370606;203436;115724 +4101/11678;tezos-store: consistency (protocol level consistency (Rolling mode + 1 extra cycles): drop protocol #1);0.314997;0.052826;0.370537;202544;120024 +4102/11678;tezos-store: consistency (protocol level consistency (Rolling mode + 1 extra cycles): drop protocol #2);0.3389;0.03133;0.372444;203056;120768 +4103/11678;tezos-store: consistency (protocol level consistency (Rolling mode + 1 extra cycles): drop protocol #3);0.33676;0.040119;0.379322;202416;120012 +4104/11678;tezos-store: consistency (protocol level consistency (Rolling mode + 1 extra cycles): drop protocol #4);0.344529;0.036088;0.383249;205484;120604 +4105/11678;tezos-store: consistency (protocol level consistency (Rolling mode + 1 extra cycles): drop protocol #5);0.339282;0.032716;0.374789;205100;120488 +4106/11678;tezos-store: consistency (protocol level consistency (Rolling mode + 1 extra cycles): remove file);0.335566;0.0467;0.384828;205356;120608 +4107/11678;tezos-store: cemented store (cementing pruned blocks);0.355782;0.039975;0.396106;206292;115588 +4108/11678;tezos-store: cemented store (cementing full blocks);0.347436;0.047922;0.395805;209368;118620 +4109/11678;tezos-store: cemented store (retrieve cemented metadata);0.289817;0.03176;0.321459;193200;96424 +4110/11678;tezos-store: block store (block storing and access predecessors (hash only));0.294156;0.027825;0.322349;193068;96256 +4111/11678;tezos-store: block store (simple merge);0.295958;0.023996;0.31976;193880;97344 +4112/11678;tezos-store: block store (consecutive & concurrent merge);0.295604;0.031957;0.327629;196148;99752 +4113/11678;tezos-store: block store (10 cycles merge);0.334113;0.040254;0.374093;201936;108256 +4114/11678;tezos-store: block store (merge with branches);0.324898;0.028077;0.352908;196564;100504 +4115/11678;tezos-store: block store (consecutive merge (Archive));0.295681;0.035481;0.330965;194000;97760 +4116/11678;tezos-store: block store (consecutive merge (Full + 0 cycles));0.31197;0.027997;0.340082;193584;97364 +4117/11678;tezos-store: block store (consecutive merge (Full + 2 cycles));0.308098;0.032431;0.340365;193880;97840 +4118/11678;tezos-store: block store (consecutive merge (Rolling + 0 cycles));0.282496;0.043767;0.326368;193584;96924 +4119/11678;tezos-store: block store (consecutive merge (Rolling + 2 cycles));0.312286;0.024022;0.33615;194228;98052 +4120/11678;tezos-store: snapshots (genesis consistency after rolling import (blocks per cycle = 8) using tar (single file) format);0.452004;0.071392;0.570545;231412;135992 +4121/11678;tezos-store: snapshots (genesis consistency after rolling import (blocks per cycle = 8) using directory format);0.456474;0.07361;0.577663;231108;136084 +4122/11678;tezos-store: snapshots (check caboose and savepoint drag after rolling import (blocks per cycle = 256) using tar (single file) format);3.78474;0.164625;3.95162;257828;173552 +4123/11678;tezos-store: snapshots (check caboose and savepoint drag after rolling import (blocks per cycle = 256) using directory format);3.70828;0.180008;3.89021;257576;173568 +4124/11678;tezos-store: snapshots (export => import with 40 initial blocks from Rolling mode + 1 extra cycles to rolling (exported block at checkpoint) using tar (single file) format);0.527052;0.074375;0.639093;231032;136232 +4125/11678;tezos-store: snapshots (export => import with 40 initial blocks from Rolling mode + 1 extra cycles to rolling (exported block at checkpoint) using directory format);0.559454;0.041071;0.647347;230148;135000 +4126/11678;tezos-store: snapshots (export => import with 40 initial blocks from Rolling mode to rolling (exported block at checkpoint) using tar (single file) format);0.516829;0.07669;0.62809;233588;138104 +4127/11678;tezos-store: snapshots (export => import with 40 initial blocks from Rolling mode to rolling (exported block at checkpoint) using directory format);0.533645;0.052019;0.625741;233640;138452 +4128/11678;tezos-store: snapshots (export => import with 40 initial blocks from Full mode + 1 extra cycles to rolling (exported block at checkpoint) using tar (single file) format);0.547468;0.041538;0.616717;227852;133200 +4129/11678;tezos-store: snapshots (export => import with 40 initial blocks from Full mode + 1 extra cycles to rolling (exported block at checkpoint) using directory format);0.549131;0.049315;0.638593;229412;134292 +4130/11678;tezos-store: snapshots (export => import with 40 initial blocks from Full mode + 1 extra cycles to full (exported block at checkpoint) using tar (single file) format);0.514075;0.062057;0.591127;228768;133224 +4131/11678;tezos-store: snapshots (export => import with 40 initial blocks from Full mode + 1 extra cycles to full (exported block at checkpoint) using directory format);0.54211;0.042531;0.605871;228616;133356 +4132/11678;tezos-store: snapshots (export => import with 77 initial blocks from Rolling mode + 1 extra cycles to rolling (exported block at level 40) using tar (single file) format);0.562562;0.060306;0.640051;236068;141264 +4133/11678;tezos-store: snapshots (export => import with 77 initial blocks from Rolling mode + 1 extra cycles to rolling (exported block at level 40) using directory format);0.593961;0.032124;0.654561;235980;141116 +4134/11678;tezos-store: snapshots (export => import with 77 initial blocks from Rolling mode to rolling (exported block at level 40) using tar (single file) format);0.574039;0.036802;0.613126;229576;135348 +4135/11678;tezos-store: snapshots (export => import with 77 initial blocks from Rolling mode to rolling (exported block at level 40) using directory format);0.552518;0.063081;0.617417;229752;135972 +4136/11678;tezos-store: snapshots (export => import with 77 initial blocks from Full mode + 1 extra cycles to rolling (exported block at level 40) using tar (single file) format);0.590409;0.037352;0.654408;230320;137172 +4137/11678;tezos-store: snapshots (export => import with 77 initial blocks from Full mode + 1 extra cycles to rolling (exported block at level 40) using directory format);0.577272;0.058283;0.66221;230604;138236 +4138/11678;tezos-store: snapshots (export => import with 77 initial blocks from Full mode + 1 extra cycles to full (exported block at level 40) using tar (single file) format);0.547608;0.068913;0.634283;230960;136772 +4139/11678;tezos-store: snapshots (export => import with 77 initial blocks from Full mode + 1 extra cycles to full (exported block at level 40) using directory format);0.55291;0.058209;0.650669;230936;136816 +4140/11678;tezos-store: snapshots (export => import with 77 initial blocks from Rolling mode + 1 extra cycles to rolling (exported block at checkpoint) using tar (single file) format);0.631819;0.040256;0.710033;236048;141064 +4141/11678;tezos-store: snapshots (export => import with 77 initial blocks from Rolling mode + 1 extra cycles to rolling (exported block at checkpoint) using directory format);0.62055;0.040575;0.70939;235460;140836 +4142/11678;tezos-store: snapshots (export => import with 77 initial blocks from Rolling mode to rolling (exported block at checkpoint) using tar (single file) format);0.563167;0.085125;0.650303;229236;135704 +4143/11678;tezos-store: snapshots (export => import with 77 initial blocks from Rolling mode to rolling (exported block at checkpoint) using directory format);0.590321;0.057087;0.64912;228852;135164 +4144/11678;tezos-store: snapshots (export => import with 77 initial blocks from Full mode + 1 extra cycles to rolling (exported block at checkpoint) using tar (single file) format);0.59556;0.066329;0.705147;230380;136716 +4145/11678;tezos-store: snapshots (export => import with 77 initial blocks from Full mode + 1 extra cycles to rolling (exported block at checkpoint) using directory format);0.561615;0.09352;0.68449;229564;137100 +4146/11678;tezos-store: snapshots (export => import with 77 initial blocks from Full mode + 1 extra cycles to full (exported block at checkpoint) using tar (single file) format);0.608039;0.049449;0.689146;230128;136876 +4147/11678;tezos-store: snapshots (export => import with 77 initial blocks from Full mode + 1 extra cycles to full (exported block at checkpoint) using directory format);0.609112;0.055172;0.681533;230084;137000 +4148/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode node with 101 blocks.);0.473293;0.056153;0.529687;216628;120864 +4149/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode + 1 extra cycles node with 101 blocks.);0.510286;0.04018;0.550376;216944;121240 +4150/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode node with 92 blocks.);0.469619;0.048166;0.518008;216744;120972 +4151/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode + 1 extra cycles node with 92 blocks.);0.486806;0.043892;0.530724;216748;121224 +4152/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode node with 89 blocks.);0.487462;0.023973;0.511665;216624;120848 +4153/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode + 1 extra cycles node with 89 blocks.);0.476717;0.048072;0.524575;216748;121316 +4154/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode node with 57 blocks.);0.402933;0.047873;0.450985;216764;120536 +4155/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode + 1 extra cycles node with 57 blocks.);0.40955;0.036136;0.445648;216844;120924 +4156/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode node with 42 blocks.);0.366514;0.039838;0.406521;208816;112284 +4157/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode + 1 extra cycles node with 42 blocks.);0.369061;0.048138;0.417004;208948;112980 +4158/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode node with 21 blocks.);0.357777;0.016079;0.373971;202672;106056 +4159/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode + 1 extra cycles node with 21 blocks.);0.342269;0.023879;0.366279;202800;106180 +4160/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode node with 8 blocks.);0.314749;0.023905;0.338764;196020;99344 +4161/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode + 1 extra cycles node with 8 blocks.);0.295451;0.047911;0.343477;195888;99224 +4162/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode node with 3 blocks.);0.295745;0.031972;0.327914;195120;98512 +4163/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode + 1 extra cycles node with 3 blocks.);0.291586;0.035949;0.327644;195376;98764 +4164/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode node with 0 blocks.);0.291291;0.035912;0.327306;194608;97884 +4165/11678;tezos-store: reconstruct (Reconstructing on a bootstrapped Full mode + 1 extra cycles node with 0 blocks.);0.286747;0.035843;0.322706;194864;98172 +4166/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode node with 101 blocks.);0.672075;0.067957;0.742279;235644;143124 +4167/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode + 1 extra cycles node with 101 blocks.);0.722489;0.037534;0.761425;236000;141356 +4168/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode node with 92 blocks.);0.63576;0.072789;0.710676;239172;144476 +4169/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode + 1 extra cycles node with 92 blocks.);0.676168;0.037156;0.715272;239300;144716 +4170/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode node with 89 blocks.);0.631014;0.059777;0.692845;239600;144784 +4171/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode + 1 extra cycles node with 89 blocks.);0.63577;0.059775;0.697542;239092;144468 +4172/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode node with 57 blocks.);0.527028;0.047722;0.576581;231012;140284 +4173/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode + 1 extra cycles node with 57 blocks.);0.514932;0.06036;0.576701;231960;140384 +4174/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode node with 42 blocks.);0.46145;0.053891;0.5168;230228;134228 +4175/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode + 1 extra cycles node with 42 blocks.);0.478383;0.042864;0.522719;229768;134204 +4176/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode node with 21 blocks.);0.39776;0.046758;0.446294;225152;129416 +4177/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode + 1 extra cycles node with 21 blocks.);0.395055;0.041759;0.438432;225188;129300 +4178/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode node with 8 blocks.);0.353825;0.042173;0.397652;217008;122808 +4179/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode + 1 extra cycles node with 8 blocks.);0.342539;0.048398;0.392529;216880;122612 +4180/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode node with 3 blocks.);0.316509;0.048715;0.366773;216556;120332 +4181/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode + 1 extra cycles node with 3 blocks.);0.348508;0.026121;0.376373;216204;120356 +4182/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode node with 0 blocks.);0.304451;0.016023;0.3206;195120;98368 +4183/11678;tezos-store: reconstruct (Reconstructing from snapshots on a Full mode + 1 extra cycles node with 0 blocks.);0.30963;0.020105;0.329839;195372;98660 +4184/11678;tezos-store: history_mode_switch (Check savepoint drag with cycles bigger that max_op_ttl);4.6125;0.267796;4.83165;246188;179316 +4185/11678;tezos-store: history_mode_switch (switching from Rolling mode + 5 extra cycles to Rolling mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.440691;0.044473;0.485181;217388;121396 +4186/11678;tezos-store: history_mode_switch (switching from Rolling mode + 5 extra cycles to Rolling mode with 72 blocks baked and cycle length 8);0.445557;0.044154;0.48965;218156;122576 +4187/11678;tezos-store: history_mode_switch (switching from Rolling mode + 5 extra cycles to Rolling mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.453868;0.024099;0.477712;218288;122604 +4188/11678;tezos-store: history_mode_switch (switching from Rolling mode + 5 extra cycles to Full mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.437435;0.052171;0.489483;216240;120568 +4189/11678;tezos-store: history_mode_switch (switching from Rolling mode + 5 extra cycles to Full mode with 72 blocks baked and cycle length 8);0.434974;0.039905;0.474677;215984;119956 +4190/11678;tezos-store: history_mode_switch (switching from Rolling mode + 5 extra cycles to Full mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.45958;0.024402;0.48398;215984;120120 +4191/11678;tezos-store: history_mode_switch (switching from Rolling mode + 5 extra cycles to Archive mode with 72 blocks baked and cycle length 8);0.436423;0.044865;0.481156;216244;120560 +4192/11678;tezos-store: history_mode_switch (switching from Rolling mode to Rolling mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.43763;0.036134;0.473974;216368;120336 +4193/11678;tezos-store: history_mode_switch (switching from Rolling mode to Rolling mode with 72 blocks baked and cycle length 8);0.427793;0.03998;0.46794;216108;119948 +4194/11678;tezos-store: history_mode_switch (switching from Rolling mode to Rolling mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.419378;0.059911;0.479495;216496;120048 +4195/11678;tezos-store: history_mode_switch (switching from Rolling mode to Full mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.414375;0.055781;0.47044;216880;120700 +4196/11678;tezos-store: history_mode_switch (switching from Rolling mode to Full mode with 72 blocks baked and cycle length 8);0.437025;0.044103;0.481361;217008;120768 +4197/11678;tezos-store: history_mode_switch (switching from Rolling mode to Full mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.434135;0.039828;0.474251;216112;119872 +4198/11678;tezos-store: history_mode_switch (switching from Rolling mode to Archive mode with 72 blocks baked and cycle length 8);0.420259;0.052032;0.472484;215984;119768 +4199/11678;tezos-store: history_mode_switch (switching from Rolling mode + 1 extra cycles to Rolling mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.45272;0.032051;0.484609;219544;123576 +4200/11678;tezos-store: history_mode_switch (switching from Rolling mode + 1 extra cycles to Rolling mode with 72 blocks baked and cycle length 8);0.4572;0.028322;0.485343;220604;124716 +4201/11678;tezos-store: history_mode_switch (switching from Rolling mode + 1 extra cycles to Rolling mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.445147;0.040467;0.485605;219952;124168 +4202/11678;tezos-store: history_mode_switch (switching from Rolling mode + 1 extra cycles to Full mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.441444;0.048157;0.489423;217076;121340 +4203/11678;tezos-store: history_mode_switch (switching from Rolling mode + 1 extra cycles to Full mode with 72 blocks baked and cycle length 8);0.453245;0.044121;0.497205;215856;119956 +4204/11678;tezos-store: history_mode_switch (switching from Rolling mode + 1 extra cycles to Full mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.441576;0.044157;0.485838;215988;120004 +4205/11678;tezos-store: history_mode_switch (switching from Rolling mode + 1 extra cycles to Archive mode with 72 blocks baked and cycle length 8);0.4454;0.048151;0.493521;215732;119728 +4206/11678;tezos-store: history_mode_switch (switching from Full mode + 5 extra cycles to Rolling mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.449698;0.040151;0.489799;215724;119960 +4207/11678;tezos-store: history_mode_switch (switching from Full mode + 5 extra cycles to Rolling mode with 72 blocks baked and cycle length 8);0.421605;0.060229;0.481746;216128;120572 +4208/11678;tezos-store: history_mode_switch (switching from Full mode + 5 extra cycles to Rolling mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.434928;0.043891;0.478746;215724;119752 +4209/11678;tezos-store: history_mode_switch (switching from Full mode + 5 extra cycles to Full mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.440041;0.052004;0.492172;215724;120016 +4210/11678;tezos-store: history_mode_switch (switching from Full mode + 5 extra cycles to Full mode with 72 blocks baked and cycle length 8);0.453846;0.036147;0.489925;216372;120612 +4211/11678;tezos-store: history_mode_switch (switching from Full mode + 5 extra cycles to Full mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.455807;0.023989;0.479583;215728;120076 +4212/11678;tezos-store: history_mode_switch (switching from Full mode + 5 extra cycles to Archive mode with 72 blocks baked and cycle length 8);0.436491;0.044049;0.480411;215576;119572 +4213/11678;tezos-store: history_mode_switch (switching from Full mode to Rolling mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.427345;0.047926;0.475489;216116;120108 +4214/11678;tezos-store: history_mode_switch (switching from Full mode to Rolling mode with 72 blocks baked and cycle length 8);0.451619;0.035969;0.487774;216664;120512 +4215/11678;tezos-store: history_mode_switch (switching from Full mode to Rolling mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.408677;0.068112;0.476994;216296;120620 +4216/11678;tezos-store: history_mode_switch (switching from Full mode to Full mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.452936;0.024049;0.477171;217120;121048 +4217/11678;tezos-store: history_mode_switch (switching from Full mode to Full mode with 72 blocks baked and cycle length 8);0.439355;0.035947;0.475511;216240;120284 +4218/11678;tezos-store: history_mode_switch (switching from Full mode to Full mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.446224;0.043825;0.490276;216500;120232 +4219/11678;tezos-store: history_mode_switch (switching from Full mode to Archive mode with 72 blocks baked and cycle length 8);0.438688;0.043868;0.482748;215732;119620 +4220/11678;tezos-store: history_mode_switch (switching from Full mode + 1 extra cycles to Rolling mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.43605;0.044005;0.480162;215472;119864 +4221/11678;tezos-store: history_mode_switch (switching from Full mode + 1 extra cycles to Rolling mode with 72 blocks baked and cycle length 8);0.460874;0.024045;0.484863;215984;120064 +4222/11678;tezos-store: history_mode_switch (switching from Full mode + 1 extra cycles to Rolling mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.443191;0.047912;0.491015;216840;121048 +4223/11678;tezos-store: history_mode_switch (switching from Full mode + 1 extra cycles to Full mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.467674;0.015988;0.483825;215860;119988 +4224/11678;tezos-store: history_mode_switch (switching from Full mode + 1 extra cycles to Full mode with 72 blocks baked and cycle length 8);0.448466;0.040041;0.48837;216368;120592 +4225/11678;tezos-store: history_mode_switch (switching from Full mode + 1 extra cycles to Full mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.439648;0.043964;0.483662;215980;119828 +4226/11678;tezos-store: history_mode_switch (switching from Full mode + 1 extra cycles to Archive mode with 72 blocks baked and cycle length 8);0.416938;0.056126;0.472989;215852;120088 +4227/11678;tezos-store: history_mode_switch (switching from Archive mode to Rolling mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.451341;0.028462;0.479648;215984;120500 +4228/11678;tezos-store: history_mode_switch (switching from Archive mode to Rolling mode with 72 blocks baked and cycle length 8);0.461475;0.032102;0.493493;215984;120260 +4229/11678;tezos-store: history_mode_switch (switching from Archive mode to Rolling mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.424266;0.056035;0.480264;216264;120600 +4230/11678;tezos-store: history_mode_switch (switching from Archive mode to Full mode + 5 extra cycles with 72 blocks baked and cycle length 8);0.433519;0.052182;0.485621;215852;120144 +4231/11678;tezos-store: history_mode_switch (switching from Archive mode to Full mode with 72 blocks baked and cycle length 8);0.444132;0.032009;0.47616;215728;119780 +4232/11678;tezos-store: history_mode_switch (switching from Archive mode to Full mode + 1 extra cycles with 72 blocks baked and cycle length 8);0.445767;0.032419;0.47817;215732;119780 +4233/11678;tezos-store: history_mode_switch (switching from Archive mode to Archive mode with 72 blocks baked and cycle length 8);0.436344;0.044034;0.480408;215600;119944 +4234/11678;Log_config_rules: parsing rules;0.288732;0.024061;0.312898;193236;96396 +4235/11678;test-key-value-store-fuzzy: sequential (key-value store sequential writes/reads);0.551582;0.271794;0.823493;213036;221844 +4236/11678;test-key-value-store-fuzzy: parallel (key-value store concurrent writes/reads);0.588563;0.240229;0.829273;213176;222776 +4237/11678;Lwt_pipe: Bounded (push-pop);0.288168;0.028016;0.316292;192952;96096 +4238/11678;Lwt_pipe: Bounded (push-pop-all);0.287143;0.035892;0.456707;193076;96188 +4239/11678;Lwt_pipe: Bounded (count-down);0.288307;0.036038;0.324446;193076;96396 +4240/11678;Lwt_pipe: Bounded (introspect);0.290921;0.027896;0.318919;193080;96140 +4241/11678;Lwt_pipe: Unbounded (push-pop);0.287401;0.031933;0.319435;192952;96140 +4242/11678;Lwt_pipe: Unbounded (count-down);0.284474;0.03606;0.320631;192948;96140 +4243/11678;stdlib: hash_queue_lwt (fold_s);0.293127;0.024092;0.31733;192948;96144 +4244/11678;stdlib: hash_queue_lwt (fold_es);0.268446;0.048079;0.316627;193084;96140 +4245/11678;stdlib: hash_queue_lwt (fold_es_error);0.28673;0.031858;0.318701;193208;96140 +4246/11678;Stdlib.circular_buffer: Invalid argument (Stdlib.circular_buffer.equivalence-with-reference-implementation-without-invalid-argument);0.35412;0.036216;0.390433;222264;125508 +4247/11678;Stdlib.circular_buffer: With reference (Stdlib.circular_buffer.equivalence-with-reference-implementation);0.312302;0.028027;0.340433;204088;107332 +4248/11678;tezos-stdlib: circular_buffer.constant-chunks.full (bad-fit);0.293539;0.024126;0.317768;193080;96324 +4249/11678;tezos-stdlib: circular_buffer.constant-chunks.full (bad-fit-underflow);0.280973;0.036125;0.317216;192952;96140 +4250/11678;tezos-stdlib: circular_buffer.constant-chunks.full (bad-fit-overflow);0.289401;0.036175;0.325688;193208;96396 +4251/11678;tezos-stdlib: circular_buffer.constant-chunks.full (perfect-fit);0.286506;0.027854;0.314461;192948;96136 +4252/11678;tezos-stdlib: circular_buffer.constant-chunks.full (perfect-fit-underflow);0.820786;0.044042;0.86494;225080;128324 +4253/11678;tezos-stdlib: circular_buffer.constant-chunks.full (perfect-fit-overflow);0.292435;0.028041;0.320581;192952;96184 +4254/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-write (bad-fit);0.299991;0.015999;0.316148;193076;96152 +4255/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-write (bad-fit-underflow);0.286917;0.031879;0.318898;192956;96140 +4256/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-write (bad-fit-overflow);0.281784;0.040254;0.322168;193076;96140 +4257/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-write (perfect-fit);0.288486;0.032054;0.320662;193084;96332 +4258/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-write (perfect-fit-underflow);5.50162;0.032009;5.53376;238696;141888 +4259/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-write (perfect-fit-overflow);0.293352;0.044203;0.337664;207928;111172 +4260/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-read-write (bad-fit);0.289863;0.032207;0.322174;193208;96396 +4261/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-read-write (bad-fit-underflow);0.264457;0.060104;0.324753;193084;96392 +4262/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-read-write (bad-fit-overflow);0.289352;0.024112;0.313569;193084;96396 +4263/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-read-write (perfect-fit);0.281694;0.036217;0.318028;193076;96328 +4264/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-read-write (perfect-fit-underflow);6.23856;0.043989;6.28266;238920;141892 +4265/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-read-write (perfect-fit-overflow);0.287956;0.031995;0.320053;193080;96396 +4266/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-read-write-interleaving (bad-fit);0.276643;0.040093;0.316841;193080;96136 +4267/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-read-write-interleaving (bad-fit-underflow);0.290413;0.027847;0.318422;192948;96140 +4268/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-read-write-interleaving (bad-fit-overflow);0.307005;0.015948;0.323052;193204;96396 +4269/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-read-write-interleaving (perfect-fit);0.286581;0.031842;0.318526;192956;96136 +4270/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-read-write-interleaving (perfect-fit-underflow);5.35981;0.039998;5.39994;270980;174400 +4271/11678;tezos-stdlib: circular_buffer.constant-chunks.partial-read-write-interleaving (perfect-fit-overflow);0.300203;0.024016;0.324324;193080;96140 +4272/11678;tezos-stdlib: circular_buffer.fail_cases (Write_too_long-in_buffer);0.291144;0.027917;0.319163;192952;96140 +4273/11678;tezos-stdlib: circular_buffer.fail_cases (Write_too_long-extra_allocated_buffer);0.282503;0.031831;0.314439;193076;96396 +4274/11678;tezos-stdlib: circular_buffer.fail_cases (Read_too_long-in_buffer);0.276998;0.048173;0.325278;193084;96136 +4275/11678;tezos-stdlib: circular_buffer.fail_cases (Read_too_long-extra_allocated_buffer);0.290175;0.027825;0.318119;193076;96396 +4276/11678;TzString: split (handles a duplicated separator);0.283673;0.035958;0.319738;193076;96328 +4277/11678;TzString: split (TzString.split is reversed by String.concat);0.302239;0.015907;0.318242;193076;96140 +4278/11678;TzString: chunk_bytes (Returns empty list when splitting empty bytes);0.290824;0.027887;0.318871;192948;96180 +4279/11678;TzString: chunk_bytes (Chunks a sequence of bytes - no error, partial chunk);0.289238;0.02812;0.317475;193236;96396 +4280/11678;TzString: chunk_bytes (Errors if last chunk is uncomplete - error passed as argument);0.295183;0.027922;0.323204;192948;96140 +4281/11678;TzString: chunk_bytes (Chunks a sequence of bytes - error passed as arguments, no partial chunk);0.279243;0.035902;0.31525;192948;96140 +4282/11678;TzString: chunk_bytes (TzString.chunk_bytes chunks bytes correctly);0.293369;0.028131;0.321632;193076;96396 +4283/11678;stdlib: tzList (repeat);0.298427;0.023874;0.322403;193076;96236 +4284/11678;stdlib: tzList (consistency);0.287528;0.027954;0.315584;193208;96396 +4285/11678;stdlib: tzList (consistency(rev));0.272954;0.044154;0.317221;192948;96144 +4286/11678;stdlib: tzList (split);0.282736;0.039822;0.322636;192948;96140 +4287/11678;stdlib: tzList (rev_split);0.287084;0.031898;0.319082;193076;96392 +4288/11678;stdlib: tzList (all_equal);0.293095;0.028105;0.321316;193076;96396 +4289/11678;TzBytes: bitwise_reference (unit_test);0.300561;0.024044;0.324698;192964;96396 +4290/11678;TzBytes: bitwise_small (random_contents_test);0.974466;0.027955;1.00251;193076;96392 +4291/11678;TzBytes: bitwise_huge (random_contents_test);0.879463;0.035978;0.91553;193084;96040 +4292/11678;TzBytes: bitwise_very_huge (int64_shift);0.292012;0.076003;0.368151;458828;362552 +4293/11678;TzBytes: bitwise_test_shift_zero (test_shift_zero);0.289148;0.036143;0.325392;193208;96400 +4294/11678;TzBytes: bitwise_test_functional (test_functional);0.29532;0.023944;0.319367;193076;96140 +4295/11678;stdlib: hash_queue (capacity (create n) = n);0.286151;0.032242;0.318501;192948;96136 +4296/11678;stdlib: hash_queue (replace);0.287586;0.035948;0.323634;193084;96396 +4297/11678;stdlib: hash_queue (replace_incr_length);0.292485;0.028046;0.320616;192984;96396 +4298/11678;stdlib: hash_queue (replace_existing);0.302149;0.016114;0.318487;192948;96108 +4299/11678;stdlib: hash_queue (peek);0.284045;0.036005;0.320159;193084;96140 +4300/11678;stdlib: hash_queue (peek_empty);0.299411;0.023952;0.323486;193064;96396 +4301/11678;stdlib: hash_queue (peek_at_most);0.307572;0.019972;0.327654;192952;96044 +4302/11678;stdlib: hash_queue (peek_at_most_above_length);0.295016;0.019933;0.315065;193080;96396 +4303/11678;stdlib: hash_queue (peek_at_most_above_capacity);0.280376;0.040053;0.320534;192956;96136 +4304/11678;stdlib: hash_queue (take);0.295454;0.027948;0.323511;193208;96396 +4305/11678;stdlib: hash_queue (take_empty);0.293082;0.028103;0.321311;192824;96140 +4306/11678;stdlib: hash_queue (take_at_most);0.279052;0.039864;0.319019;193080;96396 +4307/11678;stdlib: hash_queue (take_at_most_above_length);0.285465;0.032165;0.317746;193076;96392 +4308/11678;stdlib: hash_queue (take_at_most_above_capacity);0.271983;0.043997;0.316084;193076;96140 +4309/11678;stdlib: hash_queue (replace_above_capacity);0.293501;0.024123;0.31773;192948;96240 +4310/11678;stdlib: hash_queue (clear);0.293165;0.024095;0.317342;192708;96396 +4311/11678;stdlib: hash_queue (fold);0.300262;0.020017;0.320385;192952;96140 +4312/11678;stdlib: hash_queue (elements);0.291088;0.027912;0.319106;192948;96136 +4313/11678;stdlib: hash_queue (keys);0.288009;0.028;0.31613;192952;96136 +4314/11678;stdlib: hash_queue (bindings);0.292292;0.028028;0.32043;192956;96132 +4315/11678;stdlib: hash_queue (take_replace_keep_order);0.291575;0.023965;0.31564;192948;96136 +4316/11678;stdlib: FunctionalArray (make_fallback);0.28894;0.028091;0.317218;193080;96140 +4317/11678;stdlib: FunctionalArray (fresh_accesses);0.290536;0.031839;0.322515;192948;96140 +4318/11678;stdlib: FunctionalArray (get_set);0.296095;0.028008;0.324203;193080;96396 +4319/11678;stdlib: FunctionalArray (out_of_bounds);0.296676;0.020045;0.316882;192952;96116 +4320/11678;stdlib: FunctionalArray (immutable_fallback);0.276089;0.048015;0.324223;192948;96140 +4321/11678;stdlib: FunctionalArray (iter);0.301906;0.012076;0.314167;193076;96140 +4322/11678;stdlib: FunctionalArray (map);0.275085;0.043854;0.319059;193080;96396 +4323/11678;stdlib: FunctionalArray (fold);0.266041;0.051619;0.317787;192948;96140 +4324/11678;stdlib: FunctionalArray (fold_map);0.298977;0.019931;0.319007;193080;96140 +4325/11678;stdlib: FallbackArray (of_list);0.299352;0.023948;0.323394;192872;96324 +4326/11678;stdlib: FallbackArray (make_fallback);0.301973;0.015893;0.317943;193080;96208 +4327/11678;stdlib: FallbackArray (fresh_accesses);0.295196;0.031913;0.327213;193080;96396 +4328/11678;stdlib: FallbackArray (get_set);0.27982;0.035976;0.315898;192952;96140 +4329/11678;stdlib: FallbackArray (out_of_bounds);0.296551;0.020037;0.316695;192952;96140 +4330/11678;stdlib: FallbackArray (immutable_fallback);0.285723;0.032194;0.318036;193076;96140 +4331/11678;stdlib: FallbackArray (iter);0.278767;0.043806;0.322731;193204;96312 +4332/11678;stdlib: FallbackArray (map);0.286478;0.03183;0.318441;192956;96136 +4333/11678;stdlib: FallbackArray (fold);0.296335;0.028031;0.324477;193080;96396 +4334/11678;stdlib: FallbackArray (fold_map);0.290373;0.027844;0.318374;193152;96368 +4335/11678;stdlib: Bounded_heap (create 0 works);0.303918;0.015995;0.320034;193080;96396 +4336/11678;stdlib: Bounded_heap (bounded_heap (qcheck));0.454057;0.036163;0.490344;224696;127812 +4337/11678;stdlib: numbits (numbits_on_samples);0.291413;0.023951;0.31547;193080;96396 +4338/11678;stdlib: numbits (numbits_correct);3.67388;0.024012;3.69798;193076;96140 +4339/11678;SRS: Srs (lagrange zcash_srs);0.339369;0.019962;0.360796;192948;96140 +4340/11678;tezos-signer-backends: ledger-names (print_example);0.288726;0.02406;0.312907;193204;96140 +4341/11678;tezos-signer-backends: encrypted (random_roundtrip);2.07502;0.023988;2.09911;192952;96140 +4342/11678;tezos-signer-backends: encrypted (vectors_decrypt);0.549291;0.036084;0.585456;192880;96332 +4343/11678;tezos-signer-backends: encrypted (aggregate_random_roundtrip);0.893021;0.012013;0.905127;193080;96136 +4344/11678;tezos-signer-backends: encrypted (aggregate_vectors_decrypt);0.495534;0.027973;0.523663;193200;96428 +4345/11678;tezos-lib-shell-services: block-services (json-encoding of large directory);0.731729;0.063976;0.795869;348532;251996 +4346/11678;tezos-shell: test validator (validator_events);0.299125;0.019941;0.319165;193080;96336 +4347/11678;synchronisation heuristic fuzzy: synchronisation heuristic fuzzy (Shell.synchronisation_heuristic.equivalence-with-reference-implementation (threshold 1) (latency 100));0.289643;0.036205;0.32595;193080;96396 +4348/11678;synchronisation heuristic fuzzy: synchronisation heuristic fuzzy (Shell.synchronisation_heuristic.equivalence-with-reference-implementation (threshold 2) (latency 100));1.05618;0.119567;1.17883;213048;117076 +4349/11678;synchronisation heuristic fuzzy: synchronisation heuristic fuzzy (Shell.synchronisation_heuristic.equivalence-with-reference-implementation (threshold 3) (latency 100));1.39242;0.119692;1.51591;226104;129840 +4350/11678;synchronisation heuristic fuzzy: synchronisation heuristic fuzzy (Shell.synchronisation_heuristic.equivalence-with-reference-implementation (threshold 4) (latency 100));1.16068;0.095726;1.25948;214968;118828 +4351/11678;synchronisation heuristic fuzzy: synchronisation heuristic fuzzy (Shell.synchronisation_heuristic.equivalence-with-reference-implementation (threshold 5) (latency 100));1.19301;0.12369;1.31999;220216;123960 +4352/11678;synchronisation heuristic fuzzy: synchronisation heuristic fuzzy (Shell.synchronisation_heuristic.equivalence-with-reference-implementation (threshold 6) (latency 100));1.44211;0.087884;1.53384;226280;130544 +4353/11678;synchronisation heuristic fuzzy: synchronisation heuristic fuzzy (Shell.synchronisation_heuristic.equivalence-with-reference-implementation (threshold 7) (latency 100));1.04051;0.087705;1.13093;212024;115588 +4354/11678;synchronisation heuristic fuzzy: synchronisation heuristic fuzzy (Shell.synchronisation_heuristic.equivalence-with-reference-implementation (threshold 8) (latency 100));1.05385;0.047902;1.10432;209852;113472 +4355/11678;tezos-shell: synchronisation heuristic sync (Threshold negative);0.295458;0.027948;0.323512;192992;96424 +4356/11678;tezos-shell: synchronisation heuristic sync (Threshold is zero);0.287968;0.031996;0.320069;192952;96140 +4357/11678;tezos-shell: synchronisation heuristic sync (Threshold is one, update in the present);0.284716;0.02807;0.312927;193080;96136 +4358/11678;tezos-shell: synchronisation heuristic sync (Threshold is one, update in the past);0.300428;0.024034;0.324572;193080;96396 +4359/11678;tezos-shell: synchronisation heuristic sync (Threshold is one, best timestamp in the past);0.299273;0.023941;0.32332;192952;96140 +4360/11678;tezos-shell: synchronisation heuristic sync (Threshold is one, update in the past does not erase update in the present);0.301132;0.01606;0.317295;192952;96140 +4361/11678;tezos-shell: synchronisation heuristic sync (Threshold is two);0.285796;0.032202;0.318103;193080;96396 +4362/11678;tezos-shell: synchronisation heuristic sync (Threshold is two, one peer in the past);0.301213;0.024097;0.325421;192948;96140 +4363/11678;tezos-shell: synchronisation heuristic sync (Threshold is two, one peer in the past twice);0.293003;0.024082;0.317186;193080;96140 +4364/11678;tezos-shell: synchronisation heuristic sync (test_threshold is two, two peers in the past);0.291212;0.023935;0.315268;193080;96140 +4365/11678;tezos-shell: synchronisation heuristic sync (Threshold is three);0.284404;0.040056;0.324575;193080;96396 +4366/11678;tezos-shell: synchronisation heuristic sync (Threshold is three, three in the past);0.296848;0.024068;0.321039;193076;96416 +4367/11678;tezos-shell: synchronisation heuristic sync (Crowbar counterexample 1);0.297842;0.028174;0.32612;193080;96392 +4368/11678;tezos-shell: synchronisation heuristic (test bp create);0.286134;0.031792;0.318044;193080;96136 +4369/11678;tezos-shell: synchronisation heuristic (test bp create 2);0.292199;0.024016;0.316326;193076;96328 +4370/11678;tezos-shell: synchronisation heuristic (test bp activate);0.28714;0.031904;0.319146;192952;96140 +4371/11678;tezos-shell: synchronisation heuristic (test bp activate 2);0.279754;0.039964;0.319827;192956;96140 +4372/11678;tezos-shell: synchronisation heuristic (test force bootstrapped);0.286648;0.035831;0.322568;193048;96396 +4373/11678;tezos-shell: synchronisation heuristic (test force bootstrapped 2);0.294109;0.027821;0.322046;193080;96220 +4374/11678;tezos-shell: synchronisation heuristic (test force bootstrapped 3);0.302097;0.019874;0.322075;193080;96140 +4375/11678;tezos-shell: synchronisation heuristic (test is bootstrapped);0.297602;0.024129;0.321859;192952;96140 +4376/11678;tezos-shell: synchronisation heuristic (test is bootstrapped 2);0.293638;0.024134;0.31788;193076;96180 +4377/11678;tezos-shell: synchronisation heuristic (test is bootstrapped 3);0.289407;0.036175;0.325658;193008;96396 +4378/11678;tezos-shell: synchronisation heuristic (test waiting for bootstrapped);0.286586;0.039803;0.326502;193076;96140 +4379/11678;tezos-shell: synchronisation heuristic (test waiting for bootstrapped 2);0.296735;0.020049;0.31693;193204;96304 +4380/11678;tezos-shell: synchronisation heuristic (test when status changes);0.30329;0.019953;0.323346;193080;96136 +4381/11678;Shell_operation: Corner cases (Raising an exception in encoding doesn't break);0.296935;0.020063;0.317104;193080;96096 +4382/11678;Shell_operation: Ddb leaks (handle_branch_refused:64 calls);0.296839;0.024068;0.320987;192900;96396 +4383/11678;Shell_operation: Ddb leaks (handle_branch_refused:128 calls);0.283533;0.031947;0.315581;192956;96140 +4384/11678;Shell_operation: Ddb leaks (handle_branch_delayed:64 calls);0.291458;0.023955;0.315555;193076;96004 +4385/11678;Shell_operation: Ddb leaks (handle_branch_delayed:128 calls);0.281027;0.032117;0.313243;193080;96144 +4386/11678;Shell_operation: Ddb leaks (handle_refused:64 calls);0.278318;0.039759;0.31824;192948;96140 +4387/11678;Shell_operation: Ddb leaks (handle_refused:128 calls);0.299427;0.023954;0.323489;193076;96140 +4388/11678;Shell_operation: Ddb leaks (handle_outdated:64 calls);0.305506;0.020099;0.325704;193076;96360 +4389/11678;Shell_operation: Ddb leaks (handle_outdated:128 calls);0.288748;0.028072;0.316936;193080;96140 +4390/11678;Shell_operation: Mempool Leaks (handle_refused:64 calls);0.297699;0.024137;0.322035;193076;96292 +4391/11678;Shell_operation: Mempool Leaks (handle_refused:128 calls);0.286811;0.027884;0.314802;193080;96328 +4392/11678;Shell_operation: Mempool Leaks (handle_outdated:64 calls);0.282941;0.03188;0.314938;192952;96140 +4393/11678;Shell_operation: Mempool Leaks (handle_outdated:128 calls);0.286835;0.027886;0.314829;193084;96140 +4394/11678;Shell_operation: Ddb clearing (handle_branch_refused:64 calls);0.282949;0.035866;0.318924;193084;96400 +4395/11678;Shell_operation: Ddb clearing (handle_branch_refused:128 calls);0.293445;0.024118;0.317678;193208;96396 +4396/11678;Shell_operation: Ddb clearing (handle_branch_delayed:64 calls);0.300222;0.020014;0.320336;192948;96140 +4397/11678;Shell_operation: Ddb clearing (handle_branch_delayed:128 calls);0.299561;0.023964;0.323628;193204;96396 +4398/11678;tezos-shell: test validator (pushing_validator_protocol);0.292684;0.050764;0.343488;194332;116968 +4399/11678;tezos-shell: test validator (previously_validated_protocol);0.295303;0.019952;0.315377;193204;96532 +4400/11678;tezos-shell: test validator (fetching_protocol);0.274954;0.043833;0.318889;193204;96328 +4401/11678;Prevalidator_pending_operations: iter ordering (Ensure that iter returns operations in their priority ordering);0.321001;0.024075;0.345188;204856;108100 +4402/11678;Prevalidator_pending_operations: fold ordering (Ensure that fold returns operations in their priority ordering);0.328976;0.012035;0.341167;203064;106232 +4403/11678;Prevalidator_pending_operations: fold_es ordering (Ensure that fold_es returns operations in their priority ordering);0.319818;0.01599;0.335914;199860;102728 +4404/11678;Prevalidator_pending_operations: partial fold_es (Test cardinal after partial iteration with fold_es);0.321578;0.028138;0.34982;205880;109124 +4405/11678;Prevalidator: handle_operations ([handle_live_operations] is a subset of alive blocks);1.86383;0.039996;1.90393;320108;223296 +4406/11678;Prevalidator: handle_operations ([handle_live_operations] path specification);2.00303;0.051974;2.05509;309740;213052 +4407/11678;Prevalidator: handle_operations ([handle_live_operations] clear approximation);2.1669;0.039979;2.20701;312168;215716 +4408/11678;Prevalidator: handle_operations ([handle_live_operations] inject approximation);1.70672;0.067948;1.77477;305384;208700 +4409/11678;Prevalidator: recycle_operations ([recycle_operations ~live_blocks:empty] is empty);2.10282;0.047973;2.15091;313192;216644 +4410/11678;Prevalidator: recycle_operations ([recycle_operations] returned value can be approximated);2.01391;0.076072;2.09011;319208;222532 +4411/11678;Prevalidator: recycle_operations ([recycle_operations] correctly trims its input classification);2.35869;0.039977;2.39877;312808;216388 +4412/11678;Prevalidator_classification: flush ([flush ~handle_branch_refused:true] empties everything except [refused] and [outdated]);0.300517;0.028048;0.328662;193080;96140 +4413/11678;Prevalidator_classification: flush ([flush ~handle_branch_refused:false] empties everything except [refused], [outdated] and [branch_refused]);0.296105;0.032011;0.328245;193084;96396 +4414/11678;Prevalidator_classification: is_in_mempool ([is_in_mempool] and [remove_*] are well-behaved);0.289537;0.03217;0.321798;192868;96392 +4415/11678;Prevalidator_classification: unparsable ([is_known_unparsable oph (add_unparsable oph t)] holds);0.286635;0.03981;0.326559;192948;96140 +4416/11678;Prevalidator_classification: unparsable ([is_known_unparsable _ (flush t)] does not hold);0.299131;0.027918;0.327151;193076;96324 +4417/11678;Prevalidator_classification: invariants (invariants are preserved through any sequence of events (provided we do not [add] already present operations));0.627031;0.043932;0.671089;232832;136264 +4418/11678;Prevalidator_classification: bounded (When more error operations than the size limit are added, then the first operations are discarded);0.313258;0.028112;0.341484;196792;99908 +4419/11678;Prevalidator_classification: to_map ([to_map_all (create params)] is empty);0.282869;0.031872;0.314847;193336;96396 +4420/11678;Prevalidator_classification: to_map ([add] extends the size of [to_map] by 0 or 1);0.29083;0.027887;0.318813;193208;96392 +4421/11678;Prevalidator_classification: to_map ([remove] reduces the size of [to_map] by 0 or 1);0.307928;0.015996;0.324031;192948;96224 +4422/11678;Prevalidator_classification: to_map (Check property between map, remove and add (1));0.342452;0.027874;0.370442;206392;109380 +4423/11678;Prevalidator_classification: to_map (Check property between map, remove and add (2));0.297588;0.02815;0.325872;193080;96276 +4424/11678;Prevalidator_classification: to_map ([flush] can be emulated by [to_map ~refused:true ..]);0.296523;0.032056;0.32868;192952;96140 +4425/11678;Prevalidator_classification: to_map ([is_in_mempool] can be emulated by [to_map]);0.29407;0.02417;0.318322;192916;96212 +4426/11678;Prevalidator_classification: to_map ([to_map] returns an empty map if all parameters are set to [false]);0.290947;0.03587;0.326919;193212;96396 +4427/11678;Prevalidator_classification: is_empty ([is_empty (create params)] holds);0.286833;0.035854;0.322795;192952;96132 +4428/11678;Prevalidator_classification: is_empty ([not (is_empty (add _ _ _ t))] holds);0.299909;0.015995;0.316021;192952;96140 +4429/11678;Shell: Mempool bounding: add/remove (empty state);0.276368;0.048064;0.324545;193080;96396 +4430/11678;Shell: Mempool bounding: add/remove (random state);0.315421;0.011978;0.327505;193084;96324 +4431/11678;Shell: Mempool bounding: add/remove (random full state);0.308418;0.020027;0.328565;193208;96324 +4432/11678;Shell: Mempool bounding: add to full state (full cardinal);0.304563;0.016029;0.320703;192948;96144 +4433/11678;Shell: Mempool bounding: add to (almost) full state (full bytes);0.316513;0.008013;0.324635;193204;96324 +4434/11678;Shell: Mempool bounding: add to full state (full cardinal and full bytes);0.285691;0.03219;0.317991;193340;96392 +4435/11678;Shell: Mempool prevalidation: create;0.284837;0.032094;0.31703;193208;96444 +4436/11678;Shell: Mempool prevalidation: add_operation;0.28328;0.035908;0.319309;193208;96248 +4437/11678;Shell: Mempool prevalidation: remove_operation;0.295118;0.023928;0.319151;193208;96424 +4438/11678;Peer_validator: Validate_new_head (Clear the db is the fitness does not increase);0.300116;0.024009;0.324233;193076;96228 +4439/11678;tezos-shell: test node (node_sandbox_initialization_events);0.364819;0.028063;0.393024;284428;184044 +4440/11678;tezos-shell: test node (node_initialization_events);0.369794;0.028136;0.398051;281276;180560 +4441/11678;tezos-shell: consensus heuristic sync (create_state_init_1);0.292081;0.024006;0.316199;193336;96396 +4442/11678;tezos-shell: consensus heuristic sync (create_state_bad_threshold);0.274581;0.039794;0.314487;193076;96140 +4443/11678;tezos-shell: consensus heuristic sync (create_state_bad_expected);0.280275;0.044043;0.324443;192820;96140 +4444/11678;tezos-shell: consensus heuristic sync (create_consensus);0.278326;0.03976;0.318223;193080;96396 +4445/11678;tezos-shell: consensus heuristic sync (create_no_consensus);0.291915;0.027991;0.32;192728;96248 +4446/11678;tezos-shell: consensus heuristic sync (job failed);0.279624;0.039946;0.319677;193080;96320 +4447/11678;tezos-shell: consensus heuristic sync (job canceled);0.297743;0.024141;0.32199;193076;96140 +4448/11678;tezos-shell: consensus heuristic sync (job return hash);0.296444;0.02003;0.316591;192948;96140 +4449/11678;tezos-shell: consensus heuristic sync (job sleep);0.298206;0.023856;0.322163;193080;96140 +4450/11678;tezos-shell: consensus heuristic sync (job protected);0.282634;0.035826;0.31861;193208;96364 +4451/11678;tezos-shell: consensus heuristic sync (worker canceled);0.286406;0.031822;0.318391;192952;96140 +4452/11678;tezos-shell: consensus heuristic (job return no consensus);0.294373;0.031824;0.3263;193204;96328 +4453/11678;tezos-shell: consensus heuristic (job return need more canddidates);0.302553;0.015923;0.318576;193204;96320 +4454/11678;tezos-shell: consensus heuristic (job age limit twice);0.287773;0.027978;1.31727;192952;96140 +4455/11678;tezos-shell: consensus heuristic (job on next consensus_1);0.286081;0.032234;0.318422;192948;96140 +4456/11678;tezos-shell: consensus heuristic (job on next consensus_2);0.284244;0.032027;0.316371;192952;96140 +4457/11678;tezos-shell: consensus heuristic (job on next consensus_3);0.308366;0.012014;0.320538;193208;96252 +4458/11678;tezos-shell: consensus heuristic (job on all consensus_1);0.290804;0.023901;0.314804;193080;96292 +4459/11678;tezos-shell: consensus heuristic (job on all consensus_2);0.299302;0.015962;0.315378;192952;96392 +4460/11678;tezos-shell: consensus heuristic (job on all consensus_3);0.280557;0.036071;1.31724;193076;96136 +4461/11678;test lib scoru wasm: WASM VM (Test eval_has_finished: padding (2.0.0));0.309141;0.008029;0.317273;193460;96392 +4462/11678;test lib scoru wasm: WASM VM (Test set_input_state: padding (2.0.0));0.287391;0.035923;0.323426;193468;96396 +4463/11678;test lib scoru wasm: WASM VM (Test set_input_state: update last input info (2.0.0));0.284749;0.032084;0.316983;193208;96208 +4464/11678;test lib scoru wasm: WASM VM (Test eval_has_finished: padding (2.0.0-r1));0.282336;0.031812;0.314325;193588;96284 +4465/11678;test lib scoru wasm: WASM VM (Test set_input_state: padding (2.0.0-r1));0.30234;0.01989;0.322354;193340;96196 +4466/11678;test lib scoru wasm: WASM VM (Test set_input_state: update last input info (2.0.0-r1));0.297491;0.0201;0.317765;193468;96416 +4467/11678;test lib scoru wasm: WASM VM (Test eval_has_finished: padding (2.0.0-r2));0.28638;0.027842;0.314331;193336;96136 +4468/11678;test lib scoru wasm: WASM VM (Test set_input_state: padding (2.0.0-r2));0.28331;0.039902;0.323322;193336;96396 +4469/11678;test lib scoru wasm: WASM VM (Test set_input_state: update last input info (2.0.0-r2));0.281292;0.036166;0.317555;193204;96140 +4470/11678;test lib scoru wasm: WASM PVM Encodings (Wasm_pvm_errors);0.282682;0.035833;0.318609;193160;96348 +4471/11678;test lib scoru wasm: WASM PVM (Test __internal_store_get_hash available (2.0.0));0.274674;0.043788;0.318564;193468;96140 +4472/11678;test lib scoru wasm: WASM PVM (Test store_delete_value available (2.0.0));0.27755;0.040224;0.317878;193716;96396 +4473/11678;test lib scoru wasm: WASM PVM (Test store_create available (2.0.0));0.277876;0.040271;0.318251;193336;96140 +4474/11678;test lib scoru wasm: WASM PVM (Test unreachable kernel (tick per tick) (2.0.0));8.68529;0.035988;8.72282;223156;126280 +4475/11678;test lib scoru wasm: WASM PVM (Test unreachable kernel (10 ticks at a time) (2.0.0));1.43828;0.035956;1.47434;223292;126528 +4476/11678;test lib scoru wasm: WASM PVM (Test unreachable kernel (in one go) (2.0.0));0.319646;0.023973;0.343715;193080;96140 +4477/11678;test lib scoru wasm: WASM PVM (Test write_debug kernel (2.0.0));0.281121;0.04016;0.321391;193240;96392 +4478/11678;test lib scoru wasm: WASM PVM (Test store-has kernel (2.0.0));0.298186;0.023854;0.322142;193588;96396 +4479/11678;test lib scoru wasm: WASM PVM (Test store-list-size kernel (2.0.0));0.284512;0.032057;0.316686;193464;96140 +4480/11678;test lib scoru wasm: WASM PVM (Test store-delete kernel (2.0.0));0.280503;0.040071;0.320673;193468;96140 +4481/11678;test lib scoru wasm: WASM PVM (Test store-move kernel (2.0.0));0.292077;0.024006;0.316201;193588;96328 +4482/11678;test lib scoru wasm: WASM PVM (Test store-copy kernel (2.0.0));0.287116;0.035889;0.323182;193588;96248 +4483/11678;test lib scoru wasm: WASM PVM (Test modifying read-only storage fails (2.0.0));0.28216;0.043714;0.326187;193332;96424 +4484/11678;test lib scoru wasm: WASM PVM (Test snapshotable state (2.0.0));0.281091;0.040155;0.321367;193332;96396 +4485/11678;test lib scoru wasm: WASM PVM (Test rebuild snapshotable state (2.0.0));0.297483;0.02412;0.321716;193460;96140 +4486/11678;test lib scoru wasm: WASM PVM (Test Stuck state is truncated on long messages (2.0.0));0.287659;0.031962;0.31973;193332;96140 +4487/11678;test lib scoru wasm: WASM PVM (Test bulk no-ops function properly (2.0.0));0.408811;0.028055;0.436981;201656;104524 +4488/11678;test lib scoru wasm: WASM PVM (Test durable store io (2.0.0));0.299504;0.02396;0.323575;193720;96396 +4489/11678;test lib scoru wasm: WASM PVM (Test /readonly/kernel/env/reboot_counter (2.0.0));0.303524;0.019968;0.323605;193592;96140 +4490/11678;test lib scoru wasm: WASM PVM (Test reboot (2.0.0));0.315905;0.007997;0.324004;193464;96328 +4491/11678;test lib scoru wasm: WASM PVM (Test reboot takes too many reboots (2.0.0));0.317617;0.012061;0.329783;193464;96140 +4492/11678;test lib scoru wasm: WASM PVM (Test kernel upgrade ok (2.0.0));0.287481;0.039927;0.327515;193460;96140 +4493/11678;test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on decoding error (2.0.0));0.288182;0.03202;0.320312;193460;96100 +4494/11678;test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on linking error (2.0.0));0.303295;0.027935;0.331346;193464;96324 +4495/11678;test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on initing error (2.0.0));0.276295;0.044047;0.320454;193468;96136 +4496/11678;test lib scoru wasm: WASM PVM (Test scheduling with 10 inputs in a unique inbox (2.0.0));0.2889;0.0321;0.321091;193428;96260 +4497/11678;test lib scoru wasm: WASM PVM (Test scheduling with 5 inboxes with a different input number (2.0.0));0.295559;0.023964;0.319633;193464;96396 +4498/11678;test lib scoru wasm: WASM PVM (Test inbox clean-up (2.0.0));0.323273;0.027937;0.351392;193296;96216 +4499/11678;test lib scoru wasm: WASM PVM (Test outboxes are created at each level (2.0.0));0.28506;0.036134;0.32132;193332;96140 +4500/11678;test lib scoru wasm: WASM PVM (Test outbox validity period clean-up (2.0.0));0.279695;0.039956;0.31974;193296;96396 +4501/11678;test lib scoru wasm: WASM PVM (Test __internal_store_get_hash available (2.0.0-r1));0.303765;0.019984;0.323857;193332;96292 +4502/11678;test lib scoru wasm: WASM PVM (Test store_delete_value available (2.0.0-r1));0.288262;0.028025;0.316388;193336;96104 +4503/11678;test lib scoru wasm: WASM PVM (Test store_create available (2.0.0-r1));0.286679;0.035834;0.322632;193464;96396 +4504/11678;test lib scoru wasm: WASM PVM (Test unreachable kernel (tick per tick) (2.0.0-r1));8.77486;0.039994;8.81496;223156;126532 +4505/11678;test lib scoru wasm: WASM PVM (Test unreachable kernel (10 ticks at a time) (2.0.0-r1));1.45261;0.040016;1.49272;223164;126284 +4506/11678;test lib scoru wasm: WASM PVM (Test unreachable kernel (in one go) (2.0.0-r1));0.323653;0.019978;0.343722;193336;96392 +4507/11678;test lib scoru wasm: WASM PVM (Test write_debug kernel (2.0.0-r1));0.279073;0.039867;0.319043;193592;96388 +4508/11678;test lib scoru wasm: WASM PVM (Test store-has kernel (2.0.0-r1));0.296325;0.032035;0.328462;193720;96212 +4509/11678;test lib scoru wasm: WASM PVM (Test store-list-size kernel (2.0.0-r1));0.303252;0.01596;0.319324;193464;96140 +4510/11678;test lib scoru wasm: WASM PVM (Test store-delete kernel (2.0.0-r1));0.298366;0.027847;0.326325;193464;96140 +4511/11678;test lib scoru wasm: WASM PVM (Test store-move kernel (2.0.0-r1));0.289837;0.028178;0.318207;193460;96136 +4512/11678;test lib scoru wasm: WASM PVM (Test store-copy kernel (2.0.0-r1));0.287521;0.03594;0.323564;193596;96400 +4513/11678;test lib scoru wasm: WASM PVM (Test modifying read-only storage fails (2.0.0-r1));0.279375;0.03991;0.319385;193464;96140 +4514/11678;test lib scoru wasm: WASM PVM (Test snapshotable state (2.0.0-r1));0.291037;0.031894;0.323041;193336;96392 +4515/11678;test lib scoru wasm: WASM PVM (Test rebuild snapshotable state (2.0.0-r1));0.299822;0.01599;0.31589;193320;96232 +4516/11678;test lib scoru wasm: WASM PVM (Test Stuck state is truncated on long messages (2.0.0-r1));0.286581;0.031842;0.318524;193332;96140 +4517/11678;test lib scoru wasm: WASM PVM (Test bulk no-ops function properly (2.0.0-r1));0.391411;0.047927;0.439443;201656;104516 +4518/11678;test lib scoru wasm: WASM PVM (Test durable store io (2.0.0-r1));0.285691;0.03219;0.31798;193460;96136 +4519/11678;test lib scoru wasm: WASM PVM (Test /readonly/kernel/env/reboot_counter (2.0.0-r1));0.273312;0.048231;0.321737;193208;96284 +4520/11678;test lib scoru wasm: WASM PVM (Test reboot (2.0.0-r1));0.295815;0.027982;0.323897;193464;96136 +4521/11678;test lib scoru wasm: WASM PVM (Test reboot takes too many reboots (2.0.0-r1));0.311095;0.015953;0.32715;193468;96140 +4522/11678;test lib scoru wasm: WASM PVM (Test kernel upgrade ok (2.0.0-r1));0.296816;0.024066;0.320979;193464;96136 +4523/11678;test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on decoding error (2.0.0-r1));0.29683;0.024067;0.321002;193592;96396 +4524/11678;test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on linking error (2.0.0-r1));0.299753;0.02398;0.323855;193336;96140 +4525/11678;test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on initing error (2.0.0-r1));0.288067;0.032007;0.320196;193460;96084 +4526/11678;test lib scoru wasm: WASM PVM (Test scheduling with 10 inputs in a unique inbox (2.0.0-r1));0.293012;0.024083;0.317223;193336;96140 +4527/11678;test lib scoru wasm: WASM PVM (Test scheduling with 5 inboxes with a different input number (2.0.0-r1));0.288798;0.028077;0.316998;193332;96140 +4528/11678;test lib scoru wasm: WASM PVM (Test inbox clean-up (2.0.0-r1));0.297134;0.020076;0.31731;193336;96312 +4529/11678;test lib scoru wasm: WASM PVM (Test outboxes are created at each level (2.0.0-r1));0.284794;0.040111;0.325024;193464;96140 +4530/11678;test lib scoru wasm: WASM PVM (Test outbox validity period clean-up (2.0.0-r1));0.283869;0.035983;0.319946;193460;96088 +4531/11678;test lib scoru wasm: WASM PVM (Test __internal_store_get_hash available (2.0.0-r2));0.297548;0.020104;0.317756;193332;96136 +4532/11678;test lib scoru wasm: WASM PVM (Test store_delete_value available (2.0.0-r2));0.290721;0.031859;0.322679;193468;96140 +4533/11678;test lib scoru wasm: WASM PVM (Test store_create available (2.0.0-r2));0.29816;0.023852;0.322114;193492;96140 +4534/11678;test lib scoru wasm: WASM PVM (Test unreachable kernel (tick per tick) (2.0.0-r2));8.75482;0.035995;8.79097;223416;126528 +4535/11678;test lib scoru wasm: WASM PVM (Test unreachable kernel (10 ticks at a time) (2.0.0-r2));1.44609;0.031957;1.47816;223156;126188 +4536/11678;test lib scoru wasm: WASM PVM (Test unreachable kernel (in one go) (2.0.0-r2));0.296749;0.048121;0.344978;193204;96396 +4537/11678;test lib scoru wasm: WASM PVM (Test write_debug kernel (2.0.0-r2));0.284706;0.032079;0.316907;193596;96300 +4538/11678;test lib scoru wasm: WASM PVM (Test store-has kernel (2.0.0-r2));0.296699;0.028066;0.324927;193588;96264 +4539/11678;test lib scoru wasm: WASM PVM (Test store-list-size kernel (2.0.0-r2));0.300095;0.016005;0.316257;193720;96268 +4540/11678;test lib scoru wasm: WASM PVM (Test store-delete kernel (2.0.0-r2));0.289291;0.028125;0.317596;193592;96108 +4541/11678;test lib scoru wasm: WASM PVM (Test store-move kernel (2.0.0-r2));0.294924;0.023912;0.31894;193464;96136 +4542/11678;test lib scoru wasm: WASM PVM (Test store-copy kernel (2.0.0-r2));0.30202;0.019869;0.322147;193592;96340 +4543/11678;test lib scoru wasm: WASM PVM (Test modifying read-only storage fails (2.0.0-r2));0.301147;0.016061;0.31731;193468;96140 +4544/11678;test lib scoru wasm: WASM PVM (Test snapshotable state (2.0.0-r2));0.285238;0.032139;0.317517;193332;96324 +4545/11678;test lib scoru wasm: WASM PVM (Test rebuild snapshotable state (2.0.0-r2));0.295856;0.01999;0.315957;193204;96140 +4546/11678;test lib scoru wasm: WASM PVM (Test Stuck state is truncated on long messages (2.0.0-r2));0.294467;0.027855;0.322471;193464;96104 +4547/11678;test lib scoru wasm: WASM PVM (Test bulk no-ops function properly (2.0.0-r2));0.413148;0.028078;0.44137;201912;104560 +4548/11678;test lib scoru wasm: WASM PVM (Test durable store io (2.0.0-r2));0.278619;0.043783;0.322504;193464;96140 +4549/11678;test lib scoru wasm: WASM PVM (Test /readonly/kernel/env/reboot_counter (2.0.0-r2));0.306936;0.01993;0.326978;193588;96388 +4550/11678;test lib scoru wasm: WASM PVM (Test reboot (2.0.0-r2));0.287306;0.031922;0.319333;193464;96136 +4551/11678;test lib scoru wasm: WASM PVM (Test reboot takes too many reboots (2.0.0-r2));0.295144;0.031907;0.32715;193592;96396 +4552/11678;test lib scoru wasm: WASM PVM (Test kernel upgrade ok (2.0.0-r2));0.299203;0.023936;0.323244;193588;96396 +4553/11678;test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on decoding error (2.0.0-r2));0.295285;0.031922;0.327365;193464;96268 +4554/11678;test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on linking error (2.0.0-r2));0.291805;0.031978;0.323886;193340;96140 +4555/11678;test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on initing error (2.0.0-r2));0.286407;0.0358;0.322311;193460;96144 +4556/11678;test lib scoru wasm: WASM PVM (Test scheduling with 10 inputs in a unique inbox (2.0.0-r2));0.284824;0.032092;0.31702;193336;96140 +4557/11678;test lib scoru wasm: WASM PVM (Test scheduling with 5 inboxes with a different input number (2.0.0-r2));0.291707;0.031967;0.323839;193464;96304 +4558/11678;test lib scoru wasm: WASM PVM (Test inbox clean-up (2.0.0-r2));0.307068;0.015951;0.323172;193336;96376 +4559/11678;test lib scoru wasm: WASM PVM (Test outboxes are created at each level (2.0.0-r2));0.30092;0.020061;0.321089;193592;96136 +4560/11678;test lib scoru wasm: WASM PVM (Test outbox validity period clean-up (2.0.0-r2));0.296481;0.020032;0.316631;193460;96100 +4561/11678;test lib scoru wasm: WASM Encodings (Instruction roundtrip);0.291472;0.027949;0.319566;193204;96136 +4562/11678;test lib scoru wasm: WASM Encodings (Module roundtrip);1.20895;0.048037;1.2571;226108;129340 +4563/11678;test lib scoru wasm: WASM Encodings (Module trees);1.15972;0.035991;1.19584;228804;132060 +4564/11678;test lib scoru wasm: WASM Encodings (Values tree);0.579759;0.059975;0.639833;226684;129824 +4565/11678;test lib scoru wasm: WASM Encodings (Admin_instr trees);0.304413;0.020027;0.324551;193080;96196 +4566/11678;test lib scoru wasm: WASM Encodings (Input and output buffers trees);7.86175;0.420093;8.28212;1032460;936644 +4567/11678;test lib scoru wasm: WASM Encodings (Frame trees);0.28816;0.040022;0.328304;193076;96332 +4568/11678;test lib scoru wasm: WASM Encodings (Config trees);1.64174;0.044046;1.68587;253576;156736 +4569/11678;test lib scoru wasm: Reveal (Test reveal_preimage with preimage length below max_bytes (2.0.0));0.302484;0.0199;0.322496;193468;96136 +4570/11678;test lib scoru wasm: Reveal (Test reveal_preimage with preimage length above max_bytes (2.0.0));0.298817;0.027889;0.32681;193592;96396 +4571/11678;test lib scoru wasm: Reveal (Test reveal_metadata (2.0.0));0.291286;0.027931;0.319325;193468;96140 +4572/11678;test lib scoru wasm: Reveal (Test reveal_preimage with Fast Exec (2.0.0));0.295537;0.027956;0.3201;199224;99660 +4573/11678;test lib scoru wasm: Reveal (Test reveal_preimage with preimage length below max_bytes (2.0.0-r1));0.288726;0.02807;0.316899;193596;96328 +4574/11678;test lib scoru wasm: Reveal (Test reveal_preimage with preimage length above max_bytes (2.0.0-r1));0.288129;0.028012;0.316245;193592;96396 +4575/11678;test lib scoru wasm: Reveal (Test reveal_metadata (2.0.0-r1));0.298348;0.019889;0.318405;193592;96252 +4576/11678;test lib scoru wasm: Reveal (Test reveal_preimage with Fast Exec (2.0.0-r1));0.277783;0.040258;0.315315;199352;99400 +4577/11678;test lib scoru wasm: Reveal (Test reveal_preimage with preimage length below max_bytes (2.0.0-r2));0.298975;0.027904;0.326986;193588;96140 +4578/11678;test lib scoru wasm: Reveal (Test reveal_preimage with preimage length above max_bytes (2.0.0-r2));0.282764;0.043808;0.326671;193336;96140 +4579/11678;test lib scoru wasm: Reveal (Test reveal_metadata (2.0.0-r2));0.299472;0.019964;0.319542;193716;96400 +4580/11678;test lib scoru wasm: Reveal (Test reveal_preimage with Fast Exec (2.0.0-r2));0.292511;0.036563;0.325855;199348;100044 +4581/11678;test lib scoru wasm: Protocol migration (protocol migration message handling by the WASM PVM (Nairobi));0.279566;0.039938;0.319609;193336;96140 +4582/11678;test lib scoru wasm: Protocol migration (protocol migration message handling by the WASM PVM (Proto_alpha));0.313014;0.012039;0.325166;193468;96396 +4583/11678;test lib scoru wasm: Parser Encodings (Byte_vector);0.309901;0.012074;0.322129;192908;96056 +4584/11678;test lib scoru wasm: Parser Encodings (Vec);0.298698;0.031861;0.330678;193336;96396 +4585/11678;test lib scoru wasm: Parser Encodings (LazyVec);0.292892;0.03611;0.329107;192956;96140 +4586/11678;test lib scoru wasm: Parser Encodings (Names);0.292767;0.024063;0.316938;193076;96140 +4587/11678;test lib scoru wasm: Parser Encodings (Func_type);0.318526;0.015926;0.334557;193080;96108 +4588/11678;test lib scoru wasm: Parser Encodings (Imports);0.298243;0.027836;0.326259;192956;96140 +4589/11678;test lib scoru wasm: Parser Encodings (LazyStack);0.298756;0.027883;0.32674;192952;96208 +4590/11678;test lib scoru wasm: Parser Encodings (Exports);0.299805;0.023984;0.323894;192952;96192 +4591/11678;test lib scoru wasm: Parser Encodings (Instr_block);0.279341;0.035915;0.315359;192956;96140 +4592/11678;test lib scoru wasm: Parser Encodings (Block);0.315969;0.007999;0.324071;193080;96136 +4593/11678;test lib scoru wasm: Parser Encodings (Size);0.285109;0.032124;0.317334;193080;96212 +4594/11678;test lib scoru wasm: Parser Encodings (Code);0.310431;0.027859;0.338461;194228;97472 +4595/11678;test lib scoru wasm: Parser Encodings (Elem);0.303717;0.019981;0.323802;193080;96144 +4596/11678;test lib scoru wasm: Parser Encodings (Data);0.285326;0.032149;0.3176;193204;96396 +4597/11678;test lib scoru wasm: Parser Encodings (Field);4.33275;0.056009;4.3889;463220;366916 +4598/11678;test lib scoru wasm: Parser Encodings (Field.Packed);0.285095;0.032123;0.317325;193336;96396 +4599/11678;test lib scoru wasm: Parser Encodings (Module);1.46408;0.048002;1.51222;315292;218432 +4600/11678;test lib scoru wasm: Output (Host write (2.0.0));0.289496;0.032166;0.321768;193076;96140 +4601/11678;test lib scoru wasm: Output (Write_output: Push message above the limit (2.0.0));0.293182;0.024097;0.317387;193084;96140 +4602/11678;test lib scoru wasm: Output (Host write (2.0.0-r1));0.293591;0.02413;0.317822;193208;96144 +4603/11678;test lib scoru wasm: Output (Write_output: Push message above the limit (2.0.0-r1));0.281243;0.036159;0.317517;193080;96136 +4604/11678;test lib scoru wasm: Output (Host write (2.0.0-r2));0.30395;0.015997;0.320049;192952;96136 +4605/11678;test lib scoru wasm: Output (Write_output: Push message above the limit (2.0.0-r2));0.292214;0.024017;0.31634;192952;96140 +4606/11678;test lib scoru wasm: Output (Output buffer);7.79502;0.419947;8.21518;1001912;906452 +4607/11678;test lib scoru wasm: Output (Aux_write_output);0.296856;0.020057;0.317013;193076;96320 +4608/11678;test lib scoru wasm: Output (Push message below the limit);0.290741;0.027879;0.31872;192952;96136 +4609/11678;test lib scoru wasm: Output (Push message at the limit);0.282371;0.031816;0.314299;192948;96144 +4610/11678;test lib scoru wasm: Output (Push message above the limit);0.298463;0.027856;0.326432;193080;96392 +4611/11678;test lib scoru wasm: Output (Write_output: push messages bigger than the protocol limit);0.280489;0.036062;0.31669;193208;96248 +4612/11678;test lib scoru wasm: Input (Host read input (2.0.0));0.280652;0.036083;0.316838;193204;96228 +4613/11678;test lib scoru wasm: Input (Host read input (2.0.0-r1));0.305057;0.020069;0.325229;193080;96140 +4614/11678;test lib scoru wasm: Input (Host read input (2.0.0-r2));0.296815;0.024066;0.320984;193212;96396 +4615/11678;test lib scoru wasm: Input (Write input);0.276785;0.040113;0.316975;192920;96396 +4616/11678;test lib scoru wasm: Input (Read input);0.286047;0.031783;0.317993;192952;96140 +4617/11678;test lib scoru wasm: Input (Read input no messages);0.286454;0.031828;0.318446;193076;96376 +4618/11678;test lib scoru wasm: Input (Write input info at invalid address doesn't dequeue the input);0.279136;0.035889;0.315127;192952;96144 +4619/11678;test lib scoru wasm: Input (Write input info beyond memory bounds doesn't dequeue the input);0.299404;0.027944;0.327457;193204;96396 +4620/11678;test lib scoru wasm: Input (Write input at invalid address doesn't dequeue the input);0.280302;0.044047;0.324462;193080;96396 +4621/11678;test lib scoru wasm: Input (Write input beyond memory bounds doesn't dequeue the input);0.282418;0.031821;0.314343;193080;96292 +4622/11678;test lib scoru wasm: Input (Payload bigger than max size constant are truncated);0.2787;0.035832;0.314636;193332;96580 +4623/11678;test lib scoru wasm: Input (Payload bigger and expected max size constant are truncated);0.289636;0.024136;0.31387;193460;96580 +4624/11678;test lib scoru wasm: Module Initialisation (init requires memory 0 export (2.0.0));0.282798;0.03983;0.32275;193208;96140 +4625/11678;test lib scoru wasm: Module Initialisation (names are limited to 512 bytes (2.0.0));0.302288;0.015909;0.318322;193464;96424 +4626/11678;test lib scoru wasm: Module Initialisation (imports only PVM host functions (2.0.0));0.292735;0.02406;0.316907;193592;96396 +4627/11678;test lib scoru wasm: Module Initialisation (host functions are restricted in start (2.0.0));0.300514;0.024041;0.32468;193460;96140 +4628/11678;test lib scoru wasm: Module Initialisation (Check not found `kernel_run` error (2.0.0));0.282759;0.035842;0.318711;193464;96400 +4629/11678;test lib scoru wasm: Module Initialisation (Check `kernel_run` not being a function error (2.0.0));0.295065;0.027911;0.323093;193340;96144 +4630/11678;test lib scoru wasm: Module Initialisation (32 bits float types are forbidden (2.0.0));0.291602;0.023967;0.315683;193468;96392 +4631/11678;test lib scoru wasm: Module Initialisation (64 bits float types are forbidden (2.0.0));0.263694;0.051939;0.315753;193332;96140 +4632/11678;test lib scoru wasm: Module Initialisation (float values are forbidden (2.0.0));0.288926;0.02809;0.317126;193464;96140 +4633/11678;test lib scoru wasm: Module Initialisation (init requires memory 0 export (2.0.0-r1));0.281477;0.032168;0.313746;193332;96140 +4634/11678;test lib scoru wasm: Module Initialisation (names are limited to 512 bytes (2.0.0-r1));0.292898;0.024073;0.317079;193464;96380 +4635/11678;test lib scoru wasm: Module Initialisation (imports only PVM host functions (2.0.0-r1));0.294274;0.027836;0.32226;193336;96140 +4636/11678;test lib scoru wasm: Module Initialisation (host functions are restricted in start (2.0.0-r1));0.28863;0.028061;0.316796;193464;96140 +4637/11678;test lib scoru wasm: Module Initialisation (Check not found `kernel_run` error (2.0.0-r1));0.284346;0.032039;0.316483;193340;96396 +4638/11678;test lib scoru wasm: Module Initialisation (Check `kernel_run` not being a function error (2.0.0-r1));0.293665;0.024136;0.31791;193208;96140 +4639/11678;test lib scoru wasm: Module Initialisation (32 bits float types are forbidden (2.0.0-r1));0.283049;0.039866;0.323019;193332;96140 +4640/11678;test lib scoru wasm: Module Initialisation (64 bits float types are forbidden (2.0.0-r1));0.303446;0.01597;0.319496;193144;96060 +4641/11678;test lib scoru wasm: Module Initialisation (float values are forbidden (2.0.0-r1));0.290848;0.031873;0.322889;193596;96260 +4642/11678;test lib scoru wasm: Module Initialisation (init requires memory 0 export (2.0.0-r2));0.295009;0.023919;0.319028;193460;96396 +4643/11678;test lib scoru wasm: Module Initialisation (names are limited to 512 bytes (2.0.0-r2));0.287757;0.031973;0.319854;193332;96396 +4644/11678;test lib scoru wasm: Module Initialisation (imports only PVM host functions (2.0.0-r2));0.300126;0.020008;0.320239;193464;96140 +4645/11678;test lib scoru wasm: Module Initialisation (host functions are restricted in start (2.0.0-r2));0.292435;0.028041;0.320623;193592;96268 +4646/11678;test lib scoru wasm: Module Initialisation (Check not found `kernel_run` error (2.0.0-r2));0.299484;0.015972;0.315555;193464;96140 +4647/11678;test lib scoru wasm: Module Initialisation (Check `kernel_run` not being a function error (2.0.0-r2));0.301414;0.012056;0.313651;193336;96408 +4648/11678;test lib scoru wasm: Module Initialisation (32 bits float types are forbidden (2.0.0-r2));0.294702;0.019912;0.314699;193220;96056 +4649/11678;test lib scoru wasm: Module Initialisation (64 bits float types are forbidden (2.0.0-r2));0.294891;0.02391;0.318902;193592;96324 +4650/11678;test lib scoru wasm: Module Initialisation (float values are forbidden (2.0.0-r2));0.301235;0.016065;0.317432;193464;96140 +4651/11678;test lib scoru wasm: Host functions ticks (Test tickified host function (2.0.0));0.309939;0.0161;0.326154;193460;96140 +4652/11678;test lib scoru wasm: Host functions ticks (Test tickified host function (2.0.0-r1));0.279169;0.035893;0.315176;193464;96140 +4653/11678;test lib scoru wasm: Host functions ticks (Test tickified host function (2.0.0-r2));0.288744;0.028072;0.316928;193280;96396 +4654/11678;test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 0 to 1,000) (2.0.0));3.35425;0.023987;3.37838;216756;120132 +4655/11678;test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 10,000 to 11,000) (2.0.0));11.9476;0.039998;11.9877;232268;135880 +4656/11678;test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 20,000 to 25,000) (2.0.0));5.5804;0.036002;5.61649;238588;141632 +4657/11678;test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 30,000 to 35,000) (2.0.0));16.1292;0.024001;16.1535;238588;141632 +4658/11678;test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 0 to 1,000) (2.0.0-r1));3.3553;0.031993;3.3874;217012;120136 +4659/11678;test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 10,000 to 11,000) (2.0.0-r1));12.2406;0.032001;12.2728;232572;135744 +4660/11678;test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 20,000 to 25,000) (2.0.0-r1));5.68638;0.035989;5.7225;238548;141836 +4661/11678;test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 30,000 to 35,000) (2.0.0-r1));16.0046;0.024;16.0288;238720;141952 +4662/11678;test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 0 to 1,000) (2.0.0-r2));3.45739;0.020008;3.4775;217012;120132 +4663/11678;test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 10,000 to 11,000) (2.0.0-r2));12.5281;0.032;12.5603;232012;135224 +4664/11678;test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 20,000 to 25,000) (2.0.0-r2));5.59662;0.040004;5.63674;238460;141888 +4665/11678;test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 30,000 to 35,000) (2.0.0-r2));15.7094;0.048004;15.7576;238592;141632 +4666/11678;test lib scoru wasm: Set/get (Get info (2.0.0));0.281571;0.036202;0.31786;192792;96296 +4667/11678;test lib scoru wasm: Set/get (Set input (2.0.0));0.291379;0.023948;0.315443;193084;96140 +4668/11678;test lib scoru wasm: Set/get (Get output (2.0.0));0.286747;0.027878;0.314735;192952;96140 +4669/11678;test lib scoru wasm: Set/get (Get info (2.0.0-r1));0.294283;0.027837;0.32223;192828;96320 +4670/11678;test lib scoru wasm: Set/get (Set input (2.0.0-r1));0.288646;0.032071;0.32083;192952;96140 +4671/11678;test lib scoru wasm: Set/get (Get output (2.0.0-r1));0.295403;0.027943;0.323477;192692;96396 +4672/11678;test lib scoru wasm: Set/get (Get info (2.0.0-r2));0.304405;0.012016;0.31653;193080;96136 +4673/11678;test lib scoru wasm: Set/get (Set input (2.0.0-r2));0.286252;0.031805;0.318172;193076;96140 +4674/11678;test lib scoru wasm: Set/get (Get output (2.0.0-r2));0.290956;0.027899;0.318994;193080;96396 +4675/11678;test lib scoru wasm: Max nb of ticks (nb of ticks limited (2.0.0));0.277294;0.040187;0.317585;193468;96392 +4676/11678;test lib scoru wasm: Max nb of ticks (evaluation takes fixed nb of ticks (2.0.0));0.280843;0.036108;0.317054;193204;96140 +4677/11678;test lib scoru wasm: Max nb of ticks (stuck in decode (2.0.0));0.295516;0.019967;0.315611;193332;96144 +4678/11678;test lib scoru wasm: Max nb of ticks (stuck in init (2.0.0));0.293306;0.032143;0.325565;193212;96320 +4679/11678;test lib scoru wasm: Max nb of ticks (nb of ticks limited (2.0.0-r1));0.276974;0.036127;0.31327;193204;96292 +4680/11678;test lib scoru wasm: Max nb of ticks (evaluation takes fixed nb of ticks (2.0.0-r1));0.297011;0.020068;0.317231;193336;96272 +4681/11678;test lib scoru wasm: Max nb of ticks (stuck in decode (2.0.0-r1));0.293494;0.024122;0.317726;193204;96212 +4682/11678;test lib scoru wasm: Max nb of ticks (stuck in init (2.0.0-r1));0.287929;0.035991;0.324025;193336;96396 +4683/11678;test lib scoru wasm: Max nb of ticks (nb of ticks limited (2.0.0-r2));0.297395;0.016075;0.313575;193592;96140 +4684/11678;test lib scoru wasm: Max nb of ticks (evaluation takes fixed nb of ticks (2.0.0-r2));0.301308;0.024104;0.325638;193340;96100 +4685/11678;test lib scoru wasm: Max nb of ticks (stuck in decode (2.0.0-r2));0.303246;0.01995;0.323311;193332;96396 +4686/11678;test lib scoru wasm: Max nb of ticks (stuck in init (2.0.0-r2));0.282998;0.043844;0.326997;193336;96168 +4687/11678;test lib scoru wasm: Durable storage (store_has missing key (2.0.0));0.291216;0.023935;0.31526;193212;96396 +4688/11678;test lib scoru wasm: Durable storage (store_has existing key (2.0.0));0.304218;0.020014;0.324338;193076;96136 +4689/11678;test lib scoru wasm: Durable storage (store_has key too long key (2.0.0));0.299661;0.019977;0.319751;193208;96392 +4690/11678;test lib scoru wasm: Durable storage (store_list_size counts subtrees (2.0.0));0.29435;0.023866;0.318329;193208;96144 +4691/11678;test lib scoru wasm: Durable storage (store_get_nth_key produces subtrees (2.0.0));0.293774;0.024145;0.318029;193208;96140 +4692/11678;test lib scoru wasm: Durable storage (store_delete removes subtree and value (2.0.0));0.281064;0.036136;0.317314;193080;96136 +4693/11678;test lib scoru wasm: Durable storage (store_copy (2.0.0));0.301184;0.020078;0.321386;192948;96140 +4694/11678;test lib scoru wasm: Durable storage (store_copy missing node (2.0.0));0.265707;0.04831;0.314126;193208;96396 +4695/11678;test lib scoru wasm: Durable storage (store_move (2.0.0));0.300701;0.020046;0.32086;193208;96396 +4696/11678;test lib scoru wasm: Durable storage (store_move missing node (2.0.0));0.293872;0.024153;0.31814;193208;96396 +4697/11678;test lib scoru wasm: Durable storage (store_read (2.0.0));0.299651;0.023972;0.323732;193080;96392 +4698/11678;test lib scoru wasm: Durable storage (store_read on non-value (2.0.0));0.289828;0.028177;0.31813;193208;96140 +4699/11678;test lib scoru wasm: Durable storage (store_write (2.0.0));0.288074;0.028007;0.316195;192872;96396 +4700/11678;test lib scoru wasm: Durable storage (store_value_size (2.0.0));0.284568;0.04008;0.324773;193080;96396 +4701/11678;test lib scoru wasm: Durable storage (store_get_hash (2.0.0));0.277677;0.040243;0.31802;193212;96392 +4702/11678;test lib scoru wasm: Durable storage (store_delete_value removes only value (2.0.0));0.285371;0.028135;0.313616;193076;96396 +4703/11678;test lib scoru wasm: Durable storage (store_create (2.0.0));0.300348;0.020023;0.320474;193080;96136 +4704/11678;test lib scoru wasm: Durable storage (store_exists (2.0.0));0.298787;0.023902;0.322799;192952;96136 +4705/11678;test lib scoru wasm: Durable storage (store_has missing key (2.0.0-r1));0.279598;0.039942;0.31964;193208;96300 +4706/11678;test lib scoru wasm: Durable storage (store_has existing key (2.0.0-r1));0.296284;0.020019;0.316405;193076;96140 +4707/11678;test lib scoru wasm: Durable storage (store_has key too long key (2.0.0-r1));0.300293;0.024023;0.324422;193080;96136 +4708/11678;test lib scoru wasm: Durable storage (store_list_size counts subtrees (2.0.0-r1));0.293423;0.024116;0.31764;193084;96140 +4709/11678;test lib scoru wasm: Durable storage (store_get_nth_key produces subtrees (2.0.0-r1));0.298986;0.015945;0.315034;193080;96140 +4710/11678;test lib scoru wasm: Durable storage (store_delete removes subtree and value (2.0.0-r1));0.302419;0.019896;0.322415;193076;96144 +4711/11678;test lib scoru wasm: Durable storage (store_copy (2.0.0-r1));0.302976;0.019932;0.323016;192948;96136 +4712/11678;test lib scoru wasm: Durable storage (store_copy missing node (2.0.0-r1));0.293077;0.024088;0.317264;193336;96396 +4713/11678;test lib scoru wasm: Durable storage (store_move (2.0.0-r1));0.295598;0.019972;0.315673;193204;96364 +4714/11678;test lib scoru wasm: Durable storage (store_move missing node (2.0.0-r1));0.279268;0.043885;0.323254;193080;96136 +4715/11678;test lib scoru wasm: Durable storage (store_read (2.0.0-r1));0.29235;0.028033;0.320513;193080;96140 +4716/11678;test lib scoru wasm: Durable storage (store_read on non-value (2.0.0-r1));0.285645;0.032185;0.318006;193080;96140 +4717/11678;test lib scoru wasm: Durable storage (store_write (2.0.0-r1));0.284283;0.032031;0.316428;193076;96140 +4718/11678;test lib scoru wasm: Durable storage (store_value_size (2.0.0-r1));0.295013;0.02392;0.319036;193212;96396 +4719/11678;test lib scoru wasm: Durable storage (store_get_hash (2.0.0-r1));0.297386;0.020093;0.317595;193084;96416 +4720/11678;test lib scoru wasm: Durable storage (store_delete_value removes only value (2.0.0-r1));0.278606;0.03582;0.314532;193076;96392 +4721/11678;test lib scoru wasm: Durable storage (store_create (2.0.0-r1));0.277449;0.036189;0.313735;193080;96324 +4722/11678;test lib scoru wasm: Durable storage (store_exists (2.0.0-r1));0.299235;0.023938;0.323279;192948;96140 +4723/11678;test lib scoru wasm: Durable storage (store_has missing key (2.0.0-r2));0.295128;0.019941;0.315174;193080;96136 +4724/11678;test lib scoru wasm: Durable storage (store_has existing key (2.0.0-r2));0.288452;0.028043;0.316614;193076;96392 +4725/11678;test lib scoru wasm: Durable storage (store_has key too long key (2.0.0-r2));0.288889;0.032098;0.321179;193204;96140 +4726/11678;test lib scoru wasm: Durable storage (store_list_size counts subtrees (2.0.0-r2));0.289445;0.03216;0.321759;192948;96040 +4727/11678;test lib scoru wasm: Durable storage (store_get_nth_key produces subtrees (2.0.0-r2));0.305188;0.020078;0.325379;193048;96252 +4728/11678;test lib scoru wasm: Durable storage (store_delete removes subtree and value (2.0.0-r2));0.292402;0.020027;0.312562;193208;96352 +4729/11678;test lib scoru wasm: Durable storage (store_copy (2.0.0-r2));0.294698;0.027876;0.322684;193204;96392 +4730/11678;test lib scoru wasm: Durable storage (store_copy missing node (2.0.0-r2));0.292818;0.028078;0.321001;193208;96140 +4731/11678;test lib scoru wasm: Durable storage (store_move (2.0.0-r2));0.298741;0.015932;0.314807;193076;96396 +4732/11678;test lib scoru wasm: Durable storage (store_move missing node (2.0.0-r2));0.281601;0.036205;0.317919;193080;96140 +4733/11678;test lib scoru wasm: Durable storage (store_read (2.0.0-r2));0.300979;0.020065;0.321151;193336;96368 +4734/11678;test lib scoru wasm: Durable storage (store_read on non-value (2.0.0-r2));0.29247;0.024038;0.316614;193084;96140 +4735/11678;test lib scoru wasm: Durable storage (store_write (2.0.0-r2));0.284979;0.03211;0.31719;193208;96232 +4736/11678;test lib scoru wasm: Durable storage (store_value_size (2.0.0-r2));0.288118;0.032013;0.320229;193080;96396 +4737/11678;test lib scoru wasm: Durable storage (store_get_hash (2.0.0-r2));0.296688;0.024055;0.320852;193080;96396 +4738/11678;test lib scoru wasm: Durable storage (store_delete_value removes only value (2.0.0-r2));0.300531;0.020035;0.320674;193084;96136 +4739/11678;test lib scoru wasm: Durable storage (store_create (2.0.0-r2));0.2876;0.031955;0.319633;193084;96396 +4740/11678;test lib scoru wasm: Durable storage (store_exists (2.0.0-r2));0.288734;0.028071;0.316914;192948;96140 +4741/11678;test lib scoru wasm: Durable storage (Durable: find value);0.292242;0.024019;0.316374;193080;96396 +4742/11678;test lib scoru wasm: Durable storage (Durable: count subtrees and list);0.283551;0.031949;0.315615;192816;96232 +4743/11678;test lib scoru wasm: Durable storage (Durable: invalid keys);0.28764;0.027965;0.315717;193080;96144 +4744/11678;test lib scoru wasm: Durable storage (Durable: readonly keys);0.293458;0.032159;0.325714;193208;96392 +4745/11678;test lib scoru wasm: Durable snapshot (Do several operations on durable);0.266609;0.04775;0.314469;193080;96100 +4746/11678;test lib scoru wasm: Durable snapshot (Descending distributed all operations. Initial size: 2000, 3000 operations);0.882478;0.119793;1.00238;705752;609848 +4747/11678;test lib scoru wasm: Durable snapshot (Uniformly distributed all operations. Initial size: 2000, 20000 operations);2.35942;0.167958;2.5275;1339992;1245232 +4748/11678;test lib scoru wasm: Durable snapshot (Uniformly distributed structural operations. Initial size: 2000, 3000 operations);0.824878;0.076081;0.901058;604016;507708 +4749/11678;test lib scoru wasm: Durable snapshot (Stress-test operation write_value_exn. Initial size: 1000, 2000 operations);0.845372;0.092149;0.937624;696404;600632 +4750/11678;test lib scoru wasm: Durable snapshot (Stress-test operation set_value_exn. Initial size: 1000, 2000 operations);0.684098;0.108015;0.792236;529648;433468 +4751/11678;test lib scoru wasm: Durable snapshot (Stress-test operation find_value. Initial size: 1000, 2000 operations);0.582223;0.051841;0.634224;401140;304700 +4752/11678;test lib scoru wasm: Durable snapshot (Stress-test operation read_value_exn. Initial size: 1000, 2000 operations);0.576223;0.064024;0.640377;406004;309564 +4753/11678;test lib scoru wasm: Durable snapshot (Stress-test operation find_value_exn. Initial size: 1000, 2000 operations);0.568178;0.060018;0.628302;404212;307776 +4754/11678;test lib scoru wasm: Durable snapshot (Stress-test operation delete. Initial size: 1000, 2000 operations);0.567975;0.067997;0.636073;409460;312892 +4755/11678;test lib scoru wasm: Durable snapshot (Stress-test operation copy_tree_exn. Initial size: 1000, 2000 operations);0.623526;0.075942;0.699597;428788;332348 +4756/11678;test lib scoru wasm: Durable snapshot (Stress-test operation move_tree_exn. Initial size: 1000, 2000 operations);0.632946;0.044065;0.677117;417968;321336 +4757/11678;test lib scoru wasm: Durable snapshot (Stress-test operation hash. Initial size: 1000, 2000 operations);0.583213;0.063913;0.647325;400624;304192 +4758/11678;test lib scoru wasm: Durable snapshot (Stress-test operation list. Initial size: 1000, 2000 operations);0.5642;0.064022;0.628361;394480;298300 +4759/11678;test lib scoru wasm: Durable snapshot (Stress-test operation count_subtrees. Initial size: 1000, 2000 operations);0.58931;0.03608;0.625485;403412;307112 +4760/11678;test lib scoru wasm: Durable snapshot (Stress-test operation substree_name_at. Initial size: 1000, 2000 operations);0.566137;0.067777;0.634036;401268;304696 +4761/11678;test lib scoru wasm: Durable snapshot (Stress-test operation hash_exn. Initial size: 1000, 2000 operations);0.584445;0.056042;0.640568;401732;305300 +4762/11678;test lib scoru wasm: Debug (debug on correct inputs and memory (2.0.0));0.308207;0.012008;0.320348;193080;96140 +4763/11678;test lib scoru wasm: Debug (debug on more than one memory (2.0.0));0.293878;0.02818;0.322163;193336;96144 +4764/11678;test lib scoru wasm: Debug (debug during init (2.0.0));0.288614;0.028059;0.316808;193076;96144 +4765/11678;test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid length) (2.0.0));0.301584;0.024126;0.32584;193336;96396 +4766/11678;test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid offset) (2.0.0));0.28667;0.035833;0.322636;192880;96396 +4767/11678;test lib scoru wasm: Debug (Check reading at invalid position of the memory doesn't fail and truncates if possible (2.0.0));0.517655;0.068218;0.585981;290612;194296 +4768/11678;test lib scoru wasm: Debug (debug on correct inputs and memory (2.0.0-r1));0.282574;0.035819;0.31852;193204;96396 +4769/11678;test lib scoru wasm: Debug (debug on more than one memory (2.0.0-r1));0.282341;0.035789;0.318295;193048;96220 +4770/11678;test lib scoru wasm: Debug (debug during init (2.0.0-r1));0.296668;0.024054;0.320827;193084;96140 +4771/11678;test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid length) (2.0.0-r1));0.303827;0.019988;0.323933;192824;96396 +4772/11678;test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid offset) (2.0.0-r1));0.273177;0.04419;0.317484;193284;96396 +4773/11678;test lib scoru wasm: Debug (Check reading at invalid position of the memory doesn't fail and truncates if possible (2.0.0-r1));0.552058;0.040004;0.592167;290640;194036 +4774/11678;test lib scoru wasm: Debug (debug on correct inputs and memory (2.0.0-r2));0.299546;0.019969;0.319629;193080;96140 +4775/11678;test lib scoru wasm: Debug (debug on more than one memory (2.0.0-r2));0.290752;0.031863;0.32273;193080;96140 +4776/11678;test lib scoru wasm: Debug (debug during init (2.0.0-r2));0.299148;0.015954;0.315212;193208;96396 +4777/11678;test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid length) (2.0.0-r2));0.290551;0.031841;0.322507;193084;96140 +4778/11678;test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid offset) (2.0.0-r2));0.305386;0.016072;0.321569;193076;96140 +4779/11678;test lib scoru wasm: Debug (Check reading at invalid position of the memory doesn't fail and truncates if possible (2.0.0-r2));0.539108;0.051914;0.591125;290812;194164 +4780/11678;test lib scoru wasm: AST Generators (gen_print_module);0.822869;0.03595;0.858918;220212;123464 +4781/11678;test lib scoru-wasm-fast: Memory access (store_bytes behaves the same on both memory implementations);6.44857;0.156013;6.6048;915280;819772 +4782/11678;test lib scoru-wasm-fast: Memory access (load_bytes behaves the same on both memory implementations);11.6245;1.30406;12.929;1287980;1193164 +4783/11678;test lib scoru-wasm-fast: Memory access (store_num behaves the same on both memory implementations);5.60002;0.104;5.70417;959088;863852 +4784/11678;test lib scoru-wasm-fast: Fast Execution cache (add to empty);0.273189;0.048209;0.32152;193208;96140 +4785/11678;test lib scoru-wasm-fast: Fast Execution cache (Find);0.271595;0.043934;0.315636;193208;96140 +4786/11678;test lib scoru-wasm-fast: Fast Execution cache (Replace existing key);0.303455;0.015971;0.319528;192952;96140 +4787/11678;test lib scoru-wasm-fast: Fast Execution cache (add max number of keys);0.300685;0.020045;0.320834;193208;96392 +4788/11678;test lib scoru-wasm-fast: Fast Execution cache (add more than max);0.289147;0.036143;0.325394;192956;96132 +4789/11678;test lib scoru-wasm-fast: Fast Execution (Big addresses are working correctly (2.0.0));0.512708;0.032296;0.540997;199352;99912 +4790/11678;test lib scoru-wasm-fast: Fast Execution (Computation kernel (2.0.0));0.366996;0.033363;0.383357;203956;105276 +4791/11678;test lib scoru-wasm-fast: Fast Execution (Store read/write kernel (2.0.0));1.68566;0.091872;1.77595;222644;121704 +4792/11678;test lib scoru-wasm-fast: Fast Execution (read_input (2.0.0));0.551701;0.044297;0.5915;211128;111868 +4793/11678;test lib scoru-wasm-fast: Fast Execution (reboot (2.0.0));0.305308;0.032566;0.332951;199480;100172 +4794/11678;test lib scoru-wasm-fast: Fast Execution (max_steps flag (2.0.0));0.305924;0.020394;0.321937;199352;100028 +4795/11678;test lib scoru-wasm-fast: Fast Execution (too many reboots (2.0.0));1.38508;0.056369;1.43612;222008;122148 +4796/11678;test lib scoru-wasm-fast: Fast Execution (compare nb ticks (2.0.0));0.298015;0.032217;0.326468;199476;99616 +4797/11678;test lib scoru-wasm-fast: Fast Execution (Reveal_preimage kernel (2.0.0));0.289356;0.036169;0.322344;199484;99400 +4798/11678;test lib scoru-wasm-fast: Fast Execution (TX kernel (2.0.0));13.6143;0.056009;13.4897;444232;345536 +4799/11678;test lib scoru-wasm-fast: Fast Execution (compute_step_many pauses at snapshot (2.0.0));0.288217;0.044653;0.32853;199224;100168 +4800/11678;test lib scoru-wasm-fast: Fast Execution (compute_step_many recovers correctly after kernel panics (2.0.0));0.31636;0.016223;0.330074;200120;98888 +4801/11678;test lib scoru-wasm-fast: Fast Execution (Big addresses are working correctly (2.0.0-r1));0.492316;0.040353;0.529352;199224;99652 +4802/11678;test lib scoru-wasm-fast: Fast Execution (Computation kernel (2.0.0-r1));0.329751;0.071512;0.382756;203956;105288 +4803/11678;test lib scoru-wasm-fast: Fast Execution (Store read/write kernel (2.0.0-r1));1.71596;0.061138;1.77508;222260;122360 +4804/11678;test lib scoru-wasm-fast: Fast Execution (read_input (2.0.0-r1));0.550751;0.03618;0.583072;211260;111572 +4805/11678;test lib scoru-wasm-fast: Fast Execution (reboot (2.0.0-r1));0.316304;0.020019;0.332326;199480;99776 +4806/11678;test lib scoru-wasm-fast: Fast Execution (max_steps flag (2.0.0-r1));0.274635;0.051742;0.321417;199608;100116 +4807/11678;test lib scoru-wasm-fast: Fast Execution (too many reboots (2.0.0-r1));1.376;0.064562;1.43523;221944;122776 +4808/11678;test lib scoru-wasm-fast: Fast Execution (compare nb ticks (2.0.0-r1));0.312245;0.020015;0.327952;199224;100424 +4809/11678;test lib scoru-wasm-fast: Fast Execution (Reveal_preimage kernel (2.0.0-r1));0.295577;0.028343;0.320575;199352;99400 +4810/11678;test lib scoru-wasm-fast: Fast Execution (TX kernel (2.0.0-r1));13.4934;0.060042;13.3759;448048;349468 +4811/11678;test lib scoru-wasm-fast: Fast Execution (compute_step_many pauses at snapshot (2.0.0-r1));0.274739;0.048926;0.318241;199476;99908 +4812/11678;test lib scoru-wasm-fast: Fast Execution (compute_step_many recovers correctly after kernel panics (2.0.0-r1));0.293514;0.032165;0.322447;199988;99404 +4813/11678;test lib scoru-wasm-fast: Fast Execution (Big addresses are working correctly (2.0.0-r2));0.505486;0.020219;0.522166;199356;99396 +4814/11678;test lib scoru-wasm-fast: Fast Execution (Computation kernel (2.0.0-r2));0.33465;0.066103;0.382978;204468;105792 +4815/11678;test lib scoru-wasm-fast: Fast Execution (Store read/write kernel (2.0.0-r2));1.70677;0.084733;1.78835;222388;121980 +4816/11678;test lib scoru-wasm-fast: Fast Execution (read_input (2.0.0-r2));0.556469;0.040618;0.593149;211256;111336 +4817/11678;test lib scoru-wasm-fast: Fast Execution (reboot (2.0.0-r2));0.294624;0.044395;0.335141;199480;99908 +4818/11678;test lib scoru-wasm-fast: Fast Execution (max_steps flag (2.0.0-r2));0.291803;0.032422;0.320261;199224;100160 +4819/11678;test lib scoru-wasm-fast: Fast Execution (too many reboots (2.0.0-r2));1.3771;0.064237;1.43724;221752;122040 +4820/11678;test lib scoru-wasm-fast: Fast Execution (compare nb ticks (2.0.0-r2));0.315793;0.011842;0.323838;199608;100396 +4821/11678;test lib scoru-wasm-fast: Fast Execution (Reveal_preimage kernel (2.0.0-r2));0.302729;0.020181;0.319923;199484;99648 +4822/11678;test lib scoru-wasm-fast: Fast Execution (TX kernel (2.0.0-r2));13.2278;0.151539;13.1893;441204;343548 +4823/11678;test lib scoru-wasm-fast: Fast Execution (compute_step_many pauses at snapshot (2.0.0-r2));0.306314;0.024182;0.32642;199480;100432 +4824/11678;test lib scoru-wasm-fast: Fast Execution (compute_step_many recovers correctly after kernel panics (2.0.0-r2));0.306514;0.023884;0.327193;200120;99652 +4825/11678;test lib scoru sequencer message encodings: Encodings (Sequence with empty prefix and suffix);0.296446;0.024036;0.320581;192952;96132 +4826/11678;sapling: sapling (test_get_memo_size);0.291345;0.027937;0.319386;193080;96140 +4827/11678;sapling: sapling (full_transaction);17.4528;0.169679;1.97947;377896;282160 +4828/11678;sapling: sapling (proof_raw);9.01745;0.065492;1.2175;336708;240376 +4829/11678;sapling: sapling (forge);26.2685;0.163903;2.72439;361884;266444 +4830/11678;sapling: sapling (simple_client);104.156;0.308557;9.26608;423824;327140 +4831/11678;sapling: sapling (anti-replay);5.90967;0.039849;0.943267;265456;169660 +4832/11678;sapling: sapling (wrong_bound_data);5.84601;0.073278;0.938766;265356;170544 +4833/11678;sapling: rustzcash (find params);0.283394;0.031931;0.315439;192948;96140 +4834/11678;sapling: rustzcash (init);0.426887;0.023937;0.450937;249652;152560 +4835/11678;sapling: rustzcash (proving context);5.52585;0.039984;5.56604;193212;96392 +4836/11678;sapling: rustzcash (verification context);6.33402;0.012003;6.3461;193464;96396 +4837/11678;sapling: rustzcash (fail binding_sig);0.28235;0.03579;0.318273;192952;96068 +4838/11678;sapling: rustzcash (fail final_check);0.289362;0.028132;0.317612;193080;96136 +4839/11678;sapling: rustzcash (test ivk_to_pkd);0.287411;0.031934;0.319454;192956;96088 +4840/11678;sapling: rustzcash (test failing ivk_to_pkd);0.279146;0.03589;0.31514;192952;96140 +4841/11678;sapling: roots (add_mem);0.299519;0.019967;0.319594;193080;96396 +4842/11678;sapling: merkle (hash);0.293241;0.024102;0.317453;193080;96396 +4843/11678;sapling: merkle (merkle);4.80921;0.028007;4.8373;192956;96144 +4844/11678;sapling: merkle (merkle2);0.29125;0.035907;0.327259;193076;96396 +4845/11678;sapling: merkle (merkle3);0.50366;0.027981;0.531741;193080;96392 +4846/11678;sapling: merkle (test_batch_insertion);0.445732;0.032124;0.477971;192948;96396 +4847/11678;sapling: merkle (bench_batch_insertion);0.335736;0.019984;0.355835;192952;96140 +4848/11678;sapling: keys (keys);0.311137;0.023933;0.335184;193080;96164 +4849/11678;sapling: keys (vectors_zip32);0.301522;0.024121;0.32575;193588;96396 +4850/11678;sapling: keys (zip32);0.285041;0.032117;0.317264;193724;96328 +4851/11678;tezos-rpc-http: qcheck (Encoding and decoding an ACL is an identity function.);0.303444;0.019963;0.323516;192956;96144 +4852/11678;tezos-rpc-http: qcheck (put_policy preserves existing entries.);0.307606;0.031959;0.339665;198584;101696 +4853/11678;tezos-rpc-http: qcheck (default policy parses and is of correct type);0.302892;0.011956;0.314951;193080;96396 +4854/11678;tezos-rpc-http: find_policy_matching_rules (policy matching rules);0.283102;0.039873;0.323073;193076;96240 +4855/11678;tezos-rpc-http: ensure_unsafe_rpcs_blocked (make sure the default policy blocks known particularly unsafe RPCs);0.300676;0.020045;0.320837;192952;96140 +4856/11678;tezos-rpc-http: test_matching_with_name_resolving (make sure addresses match well with domain name resolving);0.282342;0.031813;0.314256;193076;96136 +4857/11678;tezos-rpc-http: test_media_type_pp_parse (Media_type.Command_line.pp/parse);0.2886;0.028058;0.316763;192820;96140 +4858/11678;tezos-requester: all (test create: simple);0.29181;0.023984;0.315879;192980;96396 +4859/11678;tezos-requester: all (test create: test known);0.272947;0.040139;0.313259;193080;96380 +4860/11678;tezos-requester: all (test create: with global_input);0.283562;0.039938;0.323621;193080;96392 +4861/11678;tezos-requester: all (test read: (and variations));0.280975;0.036125;0.317208;193080;96136 +4862/11678;tezos-requester: all (test known: found values in disk are cached);0.291815;0.023984;0.315905;193176;96352 +4863/11678;tezos-requester: all (test fetch: full requester timeout);0.297683;0.020113;0.417837;192956;96140 +4864/11678;tezos-requester: all (test fetch: full requester issues request);0.281339;0.040191;0.422041;193084;96096 +4865/11678;tezos-requester: all (test clear_or_cancel: removes);0.29073;0.03186;0.322667;192892;96396 +4866/11678;tezos-requester: all (test clear_or_cancel: decrements pending);0.287296;0.035912;0.323311;193076;96324 +4867/11678;tezos-requester: all (test clear_or_cancel: cancels);0.296782;0.024063;0.320952;193076;96324 +4868/11678;tezos-requester: all (test pending cancelled);0.307275;0.011971;0.319368;192948;96136 +4869/11678;tezos-requester: all (test pending notified);0.301852;0.020123;0.322091;193208;96396 +4870/11678;tezos-requester: all (test pending timeout);0.27885;0.039835;0.319882;193080;96140 +4871/11678;tezos-requester: all (test watch: simple);0.297493;0.0201;0.3177;193080;96396 +4872/11678;tezos-requester: all (test watch: non fetched);0.284517;0.032058;0.316688;192948;96140 +4873/11678;tezos-requester: all (test watch: double watchers);0.292594;0.028057;0.320749;193080;96396 +4874/11678;tezos-requester: all (test inject: already in memory);0.298055;0.020138;0.318303;193080;96140 +4875/11678;tezos-requester: all (test inject: already in disk);0.289242;0.02812;0.317445;193024;96392 +4876/11678;tezos-requester: all (test inject: already in requested);0.297151;0.020077;0.317338;192948;96140 +4877/11678;tezos-requester: all (test inject: otherwise);0.304315;0.016016;0.320436;192824;96132 +4878/11678;tezos-requester: all (test notify: invalid);0.278606;0.0398;0.318517;192952;96136 +4879/11678;tezos-requester: all (test notify: valid);0.284195;0.040027;0.324382;192948;96264 +4880/11678;tezos-requester: all (test notify: unfetched);0.297163;0.02811;0.325376;192672;96188 +4881/11678;tezos-requester: all (test notify: memory duplicate);0.292258;0.028024;0.320385;193208;96324 +4882/11678;tezos-requester: all (test notify: disk duplicate);0.292435;0.028041;0.320577;192952;96136 +4883/11678;tezos-requester: all (test pending_requests);0.272733;0.048129;0.723125;193080;96396 +4884/11678;tezos-requester: all (test memory_table_length);0.29491;0.023911;0.318943;193208;96396 +4885/11678;tezos-requester: all (test shutdown);0.293234;0.024101;0.317443;192952;96140 +4886/11678;Requester_PBT: read (Result.is_ok (read t key) = Option.is_some (read_opt t key));0.381124;0.024071;0.4053;228168;131392 +4887/11678;Requester_PBT: read (known t key = Option.is_some (read_opt t key));0.419956;0.023997;0.444083;265984;169280 +4888/11678;Requester_PBT: inject (read_opt (inject t key value) = (Some value));0.54043;0.044035;0.584583;274540;177620 +4889/11678;Requester_PBT: inject (key <> key' ==> read_opt (inject t key' value) key = read_opt t key);0.35226;0.060044;0.412407;231716;134976 +4890/11678;Requester_PBT: inject (read_opt t key <= read_opt (inject t key' value) key);0.378202;0.035829;0.41414;226800;130112 +4891/11678;Requester_PBT: inject (memory_table_length t <= memory_table_length (inject t key value));0.388646;0.028046;0.416795;233516;136772 +4892/11678;Requester_PBT: clear_or_cancel (read_opt (clear_or_cancel t key') key <= read_opt t key);0.36266;0.027896;0.390669;228364;131652 +4893/11678;Requester_PBT: clear_or_cancel (memory_length (clear_or_cancel t key') key <= memory_length t);0.411742;0.035977;0.447828;238056;141380 +4894/11678;Requester_PBT: clear_or_cancel (pending (clear_or_cancel (fetch (fetch t key) key) key) key = true);0.412383;0.032029;0.444538;250244;153668 +4895/11678;Proxy_server_config: union_right_bias ([union_right_bias t t] = t);0.297033;0.020069;0.317295;193076;96156 +4896/11678;Proxy_server_config: union_right_bias ([union_right_bias] is right biased);0.282403;0.035797;0.318312;192952;96392 +4897/11678;Proxy_server_config: union_right_bias (union_right_bias t1 (union_right_bias t2 t3) = union_right_bias (union_right_bias t1 t2) t3);0.293151;0.036141;0.329393;193204;96396 +4898/11678;Proxy_server_config: union_right_bias (t1 and t2 do not have a common Some ==> [union_right_bias t1 t2] = [union_right_bias t2 t1]);0.279721;0.03996;0.319783;193204;96136 +4899/11678;Proxy_server_config: example ([example_config] is successfully parsed and validated);0.286732;0.031859;0.318698;192952;96140 +4900/11678;Proxy_server_config: to_runtime ([to_runtime] returns [Ok] on expected values);0.295088;0.023926;0.319137;193080;96396 +4901/11678;Proxy_server_config: to_runtime (if [sym_block_caching_time] is <= 0, then [to_runtime] fails);0.278552;0.039793;0.318457;193076;96396 +4902/11678;Proxy_server_config: to_runtime ([union_right_bias] preserves [Result.is_ok to_runtime]);0.288351;0.032039;0.320493;193080;96140 +4903/11678;Proxy_server_config: to_runtime ([Result.is_err to_runtime (union_right_bias conf1 conf2)] ==> [Result.is_err to_runtime conf1 || Result.is_err to_runtime conf2]);0.293251;0.024102;0.317477;193080;96392 +4904/11678;Block_services: merkle_proof_eq (merkle_proof_eq is reflexive: forall t, merkle_proof_eq t t);0.378708;0.047836;0.426681;233964;137276 +4905/11678;Block_services: merkle_proof_eq (merkle_proof_eq is symmetric: forall t1 t2, merkle_proof_eq t1 t2 = merkle_proof_eq t2 t1);0.440069;0.048007;0.488185;230484;133936 +4906/11678;tezos-proxy: all tests (RequestsTree);0.292145;0.024011;0.316317;193204;96408 +4907/11678;tezos-proxy: all tests (test do_rpc);0.293652;0.028158;0.321931;193208;96392 +4908/11678;tezos-proxy: all tests (test split key triggers);0.293624;0.024133;0.317855;192952;96140 +4909/11678;tezos-light: light (test valid min_agreement parsing);0.296865;0.02407;0.321051;192956;96396 +4910/11678;tezos-light: light (test invalid min_agreement parsing);0.301584;0.016084;0.317771;193080;96396 +4911/11678;tezos-light: light (test invalid uris parsing);0.293304;0.028125;0.321533;192824;96140 +4912/11678;tezos-light: light (test default min agreement);0.290892;0.027893;0.318893;193080;96396 +4913/11678;tezos-light: light (test parsing sources example);0.282908;0.035861;0.318903;193208;96328 +4914/11678;Proxy Getter: Array theory (Tree.get (Tree.add_leaf t k v) k = v);1.1259;0.056094;1.18207;290996;194596 +4915/11678;Mode Light: Consensus consistency examples (min_agreement=1.000000, honest=1, rogue=0 consensus_expected=true);0.343682;0.043959;0.387744;222520;125768 +4916/11678;Mode Light: Consensus consistency examples (min_agreement=1.000000, honest=2, rogue=0 consensus_expected=true);0.339798;0.039976;0.379895;223160;126276 +4917/11678;Mode Light: Consensus consistency examples (min_agreement=1.000000, honest=3, rogue=0 consensus_expected=true);0.348921;0.028074;0.377107;223928;127296 +4918/11678;Mode Light: Consensus consistency examples (min_agreement=1.000000, honest=1, rogue=1 consensus_expected=false);0.428569;0.032042;0.46073;227048;130116 +4919/11678;Mode Light: Consensus consistency examples (min_agreement=0.700000, honest=1, rogue=1 consensus_expected=false);0.418479;0.035869;0.454454;227048;130372 +4920/11678;Mode Light: Consensus consistency examples (min_agreement=0.700000, honest=0, rogue=2 consensus_expected=false);0.49955;0.023978;0.523633;231660;134924 +4921/11678;Mode Light: Consensus consistency examples (min_agreement=0.700000, honest=0, rogue=3 consensus_expected=false);0.570476;0.031914;0.602489;231020;134208 +4922/11678;Mode Light: Consensus consistency examples (min_agreement=0.010000, honest=0, rogue=1 consensus_expected=true);0.422392;0.027893;0.450382;225084;128324 +4923/11678;Mode Light: Consensus consistency examples (min_agreement=0.010000, honest=0, rogue=2 consensus_expected=true);0.472846;0.040071;0.513094;231528;134724 +4924/11678;Mode Light: Consensus consistency examples (min_agreement=0.010000, honest=0, rogue=99 consensus_expected=true);6.5771;0.032005;6.60931;239724;143168 +4925/11678;Mode Light: Consensus consistency examples (min_agreement=0.010000, honest=0, rogue=100 consensus_expected=false);6.65697;0.060008;6.71725;238820;141888 +4926/11678;Mode Light: Consensus consistency examples (min_agreement=0.600000, honest=1, rogue=1 consensus_expected=true);0.43109;0.027941;0.459142;225336;128324 +4927/11678;Mode Light: Consensus consistency examples (min_agreement=0.600000, honest=2, rogue=1 consensus_expected=true);0.403121;0.043904;0.447125;231784;134972 +4928/11678;Mode Light: Consensus consistency examples (min_agreement=0.600000, honest=3, rogue=1 consensus_expected=true);0.419829;0.027988;0.447926;232296;135480 +4929/11678;Mode Light: Consensus consistency examples (min_agreement=0.600000, honest=4, rogue=1 consensus_expected=true);0.425783;0.0241;0.449989;225340;128324 +4930/11678;Mode Light: Consensus consistency examples (min_agreement=0.500000, honest=1, rogue=2 consensus_expected=true);0.490824;0.027933;0.518865;232552;135996 +4931/11678;Mode Light: Consensus consistency (test_consensus min_agreement honest rogue ... = min_agreeing_endpoints min_agreement (honest + rogue + 1) <= honest);42.2343;0.047998;42.2832;246380;149820 +4932/11678;tezos-shell-proxy-context: proxy_context (mem);0.293465;0.02814;0.321707;192952;96140 +4933/11678;tezos-shell-proxy-context: proxy_context (memtree);0.281412;0.036181;0.3177;193084;96384 +4934/11678;tezos-shell-proxy-context: proxy_context (find);0.29587;0.027987;0.323956;193076;96396 +4935/11678;tezos-shell-proxy-context: proxy_context (find_tree);0.291288;0.027931;0.319332;193208;96396 +4936/11678;tezos-shell-proxy-context: proxy_context (list);0.286913;0.027894;0.31491;192948;96136 +4937/11678;tezos-shell-proxy-context: proxy_context (length);0.299737;0.019982;0.319798;192764;96400 +4938/11678;tezos-shell-proxy-context: proxy_context (fold);0.291337;0.027936;0.319386;193336;96396 +4939/11678;Memory context array theory: domain (Test_mem_context_common.domain's specification );0.417362;0.05217;0.46967;236652;139840 +4940/11678;Memory context array theory: set (get (set m k v) k = v );0.385639;0.056239;0.441978;238696;141892 +4941/11678;Memory context array theory: get_set (forall k1 <> k2, get (set m k1 v) k2 = get m k2 );0.473451;0.020061;0.493647;238920;141960 +4942/11678;Memory context array theory: get_set (forall k2 in domain (set m k1 v), k2 in domain m || k1 = k2 );0.42145;0.036124;0.457692;238696;141888 +4943/11678;tezos-shell-context: mem_context (simple);0.292513;0.024042;0.316667;192824;96136 +4944/11678;tezos-shell-context: mem_context (continuation);0.299607;0.019973;0.319693;192948;96140 +4945/11678;tezos-shell-context: mem_context (fork);0.296236;0.028022;0.324364;193208;96396 +4946/11678;tezos-shell-context: mem_context (replay);0.283718;0.031968;0.315799;193084;96356 +4947/11678;tezos-shell-context: mem_context (fold_keys);0.288811;0.03209;0.321004;192948;96100 +4948/11678;tezos-shell-context: mem_context (fold);0.289256;0.032139;0.321511;193204;96360 +4949/11678;tezos-shell-context: mem_context (fold order);0.294441;0.023873;0.318434;192952;96140 +4950/11678;tezos-shell-context: mem_context (trees);0.30522;0.016064;0.321413;192952;96184 +4951/11678;tezos-shell-context: mem_context (domain0);0.289026;0.028099;0.317285;193080;96172 +4952/11678;tezos-shell-context: mem_context (domain1);0.311851;0.011994;0.323946;193076;96140 +4953/11678;tezos-shell-context: mem_context (domain2);0.286763;0.035845;0.322722;193080;96396 +4954/11678;proto-env-v8-data-encoding: lazy (unparsable_lazyexpr);0.301769;0.01207;0.313937;193208;96144 +4955/11678;tezos-shell-context: cache (an uninitialised cache is unusable);0.284932;0.032105;0.317137;193080;96320 +4956/11678;tezos-shell-context: cache (from_layout produces valid empty subcaches);0.292881;0.036108;0.329102;195388;98632 +4957/11678;tezos-shell-context: cache (from_layout fails on negative sizes);0.295765;0.019984;0.31586;192824;96140 +4958/11678;tezos-shell-context: cache (invalid cache indices produce failures);0.32086;0.020053;0.341062;212788;116040 +4959/11678;tezos-shell-context: cache (compatible_layout validates correctly);0.292641;0.036079;0.328824;199096;102216 +4960/11678;tezos-shell-context: cache (compatible_layout invalidates correctly);0.296517;0.020034;0.316728;193208;96168 +4961/11678;tezos-shell-context: cache (clear preserves layout and removes entries);1.8314;0.055981;1.88748;371308;275008 +4962/11678;tezos-shell-context: cache (key_of_identifier uses given identifier);0.273522;0.044246;0.317901;193076;96140 +4963/11678;tezos-shell-context: cache (inserted entries are in the cache (with find));4.05999;0.063999;4.1241;393908;297536 +4964/11678;tezos-shell-context: cache (inserted entries are in the cache (with lookup));4.44641;0.059978;4.50654;398960;302400 +4965/11678;tezos-shell-context: cache (update with some value changes mapping);4.18981;0.071962;4.26191;390132;293580 +4966/11678;tezos-shell-context: cache (update with none removes mapping);4.22667;0.063979;4.29081;434036;337468 +4967/11678;tezos-shell-context: cache (future_cache_expectation does not change not full cache);4.21328;0.06802;4.2814;419572;323136 +4968/11678;tezos-shell-context: cache (future_cache_expectation repeats the past);2.09598;0.067999;2.1641;359924;263484 +4969/11678;tezos-shell-context: cache (after sync, cache nonce are set);3.96869;0.068011;4.03689;467440;371004 +4970/11678;tezos-shell-context: cache (list keys returns all entries);4.24451;0.056006;4.30068;415404;319036 +4971/11678;tezos-shell-context: cache (key rank returns valid rank);1.31436;0.05593;1.37041;339616;243144 +4972/11678;tezos-shell-context: cache (from_cache with same domain copies);1.26808;0.048002;1.31621;347248;250688 +4973/11678;tezos-shell-context: cache (load_cache correctly restores in-memory caches (`Load mode));0.701628;0.036083;0.73781;237996;141124 +4974/11678;tezos-shell-context: cache (load_cache correctly restores in-memory caches (`Lazy mode));0.669521;0.0441;0.713749;233376;136516 +4975/11678;tezos-shell-context: cache (load_cache fails if builder fails (`Load mode));1.03126;0.039971;1.07133;242712;145988 +4976/11678;tezos-shell-context: cache (load_cache fails if builder fails (`Lazy mode));1.09111;0.027977;1.11921;258104;161344 +4977/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 563766751 (degree of zero is infinity);0.289584;0.028154;0.317863;193076;96140 +4978/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 563766751 (degree of constants is one);0.283821;0.031979;0.315913;193076;96324 +4979/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 563766751 (degree int test vectors);0.275172;0.03988;0.315171;192952;96140 +4980/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 563766751 (have same degree);0.297952;0.023836;0.321922;193076;96376 +4981/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 563766751 (evaluation at any point of the zero polynomial);0.288511;0.036063;0.324674;193080;96396 +4982/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 563766751 (evaluation at any point of a random constant polynomial);0.289201;0.0241;0.313395;192952;96140 +4983/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 563766751 (evaluation at zero of a random constant polynomial);0.288298;0.028029;0.316414;192852;96220 +4984/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 563766751 (evaluation at zero of the zero polynomial);0.270331;0.04373;0.314178;192948;96100 +4985/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 563766751 (evaluation at any point of the polynomial X);0.299479;0.019965;0.319539;192948;96140 +4986/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 563766751 (test vectors for random);0.29103;0.031893;0.323026;193076;96136 +4987/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 563766751 (test with constants);0.274369;0.04374;0.318206;193080;96324 +4988/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 563766751 (test vectors for random divided by constant);0.292456;0.03205;0.324614;192952;96140 +4989/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 563766751 (test properties nullifier 0 * P = P * 0 = 0);0.286167;0.031796;0.318106;192948;96140 +4990/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 563766751 (test properties commutativity p * q = p * q);0.286985;0.031887;0.318976;192948;96140 +4991/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 563766751 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q);0.293779;0.024146;0.318127;193080;96140 +4992/11678;Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 563766751 (test properties on random polynomials);0.288794;0.028077;0.316981;193080;96396 +4993/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 563766751 (test vectors);0.288831;0.032092;0.321032;193080;96140 +4994/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 563766751 (test vectors);0.293172;0.024096;0.317351;192976;96300 +4995/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 563766751 (zero polynomial is constant);0.290759;0.027881;0.318747;193204;96396 +4996/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 563766751 (Constant random value);0.291715;0.027972;0.319822;192824;96140 +4997/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 563766751 (Non constant polynomial);0.288607;0.036075;0.324786;193080;96140 +4998/11678;Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 563766751 (test random number of points);0.291106;0.027914;0.319189;192948;96136 +4999/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 9801569 (degree of zero is infinity);0.285328;0.032149;0.317585;192864;96212 +5000/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 9801569 (degree of constants is one);0.263208;0.055832;0.319155;193080;96140 +5001/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 9801569 (degree int test vectors);0.295501;0.023959;0.319578;193076;96140 +5002/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 9801569 (have same degree);0.299945;0.019996;0.320043;193076;96396 +5003/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 9801569 (evaluation at any point of the zero polynomial);0.280921;0.040131;0.321153;193336;96392 +5004/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 9801569 (evaluation at any point of a random constant polynomial);0.283158;0.039881;0.32314;192948;96140 +5005/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 9801569 (evaluation at zero of a random constant polynomial);0.296322;0.020021;0.316438;193208;96140 +5006/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 9801569 (evaluation at zero of the zero polynomial);0.290528;0.027858;0.31849;193208;96392 +5007/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 9801569 (evaluation at any point of the polynomial X);0.280804;0.032091;0.313001;192952;96140 +5008/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 9801569 (test vectors for random);0.293229;0.024101;0.317433;192956;96136 +5009/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 9801569 (test with constants);0.307558;0.015977;0.323642;192952;96140 +5010/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 9801569 (test vectors for random divided by constant);0.294743;0.023898;0.318746;192956;96140 +5011/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 9801569 (test properties nullifier 0 * P = P * 0 = 0);0.274608;0.043778;0.318497;192952;96396 +5012/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 9801569 (test properties commutativity p * q = p * q);0.295523;0.027954;0.323578;193080;96396 +5013/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 9801569 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q);0.288205;0.032022;0.320305;192720;96396 +5014/11678;Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 9801569 (test properties on random polynomials);0.286339;0.027838;0.314271;192948;96136 +5015/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 9801569 (test vectors);0.289446;0.02814;0.31772;192956;96140 +5016/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 9801569 (test vectors);0.284651;0.028064;0.312818;192952;96140 +5017/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 9801569 (zero polynomial is constant);0.28447;0.036059;0.320638;192952;96240 +5018/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 9801569 (Constant random value);0.282531;0.039793;0.322422;192956;96240 +5019/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 9801569 (Non constant polynomial);0.291866;0.027987;0.319966;193208;96396 +5020/11678;Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 9801569 (test random number of points);0.2926;0.024049;0.316758;193076;96300 +5021/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 285094787 (degree of zero is infinity);0.301487;0.020099;0.3217;192756;96280 +5022/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 285094787 (degree of constants is one);0.282989;0.035871;0.318975;193084;96140 +5023/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 285094787 (degree int test vectors);0.282741;0.039822;0.322665;193080;96140 +5024/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 285094787 (have same degree);0.290439;0.02785;0.318422;193080;96140 +5025/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 285094787 (evaluation at any point of the zero polynomial);0.288996;0.024083;0.313181;193080;96356 +5026/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 285094787 (evaluation at any point of a random constant polynomial);0.297565;0.020105;0.317779;193080;96396 +5027/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 285094787 (evaluation at zero of a random constant polynomial);0.292536;0.024044;0.316683;192952;96092 +5028/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 285094787 (evaluation at zero of the zero polynomial);0.288438;0.028042;0.316583;193076;96400 +5029/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 285094787 (evaluation at any point of the polynomial X);0.284634;0.032071;0.316811;193080;96140 +5030/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 285094787 (test vectors for random);0.290418;0.031826;0.322356;192952;96096 +5031/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 285094787 (test with constants);0.309745;0.012068;0.321914;193212;96396 +5032/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 285094787 (test vectors for random divided by constant);0.286696;0.031855;0.318664;192952;96140 +5033/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 285094787 (test properties nullifier 0 * P = P * 0 = 0);0.299144;0.019942;0.319193;193084;96396 +5034/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 285094787 (test properties commutativity p * q = p * q);0.271737;0.043957;0.315791;193208;96396 +5035/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 285094787 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q);0.301143;0.024091;0.325344;193208;96392 +5036/11678;Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 285094787 (test properties on random polynomials);0.309512;0.012058;0.321674;193080;96140 +5037/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 285094787 (test vectors);0.311744;0.01199;0.323855;193076;96212 +5038/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 285094787 (test vectors);0.266772;0.051761;0.318631;192952;96140 +5039/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 285094787 (zero polynomial is constant);0.294977;0.023917;0.319005;193208;96396 +5040/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 285094787 (Constant random value);0.291077;0.031898;0.323094;193468;96584 +5041/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 285094787 (Non constant polynomial);0.280753;0.036096;0.317006;193076;96348 +5042/11678;Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 285094787 (test random number of points);0.294695;0.023894;0.318698;193080;96140 +5043/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 469154303 (degree of zero is infinity);0.282633;0.035826;0.318566;192952;96140 +5044/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 469154303 (degree of constants is one);0.299244;0.019949;0.319304;193084;96396 +5045/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 469154303 (degree int test vectors);0.305929;0.020126;0.326156;192956;96140 +5046/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 469154303 (have same degree);0.297081;0.024087;0.321271;193084;96392 +5047/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 469154303 (evaluation at any point of the zero polynomial);0.29989;0.023991;0.323992;193084;96252 +5048/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 469154303 (evaluation at any point of a random constant polynomial);0.282663;0.03583;0.318605;193080;96400 +5049/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 469154303 (evaluation at zero of a random constant polynomial);0.272103;0.040015;0.312218;193080;96140 +5050/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 469154303 (evaluation at zero of the zero polynomial);0.307312;0.015964;0.323394;193080;96328 +5051/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 469154303 (evaluation at any point of the polynomial X);0.291133;0.023928;0.315153;193208;96348 +5052/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 469154303 (test vectors for random);0.283775;0.031974;0.315857;193212;96140 +5053/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 469154303 (test with constants);0.300229;0.020015;0.320357;193080;96400 +5054/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 469154303 (test vectors for random divided by constant);0.281477;0.036189;0.317777;193080;96392 +5055/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 469154303 (test properties nullifier 0 * P = P * 0 = 0);0.292492;0.02404;0.316658;192948;96140 +5056/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 469154303 (test properties commutativity p * q = p * q);0.274727;0.043797;0.318638;192948;96328 +5057/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 469154303 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q);0.299133;0.02393;0.323172;193080;96140 +5058/11678;Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 469154303 (test properties on random polynomials);0.296143;0.028013;0.32426;193076;96396 +5059/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 469154303 (test vectors);0.283067;0.039868;0.323045;193080;96396 +5060/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 469154303 (test vectors);0.292266;0.024021;0.3164;193208;96140 +5061/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 469154303 (zero polynomial is constant);0.276212;0.04003;0.31635;192952;96140 +5062/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 469154303 (Constant random value);0.298783;0.023902;0.322799;192952;96140 +5063/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 469154303 (Non constant polynomial);0.287964;0.027996;0.316062;192952;96140 +5064/11678;Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 469154303 (test random number of points);0.29454;0.019901;0.314545;193080;96364 +5065/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 627574133 (degree of zero is infinity);0.29612;0.020008;0.316211;192880;96552 +5066/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 627574133 (degree of constants is one);0.295123;0.01994;0.315172;192956;96652 +5067/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 627574133 (degree int test vectors);0.293801;0.024148;0.318135;193080;96664 +5068/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 627574133 (have same degree);0.285493;0.028147;0.313736;192948;96140 +5069/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 627574133 (evaluation at any point of the zero polynomial);0.306036;0.016107;0.322245;193076;96396 +5070/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 627574133 (evaluation at any point of a random constant polynomial);0.283306;0.031921;0.315335;193336;96396 +5071/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 627574133 (evaluation at zero of a random constant polynomial);0.302733;0.015933;0.318785;193076;96396 +5072/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 627574133 (evaluation at zero of the zero polynomial);0.283956;0.031995;0.316052;192952;96140 +5073/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 627574133 (evaluation at any point of the polynomial X);0.291866;0.023989;0.315955;193080;96144 +5074/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 627574133 (test vectors for random);0.28271;0.035836;0.318643;193204;96396 +5075/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 627574133 (test with constants);0.2642;0.052039;0.316339;192948;96140 +5076/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 627574133 (test vectors for random divided by constant);0.28125;0.03616;0.317515;192956;96140 +5077/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 627574133 (test properties nullifier 0 * P = P * 0 = 0);0.292494;0.020033;0.312626;193080;96136 +5078/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 627574133 (test properties commutativity p * q = p * q);0.305772;0.020116;0.325995;192952;96140 +5079/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 627574133 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q);0.27433;0.043733;0.3182;193080;96392 +5080/11678;Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 627574133 (test properties on random polynomials);0.280054;0.040007;0.320191;192948;96140 +5081/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 627574133 (test vectors);0.283811;0.031978;0.315897;193076;96140 +5082/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 627574133 (test vectors);0.280324;0.036041;0.316474;192952;96140 +5083/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 627574133 (zero polynomial is constant);0.299169;0.015955;0.315225;192948;96136 +5084/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 627574133 (Constant random value);0.29567;0.023973;0.319743;193084;96396 +5085/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 627574133 (Non constant polynomial);0.291255;0.023938;0.315297;192956;96140 +5086/11678;Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 627574133 (test random number of points);0.297068;0.024086;0.321257;192948;96140 +5087/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (degree of zero is infinity);0.289204;0.0241;0.313411;193080;96140 +5088/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (degree of constants is one);0.299471;0.023957;0.323552;192948;96140 +5089/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (degree int test vectors);0.295912;0.019994;0.316006;192952;96140 +5090/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (have same degree);0.270375;0.043737;0.314224;192820;96140 +5091/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (evaluation at any point of the zero polynomial);0.294666;0.023891;0.318697;192948;96136 +5092/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (evaluation at any point of a random constant polynomial);0.295185;0.019944;0.315237;193208;96396 +5093/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (evaluation at zero of a random constant polynomial);0.305291;0.020084;0.325486;193080;96140 +5094/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (evaluation at zero of the zero polynomial);0.296384;0.020025;0.316519;193084;96392 +5095/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (evaluation at any point of the polynomial X);0.299465;0.019964;0.319536;193208;96396 +5096/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test vectors for random);0.333169;0.036126;0.369403;192952;96140 +5097/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test with constants);0.287089;0.031898;0.319095;193208;96372 +5098/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test vectors for random divided by constant);0.549455;0.036095;0.585706;205040;108300 +5099/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test properties nullifier 0 * P = P * 0 = 0);0.277356;0.044216;0.321677;192948;96140 +5100/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test properties commutativity p * q = p * q);0.308289;0.016015;0.324388;192712;96144 +5101/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q);0.303442;0.01597;0.319591;192952;96252 +5102/11678;Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test properties on random polynomials);0.850454;0.023956;0.874517;204856;108104 +5103/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test vectors);0.288518;0.02805;0.316688;193080;96396 +5104/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test vectors);0.287974;0.027997;0.316081;192744;96204 +5105/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (zero polynomial is constant);0.306422;0.015918;0.322449;193076;96392 +5106/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (Constant random value);0.281222;0.036157;0.317475;192956;96140 +5107/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (Non constant polynomial);0.294744;0.027881;0.322724;193076;96396 +5108/11678;Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test random number of points);0.304876;0.024069;0.329087;192948;96104 +5109/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (Compare FFT version of polynomial multiplication against normal polynomial multiplication);0.280143;0.036018;0.316264;192952;96140 +5110/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (At least one of the polynomial is zero);0.29031;0.031814;0.322312;193080;96396 +5111/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (Verify the degree of P * Q is correct);0.284565;0.036071;0.320742;192956;96140 +5112/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (Commutativity of polynomial multiplication using FFT);0.298534;0.023882;0.322528;192952;96396 +5113/11678;Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test evaluation at random points);0.298144;0.019876;0.318164;193208;96260 +5114/11678;Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test evaluation with zero polynomial);0.30155;0.020103;0.321763;192956;96136 +5115/11678;Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test evaluation with smaller polynomial);0.288664;0.028064;0.316841;193076;96140 +5116/11678;Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test evaluation with larger polynomial);0.279634;0.035953;0.315693;192952;96160 +5117/11678;Polynomials with F379 and some random prime fields: Inverse FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test interpolation at random points);0.304924;0.032097;0.33714;192956;96144 +5118/11678;Polynomials with F379 and some random prime fields: Inverse FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test interpolation with only roots);0.313323;0.01205;0.325477;193208;96396 +5119/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (degree of zero is infinity);0.283761;0.031973;0.315831;193080;96136 +5120/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (degree of constants is one);0.296773;0.028073;0.324953;192692;96140 +5121/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (degree int test vectors);0.275472;0.047908;0.323482;193076;96392 +5122/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (have same degree);0.290587;0.023883;0.314574;193076;96140 +5123/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (evaluation at any point of the zero polynomial);0.294914;0.019926;0.314971;193080;96396 +5124/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (evaluation at any point of a random constant polynomial);0.295338;0.023946;0.319466;192956;96244 +5125/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (evaluation at zero of a random constant polynomial);0.301919;0.016102;0.318133;192948;96136 +5126/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (evaluation at zero of the zero polynomial);0.279573;0.035945;0.315673;192952;96232 +5127/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (evaluation at any point of the polynomial X);0.294694;0.023894;0.318691;192952;96140 +5128/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test vectors for random);0.342596;0.027885;0.370579;193212;96396 +5129/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test with constants);0.287505;0.031945;0.319569;193212;96392 +5130/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test vectors for random divided by constant);0.50546;0.036104;0.54169;205108;108316 +5131/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test properties nullifier 0 * P = P * 0 = 0);0.275358;0.043897;0.319367;193084;96396 +5132/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test properties commutativity p * q = p * q);0.282945;0.039851;0.322906;192952;96136 +5133/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q);0.288797;0.032088;0.320992;192948;96136 +5134/11678;Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test properties on random polynomials);0.678778;0.031942;0.710814;205108;108104 +5135/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test vectors);0.288932;0.02809;0.317124;193204;96144 +5136/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test vectors);0.291552;0.03195;0.323609;193208;96140 +5137/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (zero polynomial is constant);0.308995;0.016051;0.325167;192820;96140 +5138/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (Constant random value);0.314432;0.00796;0.322509;193212;96396 +5139/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (Non constant polynomial);0.304682;0.020044;0.324834;193080;96140 +5140/11678;Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test random number of points);0.300619;0.036074;0.336824;193332;96396 +5141/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (degree of zero is infinity);0.278906;0.039843;0.318877;192988;96248 +5142/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (degree of constants is one);0.296336;0.024027;0.320447;192948;96212 +5143/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (degree int test vectors);0.290873;0.023907;0.314894;192948;96136 +5144/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (have same degree);0.274322;0.039756;0.314198;192988;96424 +5145/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (evaluation at any point of the zero polynomial);0.299251;0.01995;0.31931;192952;96140 +5146/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (evaluation at any point of a random constant polynomial);0.297423;0.028134;0.32567;193080;96384 +5147/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (evaluation at zero of a random constant polynomial);0.292448;0.024036;0.316586;192952;96140 +5148/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (evaluation at zero of the zero polynomial);0.287158;0.031906;0.319188;193076;96396 +5149/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (evaluation at any point of the polynomial X);0.300313;0.016016;0.316472;193080;96396 +5150/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test vectors for random);0.323012;0.047853;0.370974;192948;96140 +5151/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test with constants);0.294991;0.023918;0.319021;192956;96140 +5152/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test vectors for random divided by constant);0.537168;0.044095;0.581369;205236;108360 +5153/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test properties nullifier 0 * P = P * 0 = 0);0.292165;0.032018;0.32429;193076;96396 +5154/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test properties commutativity p * q = p * q);0.287763;0.031973;0.319843;192948;96396 +5155/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q);0.299926;0.019995;0.320032;192952;96140 +5156/11678;Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test properties on random polynomials);0.868122;0.024003;0.892236;204732;108072 +5157/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test vectors);0.303028;0.015948;0.319074;193204;96320 +5158/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test vectors);0.290556;0.031841;0.322501;193208;96396 +5159/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (zero polynomial is constant);0.300852;0.024068;0.32505;192896;96288 +5160/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (Constant random value);0.271723;0.051947;0.323801;192948;96140 +5161/11678;Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (Non constant polynomial);0.298411;0.019894;0.318458;193212;96160 +5162/11678;Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test random number of points);0.270485;0.055688;0.32628;193080;96396 +5163/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 379 (degree of zero is infinity);0.280094;0.036012;0.316209;193076;96324 +5164/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 379 (degree of constants is one);0.288622;0.02806;0.316808;193076;96396 +5165/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 379 (degree int test vectors);0.305562;0.020102;0.325802;192952;96140 +5166/11678;Polynomials with F379 and some random prime fields: Tests on degrees, field order = 379 (have same degree);0.28528;0.032144;0.317537;193080;96324 +5167/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 379 (evaluation test vectors);0.296204;0.020013;0.316317;193080;96140 +5168/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 379 (evaluation at any point of the zero polynomial);0.284736;0.032082;0.316921;193080;96324 +5169/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 379 (evaluation at any point of a random constant polynomial);0.286291;0.03181;0.318222;192956;96396 +5170/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 379 (evaluation at zero of a random constant polynomial);0.286716;0.031857;0.318665;192912;96396 +5171/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 379 (evaluation at zero of the zero polynomial);0.284396;0.032044;0.316553;192948;96136 +5172/11678;Polynomials with F379 and some random prime fields: Test evaluation, field order = 379 (evaluation at any point of the polynomial X);0.295906;0.023992;0.320002;193212;96140 +5173/11678;Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 379 (test vector);0.283308;0.031922;0.31533;193208;96396 +5174/11678;Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 379 (test random number of points);0.292378;0.028036;0.320523;192848;96300 +5175/11678;Polynomials with F379 and some random prime fields: Test mult by scalar (test vectors);0.284738;0.032083;0.316941;193208;96140 +5176/11678;Polynomials with F379 and some random prime fields: Test mult by scalar (test multiply constants by scalar zero is zero);0.293327;0.024109;0.317539;193208;96396 +5177/11678;Polynomials with F379 and some random prime fields: Test mult by scalar (test multiply degree one by scalar zero is zero);0.299113;0.01994;0.319147;193084;96392 +5178/11678;Polynomials with F379 and some random prime fields: Test opposite (test property opposite twice);0.300256;0.020017;0.320377;192956;96140 +5179/11678;Polynomials with F379 and some random prime fields: Test opposite (test property opposite of constant);0.300087;0.020005;0.320198;192952;96140 +5180/11678;Polynomials with F379 and some random prime fields: Test opposite (test property opposite of zero);0.284879;0.032099;0.317083;193212;96396 +5181/11678;Polynomials with F379 and some random prime fields: Split polynomials (Test even polynomial with test vectors);0.309321;0.008034;0.317463;192948;96140 +5182/11678;Polynomials with F379 and some random prime fields: Split polynomials (Test odd polynomial with test vectors);0.298521;0.019901;0.318532;193080;96136 +5183/11678;Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 379 (test vectors);0.288751;0.028073;0.316928;193076;96392 +5184/11678;Polynomials with F379 and some random prime fields: Inverse FFT for prime field 337 (test vectors for interpolation fft);0.285378;0.032155;0.317652;193336;96396 +5185/11678;Polynomials with F379 and some random prime fields: Inverse FFT for prime field 337 (test interpolation at random points);0.290889;0.023908;0.314924;193076;96140 +5186/11678;Polynomials with F379 and some random prime fields: Inverse FFT for prime field 337 (test interpolation with only roots);0.293208;0.024099;0.317411;193084;96396 +5187/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 337 (test vectors for polynomial multiplication FFT);0.279945;0.039992;0.320059;193208;96392 +5188/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 337 (Compare FFT version of polynomial multiplication against normal polynomial multiplication);0.263702;0.051941;0.315745;193084;96388 +5189/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 337 (At least one of the polynomial is zero);0.285047;0.040147;0.32531;193076;96328 +5190/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 337 (Verify the degree of P * Q is correct);0.292846;0.024069;0.317085;192956;96136 +5191/11678;Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 337 (Commutativity of polynomial multiplication using FFT);0.292343;0.024028;0.31649;193204;96156 +5192/11678;Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 337 (test vectors for evaluation);0.300962;0.016051;0.317111;193076;96396 +5193/11678;Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 337 (test evaluation at random points);0.292995;0.024081;0.317183;192952;96140 +5194/11678;Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 337 (test evaluation with zero polynomial);0.302018;0.016107;0.318233;193076;96260 +5195/11678;Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 337 (test evaluation with smaller polynomial);0.281007;0.036129;0.31724;193080;96324 +5196/11678;Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 337 (test evaluation with larger polynomial);0.298588;0.023887;0.322577;192948;96240 +5197/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 379 (test vectors for euclidian division);0.284209;0.036026;0.320348;192952;96140 +5198/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 379 (test vectors for random);0.321153;0.032115;0.353376;193080;96136 +5199/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 379 (test with constants);0.277783;0.044284;0.322186;193040;96428 +5200/11678;Polynomials with F379 and some random prime fields: Euclidian division for prime field 379 (test vectors for random divided by constant);0.430204;0.051783;0.482139;203956;107280 +5201/11678;Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 379 (test properties on random polynomials);0.495305;0.031955;0.527367;193844;97096 +5202/11678;Polynomials with F379 and some random prime fields: Test add (test vectors);0.293282;0.024105;0.317493;192956;96580 +5203/11678;Utils: Reorganizing the coefficients (Next power of two);0.305382;0.02009;0.325603;192952;96140 +5204/11678;p2p socket nack;0.27224;0.048072;0.31885;192824;100312 +5205/11678;p2p socket self peer id;0.302867;0.023909;0.324892;193208;100416 +5206/11678;p2p socket self connection message;0.298634;0.028039;0.324211;193080;100932 +5207/11678;p2p msg consumption without peer_discovery;0.296074;0.020005;0.31619;192952;96140 +5208/11678;tezos-mockup: persistence (Classify a non existing directory);0.295693;0.019979;0.315778;193076;96292 +5209/11678;tezos-mockup: persistence (Classify a file);0.291205;0.023934;0.315248;192824;96268 +5210/11678;tezos-mockup: persistence (Classify a mockup directory);0.278653;0.039807;0.318583;193188;96292 +5211/11678;tezos-mockup: persistence (Classify a non empty directory);0.292948;0.024077;0.317121;192932;96260 +5212/11678;tezos-mockup: persistence (Classify an empty directory);0.27306;0.040156;0.313403;193064;96392 +5213/11678;tezos-mockup: persistence (get_registered_mockup fails when no environment was registered);0.28364;0.031959;0.315703;193188;96136 +5214/11678;tezos-mockup: persistence (get_registered_mockup fails if the requested protocol is not found);0.292332;0.032036;0.324502;192976;96460 +5215/11678;tezos-mockup: persistence (get_registered_mockup returns Alpha if none is specified);0.302199;0.019881;0.322189;193064;96136 +5216/11678;tezos-mockup: persistence (get_registered_mockup returns the requested protocol);0.293868;0.020127;0.314098;192936;96136 +5217/11678;tezos-mockup: mockup_args (Chain_id.choose uses the dummy value if no config file is specified);0.301054;0.02007;0.321224;192936;96276 +5218/11678;Fuzzing_mockup_args: Chain_id.choose (Chain_id.choose always prioritizes the config file over the default value);0.300843;0.016044;0.317077;192936;96136 +5219/11678;Vesta projective coordinates: value generation (random);0.306905;0.019928;0.327148;193060;96136 +5220/11678;Vesta projective coordinates: value generation (negate_with_one);0.290835;0.027888;0.318829;192812;96136 +5221/11678;Vesta projective coordinates: value generation (negate_with_zero);0.303953;0.019996;0.324058;192936;96136 +5222/11678;Vesta projective coordinates: value generation (negate_with_random);0.289188;0.036148;0.325465;192936;96136 +5223/11678;Vesta projective coordinates: value generation (double_with_random);0.290584;0.039806;0.330513;192936;96128 +5224/11678;Vesta projective coordinates: value generation (negate generates a valid point);0.306354;0.023871;0.330343;193064;96392 +5225/11678;Vesta projective coordinates: value generation (addition generates a valid point);0.300974;0.02809;0.329183;193060;96136 +5226/11678;Vesta projective coordinates: value generation (double generates a valid point);0.310677;0.015932;0.326728;193192;96388 +5227/11678;Vesta projective coordinates: value generation (scalar multiplication generates a valid point);0.360494;0.04406;0.404663;192932;96136 +5228/11678;Vesta projective coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.29411;0.027821;0.322055;193196;96392 +5229/11678;Vesta projective coordinates: value generation (check bytes on random with to_bytes);0.292969;0.036119;0.329191;193064;96392 +5230/11678;Vesta projective coordinates: value generation (double_with_one);0.297399;0.020094;0.317626;192936;96132 +5231/11678;Vesta projective coordinates: value generation (double_with_zero);0.28034;0.036043;0.316515;192932;96136 +5232/11678;Vesta projective coordinates: equality (zero);0.28949;0.028144;0.317738;193064;96392 +5233/11678;Vesta projective coordinates: equality (one);0.29335;0.02411;0.317556;192692;96136 +5234/11678;Vesta projective coordinates: equality (random_same_objects);0.306794;0.019921;0.326824;192936;96132 +5235/11678;Vesta projective coordinates: Group properties (check_bytes_random);0.295713;0.027972;0.323789;192940;96136 +5236/11678;Vesta projective coordinates: Group properties (check_bytes_zero);0.272903;0.044146;0.317127;192836;96380 +5237/11678;Vesta projective coordinates: Group properties (check_bytes_one);0.279487;0.035934;0.315538;193060;96392 +5238/11678;Vesta projective coordinates: Group properties (check_bytes_random_double);0.293382;0.03617;0.329655;193060;96136 +5239/11678;Vesta projective coordinates: Group properties (check_bytes_random_sum);0.2983;0.031818;0.330241;193192;96136 +5240/11678;Vesta projective coordinates: Group properties (check_bytes_random_multiplication);0.371271;0.031937;0.403371;192936;96112 +5241/11678;Vesta projective coordinates: Group properties (zero_scalar_nullifier_one);0.275849;0.039978;0.315928;193188;96136 +5242/11678;Vesta projective coordinates: Group properties (zero_scalar_nullifier_zero);0.296154;0.024012;0.320277;193060;96132 +5243/11678;Vesta projective coordinates: Group properties (zero_scalar_nullifier_random);0.286803;0.03585;0.322786;193196;96316 +5244/11678;Vesta projective coordinates: Group properties (multiply_by_one_does_nothing);0.299925;0.027993;0.328023;192936;96136 +5245/11678;Vesta projective coordinates: Group properties (opposite_of_opposite);0.305189;0.020078;0.325427;193192;96324 +5246/11678;Vesta projective coordinates: Group properties (opposite_of_opposite_using_scalar);0.301832;0.024146;0.326092;193064;96136 +5247/11678;Vesta projective coordinates: Group properties (opposite_of_zero_is_zero);0.292016;0.024001;0.316119;192936;96140 +5248/11678;Vesta projective coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.295451;0.019962;0.315604;192864;96108 +5249/11678;Vesta projective coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.272673;0.044108;0.316894;193060;96316 +5250/11678;Vesta projective coordinates: Group properties (opposite_equality);0.289606;0.0362;0.325911;193064;96392 +5251/11678;Vesta projective coordinates: Group properties (zero is the identity);0.301121;0.024089;0.325317;192932;96132 +5252/11678;Vesta projective coordinates: Group properties (distributivity);0.515941;0.031996;0.548046;192932;96136 +5253/11678;Vesta projective coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.456535;0.016018;0.472671;193060;96320 +5254/11678;Vesta projective coordinates: Group properties (opposite_existential_property);0.299547;0.023963;0.323613;192936;96100 +5255/11678;Vesta projective coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.447299;0.023962;0.471386;192932;96136 +5256/11678;Vesta projective coordinates: Group properties (multiplication_properties_on_base_field_element);0.759045;0.023969;0.783117;196140;99388 +5257/11678;Vesta projective coordinates: Group properties (double);0.307682;0.015983;0.323804;192808;96072 +5258/11678;Vesta projective coordinates: Group properties (additive_associativity_with_scalar);0.520263;0.028014;0.548386;192936;96136 +5259/11678;Vesta projective coordinates: Group properties (inverse on scalar);0.592245;0.024009;0.616375;193188;96392 +5260/11678;Vesta projective coordinates: Group properties (additive_associativity);0.303204;0.035905;0.339227;193060;96140 +5261/11678;Vesta projective coordinates: Group properties (additive_commutativity);0.312669;0.024051;0.336909;192932;96140 +5262/11678;Vesta projective coordinates: Group properties (Generator is of prime order);0.295901;0.023992;0.319995;192936;96140 +5263/11678;Vesta jacobian coordinates: value generation (random);0.304333;0.024026;0.328469;193068;96312 +5264/11678;Vesta jacobian coordinates: value generation (negate_with_one);0.292149;0.028014;0.320285;193060;96136 +5265/11678;Vesta jacobian coordinates: value generation (negate_with_zero);0.296737;0.028069;0.324919;192936;96152 +5266/11678;Vesta jacobian coordinates: value generation (negate_with_random);0.291839;0.03598;0.327916;193064;96132 +5267/11678;Vesta jacobian coordinates: value generation (double_with_random);0.290817;0.03187;0.32281;192932;96136 +5268/11678;Vesta jacobian coordinates: value generation (negate generates a valid point);0.286477;0.039788;0.326403;193060;96368 +5269/11678;Vesta jacobian coordinates: value generation (addition generates a valid point);0.282969;0.047825;0.33091;193060;96396 +5270/11678;Vesta jacobian coordinates: value generation (double generates a valid point);0.286554;0.039799;0.326462;192932;96136 +5271/11678;Vesta jacobian coordinates: value generation (scalar multiplication generates a valid point);0.422532;0.031889;0.454523;193064;96132 +5272/11678;Vesta jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.288171;0.036021;0.32429;193064;96392 +5273/11678;Vesta jacobian coordinates: value generation (check bytes on random with to_bytes);0.29926;0.02394;0.323308;193064;96136 +5274/11678;Vesta jacobian coordinates: value generation (double_with_one);0.280562;0.036072;0.316734;192932;96132 +5275/11678;Vesta jacobian coordinates: value generation (double_with_zero);0.288547;0.028053;0.316701;192932;96132 +5276/11678;Vesta jacobian coordinates: equality (zero);0.296195;0.028018;0.324321;193060;96320 +5277/11678;Vesta jacobian coordinates: equality (one);0.283604;0.035949;0.319657;193064;96392 +5278/11678;Vesta jacobian coordinates: equality (random_same_objects);0.288154;0.036019;0.324279;193192;96320 +5279/11678;Vesta jacobian coordinates: Group properties (check_bytes_random);0.30815;0.024011;0.332274;193064;96392 +5280/11678;Vesta jacobian coordinates: Group properties (check_bytes_zero);0.294789;0.023901;0.318794;193188;96392 +5281/11678;Vesta jacobian coordinates: Group properties (check_bytes_one);0.293042;0.024085;0.317232;193188;96136 +5282/11678;Vesta jacobian coordinates: Group properties (check_bytes_random_double);0.296695;0.028065;0.324863;193064;96136 +5283/11678;Vesta jacobian coordinates: Group properties (check_bytes_random_sum);0.298185;0.031806;0.330167;192940;96136 +5284/11678;Vesta jacobian coordinates: Group properties (check_bytes_random_multiplication);0.419379;0.035946;0.455425;193060;96136 +5285/11678;Vesta jacobian coordinates: Group properties (zero_scalar_nullifier_one);0.29079;0.027884;0.318786;193060;96392 +5286/11678;Vesta jacobian coordinates: Group properties (zero_scalar_nullifier_zero);0.297573;0.016085;0.313781;192932;96648 +5287/11678;Vesta jacobian coordinates: Group properties (zero_scalar_nullifier_random);0.29315;0.02811;0.321379;193064;96136 +5288/11678;Vesta jacobian coordinates: Group properties (multiply_by_one_does_nothing);0.316838;0.016042;0.332996;192936;96136 +5289/11678;Vesta jacobian coordinates: Group properties (opposite_of_opposite);0.301767;0.020117;0.321999;193060;96392 +5290/11678;Vesta jacobian coordinates: Group properties (opposite_of_opposite_using_scalar);0.303498;0.027953;0.331552;192932;96140 +5291/11678;Vesta jacobian coordinates: Group properties (opposite_of_zero_is_zero);0.304213;0.012008;0.316349;192812;96136 +5292/11678;Vesta jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.307814;0.01599;0.323922;193060;96136 +5293/11678;Vesta jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.291997;0.023999;0.316104;192936;96136 +5294/11678;Vesta jacobian coordinates: Group properties (opposite_equality);0.29679;0.028074;0.324967;192940;96136 +5295/11678;Vesta jacobian coordinates: Group properties (zero is the identity);0.315061;0.015952;0.331118;192936;96132 +5296/11678;Vesta jacobian coordinates: Group properties (distributivity);0.695558;0.027982;0.72372;193060;96256 +5297/11678;Vesta jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.568128;0.020004;0.588242;193068;96136 +5298/11678;Vesta jacobian coordinates: Group properties (opposite_existential_property);0.305667;0.020109;0.325888;193064;96132 +5299/11678;Vesta jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.540532;0.044043;0.584686;193064;96392 +5300/11678;Vesta jacobian coordinates: Group properties (multiplication_properties_on_base_field_element);1.08449;0.040018;1.12462;197032;100156 +5301/11678;Vesta jacobian coordinates: Group properties (double);0.308042;0.024003;0.332153;192932;96576 +5302/11678;Vesta jacobian coordinates: Group properties (additive_associativity_with_scalar);0.707179;0.019976;0.727304;193196;96392 +5303/11678;Vesta jacobian coordinates: Group properties (inverse on scalar);0.825441;0.024041;0.84959;193704;96936 +5304/11678;Vesta jacobian coordinates: Group properties (additive_associativity);0.312659;0.028059;0.340823;193068;96392 +5305/11678;Vesta jacobian coordinates: Group properties (additive_commutativity);0.315326;0.019957;0.33539;193064;96392 +5306/11678;Vesta jacobian coordinates: Group properties (Generator is of prime order);0.287137;0.031904;0.319143;192820;96396 +5307/11678;Vesta affine coordinates: value generation (random);0.304631;0.024049;0.328831;193188;96104 +5308/11678;Vesta affine coordinates: value generation (negate_with_one);0.281243;0.036159;0.317505;193192;96316 +5309/11678;Vesta affine coordinates: value generation (negate_with_zero);0.294462;0.027854;0.322416;192932;96136 +5310/11678;Vesta affine coordinates: value generation (negate_with_random);0.290171;0.031799;0.322138;193320;96392 +5311/11678;Vesta affine coordinates: value generation (double_with_random);0.295017;0.027907;0.323042;192936;96128 +5312/11678;Vesta affine coordinates: value generation (negate generates a valid point);0.298561;0.023884;0.322564;192936;96136 +5313/11678;Vesta affine coordinates: value generation (addition generates a valid point);0.313499;0.016076;0.329688;193188;96392 +5314/11678;Vesta affine coordinates: value generation (double generates a valid point);0.282778;0.039827;0.322706;193188;96392 +5315/11678;Vesta affine coordinates: value generation (scalar multiplication generates a valid point);0.425809;0.028119;0.454027;192936;96132 +5316/11678;Vesta affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.301683;0.020112;0.321913;192936;96132 +5317/11678;Vesta affine coordinates: value generation (check bytes on random with to_bytes);0.302818;0.023906;0.326824;193060;96136 +5318/11678;Vesta affine coordinates: value generation (double_with_one);0.292106;0.024008;0.316225;193068;96208 +5319/11678;Vesta affine coordinates: value generation (double_with_zero);0.290922;0.027896;0.318918;193060;96132 +5320/11678;Vesta affine coordinates: equality (zero);0.288743;0.028072;0.316921;193060;96316 +5321/11678;Vesta affine coordinates: equality (one);0.29708;0.024087;0.321273;193064;96136 +5322/11678;Vesta affine coordinates: equality (random_same_objects);0.3015;0.0201;0.321703;193192;96392 +5323/11678;Vesta affine coordinates: Group properties (check_bytes_random);0.298353;0.023868;0.322299;192744;96064 +5324/11678;Vesta affine coordinates: Group properties (check_bytes_zero);0.294357;0.023866;0.318327;192936;96132 +5325/11678;Vesta affine coordinates: Group properties (check_bytes_one);0.295608;0.019973;0.315677;193192;96392 +5326/11678;Vesta affine coordinates: Group properties (check_bytes_random_double);0.303546;0.023964;0.327632;193068;96136 +5327/11678;Vesta affine coordinates: Group properties (check_bytes_random_sum);0.32334;0.015967;0.33942;192932;96136 +5328/11678;Vesta affine coordinates: Group properties (check_bytes_random_multiplication);0.437133;0.024062;0.461301;193064;96392 +5329/11678;Vesta affine coordinates: Group properties (zero_scalar_nullifier_one);0.290701;0.027875;0.318683;192932;96132 +5330/11678;Vesta affine coordinates: Group properties (zero_scalar_nullifier_zero);0.284618;0.036078;0.320804;192932;96132 +5331/11678;Vesta affine coordinates: Group properties (zero_scalar_nullifier_random);0.304805;0.024063;0.328994;193064;96392 +5332/11678;Vesta affine coordinates: Group properties (multiply_by_one_does_nothing);0.291222;0.035904;0.327232;193064;96136 +5333/11678;Vesta affine coordinates: Group properties (opposite_of_opposite);0.289341;0.032149;0.321599;193064;96332 +5334/11678;Vesta affine coordinates: Group properties (opposite_of_opposite_using_scalar);0.302777;0.023903;0.326791;193192;96392 +5335/11678;Vesta affine coordinates: Group properties (opposite_of_zero_is_zero);0.295018;0.019933;0.315058;192804;96392 +5336/11678;Vesta affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.287044;0.027907;0.315123;192756;96460 +5337/11678;Vesta affine coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.276796;0.040115;0.317017;192940;96136 +5338/11678;Vesta affine coordinates: Group properties (opposite_equality);0.290869;0.031876;0.322864;193060;96392 +5339/11678;Vesta affine coordinates: Group properties (zero is the identity);0.305301;0.024102;0.329504;192932;96136 +5340/11678;Vesta affine coordinates: Group properties (distributivity);0.736244;0.012003;0.748347;193060;96136 +5341/11678;Vesta affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.565664;0.02407;0.589829;192936;96100 +5342/11678;Vesta affine coordinates: Group properties (opposite_existential_property);0.304496;0.020032;0.324629;193060;96392 +5343/11678;Vesta affine coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.568866;0.024036;0.593011;193192;96392 +5344/11678;Vesta affine coordinates: Group properties (multiplication_properties_on_base_field_element);1.11319;0.020021;1.13331;192936;96136 +5345/11678;Vesta affine coordinates: Group properties (double);0.29917;0.023933;0.323202;193064;96312 +5346/11678;Vesta affine coordinates: Group properties (additive_associativity_with_scalar);0.700768;0.02803;0.728911;193192;96312 +5347/11678;Vesta affine coordinates: Group properties (inverse on scalar);0.839497;0.019988;0.859586;193064;96136 +5348/11678;Vesta affine coordinates: Group properties (additive_associativity);0.316523;0.028046;0.34468;193064;96136 +5349/11678;Vesta affine coordinates: Group properties (additive_commutativity);0.310732;0.023902;0.334742;193068;96392 +5350/11678;Vesta affine coordinates: Group properties (Generator is of prime order);0.299129;0.02393;0.323167;193064;96236 +5351/11678;Vesta affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes);0.289643;0.028159;0.317921;193064;96200 +5352/11678;Vesta affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation);0.313072;0.020068;0.333242;193068;96312 +5353/11678;Vesta affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation);0.304345;0.032036;0.336615;193192;96392 +5354/11678;Vesta affine coordinates: Compressed representation (Compressed version is half the size);0.276583;0.044092;0.320876;192936;96252 +5355/11678;Vesta affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation);0.29087;0.03586;0.326843;193064;96136 +5356/11678;Vesta affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation);0.298614;0.023889;0.322614;192940;96136 +5357/11678;Tweedledum projective coordinates: value generation (random);0.29464;0.027871;0.322612;193060;96392 +5358/11678;Tweedledum projective coordinates: value generation (negate_with_one);0.297004;0.024081;0.321185;193060;96136 +5359/11678;Tweedledum projective coordinates: value generation (negate_with_zero);0.263545;0.05191;0.315553;193064;96316 +5360/11678;Tweedledum projective coordinates: value generation (negate_with_random);0.276822;0.048142;0.325072;193188;96648 +5361/11678;Tweedledum projective coordinates: value generation (double_with_random);0.298916;0.027898;0.326925;192680;96396 +5362/11678;Tweedledum projective coordinates: value generation (negate generates a valid point);0.299451;0.023956;0.323508;192932;96132 +5363/11678;Tweedledum projective coordinates: value generation (addition generates a valid point);0.300967;0.032103;0.333189;193060;96392 +5364/11678;Tweedledum projective coordinates: value generation (double generates a valid point);0.30719;0.015957;0.323261;192936;96132 +5365/11678;Tweedledum projective coordinates: value generation (scalar multiplication generates a valid point);0.379074;0.019951;0.39912;193064;96044 +5366/11678;Tweedledum projective coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.305389;0.016073;0.321585;193068;96168 +5367/11678;Tweedledum projective coordinates: value generation (check bytes on random with to_bytes);0.308151;0.020009;0.328255;192940;96136 +5368/11678;Tweedledum projective coordinates: value generation (double_with_one);0.303096;0.015952;0.31928;193064;96340 +5369/11678;Tweedledum projective coordinates: value generation (double_with_zero);0.284883;0.032099;0.317104;193192;96388 +5370/11678;Tweedledum projective coordinates: equality (zero);0.294677;0.01991;0.314691;192936;96132 +5371/11678;Tweedledum projective coordinates: equality (one);0.293147;0.02811;0.321361;193192;96392 +5372/11678;Tweedledum projective coordinates: equality (random_same_objects);0.301351;0.028126;0.329574;193064;96136 +5373/11678;Tweedledum projective coordinates: Group properties (check_bytes_random);0.284172;0.040024;0.324324;192932;96136 +5374/11678;Tweedledum projective coordinates: Group properties (check_bytes_zero);0.290146;0.027822;0.318106;193192;96392 +5375/11678;Tweedledum projective coordinates: Group properties (check_bytes_one);0.30457;0.020037;0.324715;193196;96392 +5376/11678;Tweedledum projective coordinates: Group properties (check_bytes_random_double);0.304439;0.024034;0.328571;193060;96196 +5377/11678;Tweedledum projective coordinates: Group properties (check_bytes_random_sum);0.317667;0.016084;0.33385;192936;96132 +5378/11678;Tweedledum projective coordinates: Group properties (check_bytes_random_multiplication);0.36908;0.032093;0.401279;192976;96224 +5379/11678;Tweedledum projective coordinates: Group properties (zero_scalar_nullifier_one);0.290083;0.024173;0.314362;192936;96136 +5380/11678;Tweedledum projective coordinates: Group properties (zero_scalar_nullifier_zero);0.289403;0.036175;0.325688;192940;96136 +5381/11678;Tweedledum projective coordinates: Group properties (zero_scalar_nullifier_random);0.300548;0.024043;0.324693;193068;96136 +5382/11678;Tweedledum projective coordinates: Group properties (multiply_by_one_does_nothing);0.305616;0.020106;0.325824;193064;96388 +5383/11678;Tweedledum projective coordinates: Group properties (opposite_of_opposite);0.304835;0.020054;0.32499;193188;96136 +5384/11678;Tweedledum projective coordinates: Group properties (opposite_of_opposite_using_scalar);0.302628;0.019909;0.32264;193068;96392 +5385/11678;Tweedledum projective coordinates: Group properties (opposite_of_zero_is_zero);0.289266;0.03214;0.321511;193064;96320 +5386/11678;Tweedledum projective coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.29481;0.023903;0.31883;193192;96136 +5387/11678;Tweedledum projective coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.284204;0.036025;0.320431;193064;96208 +5388/11678;Tweedledum projective coordinates: Group properties (opposite_equality);0.303019;0.019935;0.323074;193064;96136 +5389/11678;Tweedledum projective coordinates: Group properties (zero is the identity);0.315315;0.015965;0.331381;192940;96136 +5390/11678;Tweedledum projective coordinates: Group properties (distributivity);0.533489;0.016044;0.549626;192932;96132 +5391/11678;Tweedledum projective coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.451079;0.023951;0.475131;193064;96136 +5392/11678;Tweedledum projective coordinates: Group properties (opposite_existential_property);0.297714;0.028162;0.326016;193068;96164 +5393/11678;Tweedledum projective coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.439778;0.023987;0.463881;193192;96316 +5394/11678;Tweedledum projective coordinates: Group properties (multiplication_properties_on_base_field_element);0.755925;0.019998;0.776023;196136;99380 +5395/11678;Tweedledum projective coordinates: Group properties (double);0.305579;0.016083;0.321778;193060;96320 +5396/11678;Tweedledum projective coordinates: Group properties (additive_associativity_with_scalar);0.489131;0.056129;0.545372;192804;96320 +5397/11678;Tweedledum projective coordinates: Group properties (inverse on scalar);0.577566;0.032087;0.609733;192976;96392 +5398/11678;Tweedledum projective coordinates: Group properties (additive_associativity);0.301683;0.032179;0.333966;193064;96128 +5399/11678;Tweedledum projective coordinates: Group properties (additive_commutativity);0.301058;0.036127;0.337292;193060;96396 +5400/11678;Tweedledum projective coordinates: Group properties (Generator is of prime order);0.289659;0.028161;0.317934;193064;96312 +5401/11678;Tweedledum jacobian coordinates: value generation (random);0.30041;0.028038;0.328551;192940;96136 +5402/11678;Tweedledum jacobian coordinates: value generation (negate_with_one);0.28952;0.024126;0.313748;192808;96132 +5403/11678;Tweedledum jacobian coordinates: value generation (negate_with_zero);0.296;0.028;0.324109;192932;96136 +5404/11678;Tweedledum jacobian coordinates: value generation (negate_with_random);0.295387;0.027942;0.323436;193188;96360 +5405/11678;Tweedledum jacobian coordinates: value generation (double_with_random);0.275737;0.05195;0.327792;193064;96136 +5406/11678;Tweedledum jacobian coordinates: value generation (negate generates a valid point);0.291404;0.031934;0.32344;193068;96136 +5407/11678;Tweedledum jacobian coordinates: value generation (addition generates a valid point);0.304856;0.03209;0.337056;193068;96136 +5408/11678;Tweedledum jacobian coordinates: value generation (double generates a valid point);0.305483;0.016078;0.321661;193060;96132 +5409/11678;Tweedledum jacobian coordinates: value generation (scalar multiplication generates a valid point);0.42188;0.032143;0.45413;193064;96388 +5410/11678;Tweedledum jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.310829;0.015939;0.326928;192932;96236 +5411/11678;Tweedledum jacobian coordinates: value generation (check bytes on random with to_bytes);0.297197;0.028113;0.32541;193064;96248 +5412/11678;Tweedledum jacobian coordinates: value generation (double_with_one);0.301855;0.020123;0.322082;192936;96136 +5413/11678;Tweedledum jacobian coordinates: value generation (double_with_zero);0.287583;0.027959;0.315644;193188;96136 +5414/11678;Tweedledum jacobian coordinates: equality (zero);0.287072;0.031896;0.319078;193192;96328 +5415/11678;Tweedledum jacobian coordinates: equality (one);0.294531;0.02388;0.318495;193100;96388 +5416/11678;Tweedledum jacobian coordinates: equality (random_same_objects);0.289014;0.036126;0.325241;192932;96136 +5417/11678;Tweedledum jacobian coordinates: Group properties (check_bytes_random);0.298547;0.031845;0.330492;193060;96136 +5418/11678;Tweedledum jacobian coordinates: Group properties (check_bytes_zero);0.291028;0.027906;0.319034;192940;96136 +5419/11678;Tweedledum jacobian coordinates: Group properties (check_bytes_one);0.276034;0.040005;0.316151;193064;96388 +5420/11678;Tweedledum jacobian coordinates: Group properties (check_bytes_random_double);0.300498;0.024039;0.324643;192936;96136 +5421/11678;Tweedledum jacobian coordinates: Group properties (check_bytes_random_sum);0.309676;0.02413;0.333921;193064;96392 +5422/11678;Tweedledum jacobian coordinates: Group properties (check_bytes_random_multiplication);0.430867;0.031916;0.462881;193192;96300 +5423/11678;Tweedledum jacobian coordinates: Group properties (zero_scalar_nullifier_one);0.289132;0.02811;0.317338;193064;96136 +5424/11678;Tweedledum jacobian coordinates: Group properties (zero_scalar_nullifier_zero);0.287044;0.031893;0.319046;193188;96132 +5425/11678;Tweedledum jacobian coordinates: Group properties (zero_scalar_nullifier_random);0.308109;0.020007;0.328189;193048;96392 +5426/11678;Tweedledum jacobian coordinates: Group properties (multiply_by_one_does_nothing);0.295001;0.027905;0.32302;193196;96388 +5427/11678;Tweedledum jacobian coordinates: Group properties (opposite_of_opposite);0.287422;0.031935;0.319467;192940;96112 +5428/11678;Tweedledum jacobian coordinates: Group properties (opposite_of_opposite_using_scalar);0.303043;0.023924;0.327077;193064;96136 +5429/11678;Tweedledum jacobian coordinates: Group properties (opposite_of_zero_is_zero);0.283882;0.035985;0.319973;193060;96392 +5430/11678;Tweedledum jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.286204;0.027825;0.314202;193008;96336 +5431/11678;Tweedledum jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.30679;0.015937;0.32283;193188;96136 +5432/11678;Tweedledum jacobian coordinates: Group properties (opposite_equality);0.305406;0.024111;0.329631;192936;96132 +5433/11678;Tweedledum jacobian coordinates: Group properties (zero is the identity);0.299184;0.031913;0.331199;193192;96140 +5434/11678;Tweedledum jacobian coordinates: Group properties (distributivity);0.722579;0.015968;0.738666;193188;96396 +5435/11678;Tweedledum jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.57117;0.015976;0.587246;193064;96136 +5436/11678;Tweedledum jacobian coordinates: Group properties (opposite_existential_property);0.304703;0.024055;0.328857;193120;96388 +5437/11678;Tweedledum jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.551447;0.031967;0.583526;192808;96132 +5438/11678;Tweedledum jacobian coordinates: Group properties (multiplication_properties_on_base_field_element);1.10441;0.020007;1.12452;196900;100152 +5439/11678;Tweedledum jacobian coordinates: Group properties (double);0.305594;0.020104;0.325797;192936;96136 +5440/11678;Tweedledum jacobian coordinates: Group properties (additive_associativity_with_scalar);0.696431;0.020012;0.716545;193060;96136 +5441/11678;Tweedledum jacobian coordinates: Group properties (inverse on scalar);0.836347;0.020008;0.856476;193828;96824 +5442/11678;Tweedledum jacobian coordinates: Group properties (additive_associativity);0.32685;0.015943;0.342945;193188;96392 +5443/11678;Tweedledum jacobian coordinates: Group properties (additive_commutativity);0.303996;0.027999;0.33212;193064;96132 +5444/11678;Tweedledum jacobian coordinates: Group properties (Generator is of prime order);0.293545;0.028148;0.321797;192808;96044 +5445/11678;Tweedledum affine coordinates: value generation (random);0.282591;0.039801;0.322495;192936;96136 +5446/11678;Tweedledum affine coordinates: value generation (negate_with_one);0.290608;0.027866;0.318578;192936;96140 +5447/11678;Tweedledum affine coordinates: value generation (negate_with_zero);0.287879;0.035984;0.323987;193060;96136 +5448/11678;Tweedledum affine coordinates: value generation (negate_with_random);0.318633;0.011948;0.330682;193064;96136 +5449/11678;Tweedledum affine coordinates: value generation (double_with_random);0.291742;0.039964;0.331881;192932;96184 +5450/11678;Tweedledum affine coordinates: value generation (negate generates a valid point);0.291353;0.03592;0.327378;192936;96132 +5451/11678;Tweedledum affine coordinates: value generation (addition generates a valid point);0.290646;0.035833;0.326581;193064;96136 +5452/11678;Tweedledum affine coordinates: value generation (double generates a valid point);0.305863;0.016098;0.322042;193000;96392 +5453/11678;Tweedledum affine coordinates: value generation (scalar multiplication generates a valid point);0.430942;0.023941;0.454966;193060;96136 +5454/11678;Tweedledum affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.29913;0.031907;0.33118;193068;96388 +5455/11678;Tweedledum affine coordinates: value generation (check bytes on random with to_bytes);0.31131;0.011973;0.323443;193064;96236 +5456/11678;Tweedledum affine coordinates: value generation (double_with_one);0.294693;0.019911;0.314707;192940;96140 +5457/11678;Tweedledum affine coordinates: value generation (double_with_zero);0.28303;0.03189;0.315026;192932;96132 +5458/11678;Tweedledum affine coordinates: equality (zero);0.293433;0.028137;0.321649;192924;96228 +5459/11678;Tweedledum affine coordinates: equality (one);0.290585;0.023883;0.314557;192932;96136 +5460/11678;Tweedledum affine coordinates: equality (random_same_objects);0.304174;0.020011;0.324289;193188;96392 +5461/11678;Tweedledum affine coordinates: Group properties (check_bytes_random);0.267334;0.05586;0.323308;192940;96136 +5462/11678;Tweedledum affine coordinates: Group properties (check_bytes_zero);0.297503;0.020101;0.317785;193188;96312 +5463/11678;Tweedledum affine coordinates: Group properties (check_bytes_one);0.284826;0.028081;0.313023;193064;96392 +5464/11678;Tweedledum affine coordinates: Group properties (check_bytes_random_double);0.295468;0.031942;0.327534;193060;96392 +5465/11678;Tweedledum affine coordinates: Group properties (check_bytes_random_sum);0.278671;0.051753;0.330528;193192;96392 +5466/11678;Tweedledum affine coordinates: Group properties (check_bytes_random_multiplication);0.452299;0.020013;0.472414;193064;96392 +5467/11678;Tweedledum affine coordinates: Group properties (zero_scalar_nullifier_one);0.291507;0.023959;0.315569;192936;96156 +5468/11678;Tweedledum affine coordinates: Group properties (zero_scalar_nullifier_zero);0.284415;0.02804;0.312566;193060;96132 +5469/11678;Tweedledum affine coordinates: Group properties (zero_scalar_nullifier_random);0.299757;0.031974;0.331828;193192;96392 +5470/11678;Tweedledum affine coordinates: Group properties (multiply_by_one_does_nothing);0.287053;0.035881;0.323047;192932;96136 +5471/11678;Tweedledum affine coordinates: Group properties (opposite_of_opposite);0.3096;0.016083;0.325807;193064;96164 +5472/11678;Tweedledum affine coordinates: Group properties (opposite_of_opposite_using_scalar);0.294993;0.035877;0.330994;192936;96136 +5473/11678;Tweedledum affine coordinates: Group properties (opposite_of_zero_is_zero);0.277393;0.040201;0.317702;193320;96392 +5474/11678;Tweedledum affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.274708;0.039812;0.314662;193064;96136 +5475/11678;Tweedledum affine coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.292892;0.024073;0.317065;193068;96268 +5476/11678;Tweedledum affine coordinates: Group properties (opposite_equality);0.312352;0.016018;0.328475;193064;96136 +5477/11678;Tweedledum affine coordinates: Group properties (zero is the identity);0.304307;0.02002;0.32443;193064;96136 +5478/11678;Tweedledum affine coordinates: Group properties (distributivity);0.709236;0.020034;0.729379;193064;96132 +5479/11678;Tweedledum affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.56375;0.031985;0.595831;193192;96392 +5480/11678;Tweedledum affine coordinates: Group properties (opposite_existential_property);0.306693;0.015932;0.32273;193064;96032 +5481/11678;Tweedledum affine coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.563945;0.023997;0.588048;193192;96388 +5482/11678;Tweedledum affine coordinates: Group properties (multiplication_properties_on_base_field_element);1.10064;0.020011;1.12075;193060;96388 +5483/11678;Tweedledum affine coordinates: Group properties (double);0.303658;0.019977;0.323748;193068;96396 +5484/11678;Tweedledum affine coordinates: Group properties (additive_associativity_with_scalar);0.688965;0.028039;0.717103;192936;96136 +5485/11678;Tweedledum affine coordinates: Group properties (inverse on scalar);0.823054;0.023972;0.847122;193188;96204 +5486/11678;Tweedledum affine coordinates: Group properties (additive_associativity);0.305386;0.036164;0.341659;193068;96392 +5487/11678;Tweedledum affine coordinates: Group properties (additive_commutativity);0.291303;0.039904;0.331341;193064;96136 +5488/11678;Tweedledum affine coordinates: Group properties (Generator is of prime order);0.299782;0.015988;0.315872;192940;96132 +5489/11678;Tweedledum affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes);0.272301;0.048053;0.320464;193064;96136 +5490/11678;Tweedledum affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation);0.30695;0.019931;0.326984;193064;96136 +5491/11678;Tweedledum affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation);0.304604;0.028055;0.332808;193188;96408 +5492/11678;Tweedledum affine coordinates: Compressed representation (Compressed version is half the size);0.29639;0.020026;0.316517;192936;96136 +5493/11678;Tweedledum affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation);0.292404;0.028038;0.320574;193060;96136 +5494/11678;Tweedledum affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation);0.281776;0.040253;0.322127;193064;96136 +5495/11678;Tweedledee projective coordinates: value generation (random);0.301847;0.020123;0.32207;193192;96136 +5496/11678;Tweedledee projective coordinates: value generation (negate_with_one);0.281295;0.036166;0.317566;193064;96132 +5497/11678;Tweedledee projective coordinates: value generation (negate_with_zero);0.282797;0.03983;0.322751;193192;96300 +5498/11678;Tweedledee projective coordinates: value generation (negate_with_random);0.303599;0.023968;0.327713;192936;96064 +5499/11678;Tweedledee projective coordinates: value generation (double_with_random);0.283732;0.039962;0.323801;193192;96344 +5500/11678;Tweedledee projective coordinates: value generation (negate generates a valid point);0.287127;0.03589;0.323154;193188;96392 +5501/11678;Tweedledee projective coordinates: value generation (addition generates a valid point);0.303176;0.027924;0.33122;193064;96136 +5502/11678;Tweedledee projective coordinates: value generation (double generates a valid point);0.305131;0.020074;0.325303;193064;96136 +5503/11678;Tweedledee projective coordinates: value generation (scalar multiplication generates a valid point);0.350457;0.043807;0.394367;193064;96384 +5504/11678;Tweedledee projective coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.311931;0.015996;0.328038;193060;96136 +5505/11678;Tweedledee projective coordinates: value generation (check bytes on random with to_bytes);0.296476;0.032051;0.328632;192932;96136 +5506/11678;Tweedledee projective coordinates: value generation (double_with_one);0.300203;0.020013;0.32033;193188;96396 +5507/11678;Tweedledee projective coordinates: value generation (double_with_zero);0.300717;0.024057;0.32488;193064;96412 +5508/11678;Tweedledee projective coordinates: equality (zero);0.304722;0.016038;0.320865;193068;96136 +5509/11678;Tweedledee projective coordinates: equality (one);0.297315;0.020088;0.317516;193064;96392 +5510/11678;Tweedledee projective coordinates: equality (random_same_objects);0.297511;0.028142;0.325768;193060;96392 +5511/11678;Tweedledee projective coordinates: Group properties (check_bytes_random);0.298851;0.023908;0.322881;193064;96328 +5512/11678;Tweedledee projective coordinates: Group properties (check_bytes_zero);0.302996;0.01196;0.315061;192940;96068 +5513/11678;Tweedledee projective coordinates: Group properties (check_bytes_one);0.284861;0.028084;0.31305;193060;96140 +5514/11678;Tweedledee projective coordinates: Group properties (check_bytes_random_double);0.28937;0.036171;0.325661;193064;96392 +5515/11678;Tweedledee projective coordinates: Group properties (check_bytes_random_sum);0.301285;0.032137;0.333527;193060;96392 +5516/11678;Tweedledee projective coordinates: Group properties (check_bytes_random_multiplication);0.379854;0.015993;0.396045;193192;96148 +5517/11678;Tweedledee projective coordinates: Group properties (zero_scalar_nullifier_one);0.281119;0.036143;0.317375;193060;96392 +5518/11678;Tweedledee projective coordinates: Group properties (zero_scalar_nullifier_zero);0.279817;0.039973;0.319895;193188;96312 +5519/11678;Tweedledee projective coordinates: Group properties (zero_scalar_nullifier_random);0.293124;0.028107;0.321342;193196;96392 +5520/11678;Tweedledee projective coordinates: Group properties (multiply_by_one_does_nothing);0.300411;0.024032;0.324556;193192;96132 +5521/11678;Tweedledee projective coordinates: Group properties (opposite_of_opposite);0.287567;0.035945;0.323628;193068;96128 +5522/11678;Tweedledee projective coordinates: Group properties (opposite_of_opposite_using_scalar);0.307567;0.015977;0.323644;193188;96392 +5523/11678;Tweedledee projective coordinates: Group properties (opposite_of_zero_is_zero);0.2943;0.023862;0.318268;193068;96136 +5524/11678;Tweedledee projective coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.298562;0.023885;0.322551;192936;96132 +5525/11678;Tweedledee projective coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.287138;0.027916;0.315153;193060;96320 +5526/11678;Tweedledee projective coordinates: Group properties (opposite_equality);0.309817;0.016094;0.326017;193060;96316 +5527/11678;Tweedledee projective coordinates: Group properties (zero is the identity);0.301549;0.024123;0.325778;193064;96320 +5528/11678;Tweedledee projective coordinates: Group properties (distributivity);0.516826;0.036057;0.552982;192936;96200 +5529/11678;Tweedledee projective coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.439882;0.027992;0.467972;193064;96136 +5530/11678;Tweedledee projective coordinates: Group properties (opposite_existential_property);0.312607;0.008015;0.320801;192936;96136 +5531/11678;Tweedledee projective coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.44558;0.028099;0.473786;192936;96132 +5532/11678;Tweedledee projective coordinates: Group properties (multiplication_properties_on_base_field_element);0.745345;0.024043;0.769465;196096;99392 +5533/11678;Tweedledee projective coordinates: Group properties (double);0.30083;0.028077;0.329089;193060;96136 +5534/11678;Tweedledee projective coordinates: Group properties (additive_associativity_with_scalar);0.53838;0.011964;0.55044;193064;96132 +5535/11678;Tweedledee projective coordinates: Group properties (inverse on scalar);0.601214;0.016032;0.617347;193316;96320 +5536/11678;Tweedledee projective coordinates: Group properties (additive_associativity);0.312459;0.032047;0.344638;192936;96088 +5537/11678;Tweedledee projective coordinates: Group properties (additive_commutativity);0.303616;0.027964;0.33168;193192;96392 +5538/11678;Tweedledee projective coordinates: Group properties (Generator is of prime order);0.302615;0.019908;0.322622;193068;96252 +5539/11678;Tweedledee jacobian coordinates: value generation (random);0.296322;0.02803;0.324426;192872;96308 +5540/11678;Tweedledee jacobian coordinates: value generation (negate_with_one);0.268728;0.04813;0.31697;193064;96388 +5541/11678;Tweedledee jacobian coordinates: value generation (negate_with_zero);0.296305;0.02002;0.316421;193064;96168 +5542/11678;Tweedledee jacobian coordinates: value generation (negate_with_random);0.306987;0.019934;0.327028;192932;96024 +5543/11678;Tweedledee jacobian coordinates: value generation (double_with_random);0.299237;0.031918;0.331271;192808;96132 +5544/11678;Tweedledee jacobian coordinates: value generation (negate generates a valid point);0.288022;0.032002;0.320127;193068;96392 +5545/11678;Tweedledee jacobian coordinates: value generation (addition generates a valid point);0.312363;0.016018;0.328489;192932;96136 +5546/11678;Tweedledee jacobian coordinates: value generation (double generates a valid point);0.316116;0.016005;0.332222;193064;96388 +5547/11678;Tweedledee jacobian coordinates: value generation (scalar multiplication generates a valid point);0.419095;0.039913;0.459194;193064;96108 +5548/11678;Tweedledee jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.2773;0.048226;0.325628;192940;96136 +5549/11678;Tweedledee jacobian coordinates: value generation (check bytes on random with to_bytes);0.303748;0.02398;0.327835;193064;96136 +5550/11678;Tweedledee jacobian coordinates: value generation (double_with_one);0.299003;0.02392;0.323025;192932;96128 +5551/11678;Tweedledee jacobian coordinates: value generation (double_with_zero);0.286434;0.035804;0.322342;192936;96132 +5552/11678;Tweedledee jacobian coordinates: equality (zero);0.294335;0.027842;0.322276;193060;96136 +5553/11678;Tweedledee jacobian coordinates: equality (one);0.310688;0.011949;0.322746;193188;96352 +5554/11678;Tweedledee jacobian coordinates: equality (random_same_objects);0.29979;0.023983;0.323895;192804;96392 +5555/11678;Tweedledee jacobian coordinates: Group properties (check_bytes_random);0.299515;0.023961;0.323578;193064;96140 +5556/11678;Tweedledee jacobian coordinates: Group properties (check_bytes_zero);0.264801;0.052157;0.317054;192932;96132 +5557/11678;Tweedledee jacobian coordinates: Group properties (check_bytes_one);0.280443;0.03205;0.312596;193192;96136 +5558/11678;Tweedledee jacobian coordinates: Group properties (check_bytes_random_double);0.288132;0.036016;0.324251;192936;96136 +5559/11678;Tweedledee jacobian coordinates: Group properties (check_bytes_random_sum);0.311804;0.019987;0.331899;193060;96388 +5560/11678;Tweedledee jacobian coordinates: Group properties (check_bytes_random_multiplication);0.463819;0.02399;0.487909;193196;96392 +5561/11678;Tweedledee jacobian coordinates: Group properties (zero_scalar_nullifier_one);0.293356;0.02813;0.321601;193064;96388 +5562/11678;Tweedledee jacobian coordinates: Group properties (zero_scalar_nullifier_zero);0.283743;0.035967;0.319846;193060;96392 +5563/11678;Tweedledee jacobian coordinates: Group properties (zero_scalar_nullifier_random);0.291257;0.031918;0.323274;192808;96136 +5564/11678;Tweedledee jacobian coordinates: Group properties (multiply_by_one_does_nothing);0.300606;0.024048;0.324762;193192;96384 +5565/11678;Tweedledee jacobian coordinates: Group properties (opposite_of_opposite);0.294949;0.0279;0.322953;193064;96292 +5566/11678;Tweedledee jacobian coordinates: Group properties (opposite_of_opposite_using_scalar);0.306258;0.023864;0.330197;192880;96048 +5567/11678;Tweedledee jacobian coordinates: Group properties (opposite_of_zero_is_zero);0.287709;0.027971;0.315804;193192;96392 +5568/11678;Tweedledee jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.292247;0.02402;0.316375;192932;96136 +5569/11678;Tweedledee jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.302649;0.015928;0.318692;193316;96136 +5570/11678;Tweedledee jacobian coordinates: Group properties (opposite_equality);0.288045;0.040006;0.328187;193060;96132 +5571/11678;Tweedledee jacobian coordinates: Group properties (zero is the identity);0.284674;0.040094;0.324873;193324;96392 +5572/11678;Tweedledee jacobian coordinates: Group properties (distributivity);0.712774;0.020021;0.732915;192932;96140 +5573/11678;Tweedledee jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.563661;0.023985;0.587749;192940;96136 +5574/11678;Tweedledee jacobian coordinates: Group properties (opposite_existential_property);0.311201;0.019948;0.331347;192936;96276 +5575/11678;Tweedledee jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.568198;0.024008;0.592346;193068;96388 +5576/11678;Tweedledee jacobian coordinates: Group properties (multiplication_properties_on_base_field_element);1.07809;0.02795;1.10615;197032;100160 +5577/11678;Tweedledee jacobian coordinates: Group properties (double);0.307236;0.02394;0.331385;192936;96228 +5578/11678;Tweedledee jacobian coordinates: Group properties (additive_associativity_with_scalar);0.710507;0.015966;0.726654;193192;96276 +5579/11678;Tweedledee jacobian coordinates: Group properties (inverse on scalar);0.843655;0.015993;0.859763;193828;97088 +5580/11678;Tweedledee jacobian coordinates: Group properties (additive_associativity);0.318216;0.027843;0.346157;193068;96392 +5581/11678;Tweedledee jacobian coordinates: Group properties (additive_commutativity);0.30863;0.024049;0.332783;192936;96136 +5582/11678;Tweedledee jacobian coordinates: Group properties (Generator is of prime order);0.300521;0.016027;0.316671;193060;96136 +5583/11678;Tweedledee affine coordinates: value generation (random);0.302451;0.019898;0.322456;193192;96388 +5584/11678;Tweedledee affine coordinates: value generation (negate_with_one);0.294799;0.023902;0.318819;192936;96136 +5585/11678;Tweedledee affine coordinates: value generation (negate_with_zero);0.303453;0.019964;0.323495;192756;96132 +5586/11678;Tweedledee affine coordinates: value generation (negate_with_random);0.303555;0.01997;0.323624;193068;96140 +5587/11678;Tweedledee affine coordinates: value generation (double_with_random);0.299019;0.027908;0.327055;192936;96136 +5588/11678;Tweedledee affine coordinates: value generation (negate generates a valid point);0.299686;0.02797;0.327788;192932;96136 +5589/11678;Tweedledee affine coordinates: value generation (addition generates a valid point);0.303415;0.027946;0.331459;193064;96392 +5590/11678;Tweedledee affine coordinates: value generation (double generates a valid point);0.308407;0.016021;0.324539;192936;96208 +5591/11678;Tweedledee affine coordinates: value generation (scalar multiplication generates a valid point);0.434716;0.027917;0.462731;193196;96132 +5592/11678;Tweedledee affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.297917;0.024155;0.322192;193064;96200 +5593/11678;Tweedledee affine coordinates: value generation (check bytes on random with to_bytes);0.295666;0.031963;0.327737;193060;96136 +5594/11678;Tweedledee affine coordinates: value generation (double_with_one);0.26569;0.052332;0.318127;193068;96136 +5595/11678;Tweedledee affine coordinates: value generation (double_with_zero);0.290287;0.02419;0.314589;192936;96136 +5596/11678;Tweedledee affine coordinates: equality (zero);0.279719;0.035963;0.315784;192936;96392 +5597/11678;Tweedledee affine coordinates: equality (one);0.284058;0.040008;0.324183;193064;96392 +5598/11678;Tweedledee affine coordinates: equality (random_same_objects);0.298659;0.027874;0.326647;192808;96316 +5599/11678;Tweedledee affine coordinates: Group properties (check_bytes_random);0.305255;0.016066;0.321426;192936;96136 +5600/11678;Tweedledee affine coordinates: Group properties (check_bytes_zero);0.289195;0.024099;0.3134;193320;96388 +5601/11678;Tweedledee affine coordinates: Group properties (check_bytes_one);0.290287;0.031812;0.322202;193064;96136 +5602/11678;Tweedledee affine coordinates: Group properties (check_bytes_random_double);0.304692;0.020045;0.32484;193064;96240 +5603/11678;Tweedledee affine coordinates: Group properties (check_bytes_random_sum);0.304736;0.028067;0.332909;192936;96136 +5604/11678;Tweedledee affine coordinates: Group properties (check_bytes_random_multiplication);0.426707;0.027915;0.454722;192936;96132 +5605/11678;Tweedledee affine coordinates: Group properties (zero_scalar_nullifier_one);0.301119;0.024089;0.325309;192936;96136 +5606/11678;Tweedledee affine coordinates: Group properties (zero_scalar_nullifier_zero);0.298736;0.015932;0.314766;192932;96136 +5607/11678;Tweedledee affine coordinates: Group properties (zero_scalar_nullifier_random);0.303033;0.019936;0.323075;192804;96136 +5608/11678;Tweedledee affine coordinates: Group properties (multiply_by_one_does_nothing);0.293362;0.032149;0.325635;193060;96136 +5609/11678;Tweedledee affine coordinates: Group properties (opposite_of_opposite);0.30926;0.020081;0.329449;192936;96136 +5610/11678;Tweedledee affine coordinates: Group properties (opposite_of_opposite_using_scalar);0.299161;0.023932;0.323195;193064;96320 +5611/11678;Tweedledee affine coordinates: Group properties (opposite_of_zero_is_zero);0.296273;0.016014;0.312387;193192;96136 +5612/11678;Tweedledee affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.296454;0.028043;0.324601;192936;96136 +5613/11678;Tweedledee affine coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.287047;0.031894;0.319043;193068;96392 +5614/11678;Tweedledee affine coordinates: Group properties (opposite_equality);0.291924;0.027992;0.320085;192932;96100 +5615/11678;Tweedledee affine coordinates: Group properties (zero is the identity);0.289504;0.040208;0.329815;193064;96136 +5616/11678;Tweedledee affine coordinates: Group properties (distributivity);0.699773;0.031989;0.731861;192936;96136 +5617/11678;Tweedledee affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.572701;0.012014;0.584847;192936;95996 +5618/11678;Tweedledee affine coordinates: Group properties (opposite_existential_property);0.305201;0.020079;0.325381;193192;96140 +5619/11678;Tweedledee affine coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.56851;0.032028;0.600638;193060;96236 +5620/11678;Tweedledee affine coordinates: Group properties (multiplication_properties_on_base_field_element);1.10931;0.016018;1.12545;193064;96136 +5621/11678;Tweedledee affine coordinates: Group properties (double);0.30143;0.028133;0.329664;192932;96136 +5622/11678;Tweedledee affine coordinates: Group properties (additive_associativity_with_scalar);0.709839;0.020051;0.729992;192932;96136 +5623/11678;Tweedledee affine coordinates: Group properties (inverse on scalar);0.84949;0.016028;0.865589;192888;96392 +5624/11678;Tweedledee affine coordinates: Group properties (additive_associativity);0.324533;0.024039;0.348682;193196;96392 +5625/11678;Tweedledee affine coordinates: Group properties (additive_commutativity);0.29899;0.031892;0.331015;193064;96136 +5626/11678;Tweedledee affine coordinates: Group properties (Generator is of prime order);0.296035;0.024002;0.320133;193052;96196 +5627/11678;Tweedledee affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes);0.292668;0.020045;0.312824;192932;96132 +5628/11678;Tweedledee affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation);0.312441;0.020028;0.332579;193192;96252 +5629/11678;Tweedledee affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation);0.307283;0.019953;0.327342;192932;96132 +5630/11678;Tweedledee affine coordinates: Compressed representation (Compressed version is half the size);0.264966;0.048175;0.313241;192932;96136 +5631/11678;Tweedledee affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation);0.303589;0.023967;0.32766;193064;96136 +5632/11678;Tweedledee affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation);0.311533;0.015976;0.32762;192940;96136 +5633/11678;Sinsemilla: Test vectors for Sinsemilla (Test vectors from zcash-ochard/zcash-test-vectors);0.298938;0.023915;0.32296;193060;96316 +5634/11678;Sinsemilla: Properties (Collision when padding last chunk with zeroes);1.67863;0.02398;1.7027;192932;96136 +5635/11678;secp256r1 projective coordinates: value generation (random);0.305042;0.020068;0.32521;193064;96288 +5636/11678;secp256r1 projective coordinates: value generation (negate_with_one);0.2904;0.031824;0.322327;192936;96136 +5637/11678;secp256r1 projective coordinates: value generation (negate_with_zero);0.293456;0.024119;0.317681;193068;96172 +5638/11678;secp256r1 projective coordinates: value generation (negate_with_random);0.293224;0.0241;0.317429;193192;96136 +5639/11678;secp256r1 projective coordinates: value generation (double_with_random);0.292125;0.036015;0.328241;193060;96388 +5640/11678;secp256r1 projective coordinates: value generation (negate generates a valid point);0.310476;0.015921;0.326514;192932;96136 +5641/11678;secp256r1 projective coordinates: value generation (addition generates a valid point);0.291477;0.031942;0.323519;192936;96136 +5642/11678;secp256r1 projective coordinates: value generation (double generates a valid point);0.305196;0.020078;0.325409;193064;96036 +5643/11678;secp256r1 projective coordinates: value generation (scalar multiplication generates a valid point);0.363635;0.031967;0.395762;192936;96104 +5644/11678;secp256r1 projective coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.298664;0.01991;0.318693;192848;96328 +5645/11678;secp256r1 projective coordinates: value generation (check bytes on random with to_bytes);0.291227;0.023936;0.315263;193068;96136 +5646/11678;secp256r1 projective coordinates: value generation (double_with_one);0.287946;0.031994;0.320106;193060;96276 +5647/11678;secp256r1 projective coordinates: value generation (double_with_zero);0.291205;0.027923;0.319235;193064;96388 +5648/11678;secp256r1 projective coordinates: equality (zero);0.295751;0.027976;0.323842;193060;96136 +5649/11678;secp256r1 projective coordinates: equality (one);0.292959;0.024078;0.31715;193060;96204 +5650/11678;secp256r1 projective coordinates: equality (random_same_objects);0.299168;0.023933;0.323215;193192;96136 +5651/11678;secp256r1 projective coordinates: Group properties (check_bytes_random);0.297158;0.020078;0.317349;192940;96132 +5652/11678;secp256r1 projective coordinates: Group properties (check_bytes_zero);0.301729;0.020115;0.321954;193060;96136 +5653/11678;secp256r1 projective coordinates: Group properties (check_bytes_one);0.283286;0.031919;0.31531;192936;96136 +5654/11678;secp256r1 projective coordinates: Group properties (check_bytes_random_double);0.287877;0.031986;0.319984;193060;96132 +5655/11678;secp256r1 projective coordinates: Group properties (check_bytes_random_sum);0.295145;0.031907;0.327159;193068;96136 +5656/11678;secp256r1 projective coordinates: Group properties (check_bytes_random_multiplication);0.351691;0.035968;0.387762;192936;96048 +5657/11678;secp256r1 projective coordinates: Group properties (zero_scalar_nullifier_one);0.269446;0.048259;0.317816;193060;96136 +5658/11678;secp256r1 projective coordinates: Group properties (zero_scalar_nullifier_zero);0.294895;0.02391;0.318909;193060;96388 +5659/11678;secp256r1 projective coordinates: Group properties (zero_scalar_nullifier_random);0.272216;0.044034;0.316362;193196;96132 +5660/11678;secp256r1 projective coordinates: Group properties (multiply_by_one_does_nothing);0.309626;0.008042;0.317769;193064;96136 +5661/11678;secp256r1 projective coordinates: Group properties (opposite_of_opposite);0.300077;0.024006;0.324185;193192;96136 +5662/11678;secp256r1 projective coordinates: Group properties (opposite_of_opposite_using_scalar);0.289025;0.028099;0.317237;192936;96132 +5663/11678;secp256r1 projective coordinates: Group properties (opposite_of_zero_is_zero);0.289367;0.028132;0.317612;193060;96392 +5664/11678;secp256r1 projective coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.282505;0.031831;0.314446;193188;96320 +5665/11678;secp256r1 projective coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.291309;0.023943;0.31537;192936;96132 +5666/11678;secp256r1 projective coordinates: Group properties (opposite_equality);0.286566;0.03582;0.322494;192932;96132 +5667/11678;secp256r1 projective coordinates: Group properties (zero is the identity);0.282489;0.035808;0.318421;193192;96388 +5668/11678;secp256r1 projective coordinates: Group properties (distributivity);0.500973;0.032062;0.53317;193188;96156 +5669/11678;secp256r1 projective coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.437522;0.024083;0.461726;193064;96392 +5670/11678;secp256r1 projective coordinates: Group properties (opposite_existential_property);0.292674;0.032073;0.324855;193060;96392 +5671/11678;secp256r1 projective coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.437507;0.024082;0.461695;192932;96216 +5672/11678;secp256r1 projective coordinates: Group properties (multiplication_properties_on_base_field_element);0.725005;0.040055;0.765167;196652;99900 +5673/11678;secp256r1 projective coordinates: Group properties (double);0.290291;0.027836;0.318296;192936;96212 +5674/11678;secp256r1 projective coordinates: Group properties (additive_associativity_with_scalar);0.502437;0.035888;0.538423;192940;96136 +5675/11678;secp256r1 projective coordinates: Group properties (inverse on scalar);0.593653;0.020055;0.613817;193316;96572 +5676/11678;secp256r1 projective coordinates: Group properties (additive_associativity);0.301674;0.020111;0.321887;193068;96276 +5677/11678;secp256r1 projective coordinates: Group properties (additive_commutativity);0.287601;0.039944;0.327649;192932;96136 +5678/11678;secp256r1 projective coordinates: Group properties (Generator is of prime order);0.293652;0.028158;0.32197;193064;96332 +5679/11678;secp256r1 jacobian coordinates: value generation (random);0.291514;0.027953;0.319612;192936;96192 +5680/11678;secp256r1 jacobian coordinates: value generation (negate_with_one);0.29516;0.015954;0.31124;192932;96132 +5681/11678;secp256r1 jacobian coordinates: value generation (negate_with_zero);0.308053;0.016002;0.324165;193188;96392 +5682/11678;secp256r1 jacobian coordinates: value generation (negate_with_random);0.287354;0.031928;0.319391;192936;96136 +5683/11678;secp256r1 jacobian coordinates: value generation (double_with_random);0.290413;0.035804;0.326318;193064;96136 +5684/11678;secp256r1 jacobian coordinates: value generation (negate generates a valid point);0.290971;0.027901;0.318994;192740;96388 +5685/11678;secp256r1 jacobian coordinates: value generation (addition generates a valid point);0.304506;0.016026;0.320632;192932;96136 +5686/11678;secp256r1 jacobian coordinates: value generation (double generates a valid point);0.295413;0.023952;0.31947;192932;96136 +5687/11678;secp256r1 jacobian coordinates: value generation (scalar multiplication generates a valid point);0.412782;0.036068;0.448954;192932;96432 +5688/11678;secp256r1 jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.286577;0.031841;0.31853;192932;96136 +5689/11678;secp256r1 jacobian coordinates: value generation (check bytes on random with to_bytes);0.283772;0.035971;0.319851;192812;96136 +5690/11678;secp256r1 jacobian coordinates: value generation (double_with_one);0.286374;0.035796;0.322279;192824;96136 +5691/11678;secp256r1 jacobian coordinates: value generation (double_with_zero);0.280123;0.036015;0.316267;192936;96136 +5692/11678;secp256r1 jacobian coordinates: equality (zero);0.289204;0.028117;0.317421;193060;96288 +5693/11678;secp256r1 jacobian coordinates: equality (one);0.29278;0.024064;0.316962;193060;96136 +5694/11678;secp256r1 jacobian coordinates: equality (random_same_objects);0.299043;0.019936;0.319169;192936;96176 +5695/11678;secp256r1 jacobian coordinates: Group properties (check_bytes_random);0.293098;0.02409;0.317289;192932;96136 +5696/11678;secp256r1 jacobian coordinates: Group properties (check_bytes_zero);0.285602;0.03218;0.3179;193196;96316 +5697/11678;secp256r1 jacobian coordinates: Group properties (check_bytes_one);0.278877;0.043823;0.322863;193192;96244 +5698/11678;secp256r1 jacobian coordinates: Group properties (check_bytes_random_double);0.293019;0.032111;0.32523;193064;96136 +5699/11678;secp256r1 jacobian coordinates: Group properties (check_bytes_random_sum);0.293677;0.02816;0.321953;193192;96388 +5700/11678;secp256r1 jacobian coordinates: Group properties (check_bytes_random_multiplication);0.407854;0.043984;0.451936;193064;96392 +5701/11678;secp256r1 jacobian coordinates: Group properties (zero_scalar_nullifier_one);0.293761;0.024144;0.318007;193068;96392 +5702/11678;secp256r1 jacobian coordinates: Group properties (zero_scalar_nullifier_zero);0.287377;0.027939;0.315416;193064;96320 +5703/11678;secp256r1 jacobian coordinates: Group properties (zero_scalar_nullifier_random);0.303875;0.015993;0.319982;193064;96388 +5704/11678;secp256r1 jacobian coordinates: Group properties (multiply_by_one_does_nothing);0.295244;0.023938;0.31928;193068;96136 +5705/11678;secp256r1 jacobian coordinates: Group properties (opposite_of_opposite);0.288949;0.028092;0.317172;193068;96136 +5706/11678;secp256r1 jacobian coordinates: Group properties (opposite_of_opposite_using_scalar);0.300693;0.020046;0.320843;193064;96392 +5707/11678;secp256r1 jacobian coordinates: Group properties (opposite_of_zero_is_zero);0.290714;0.023894;0.314725;192988;96396 +5708/11678;secp256r1 jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.290915;0.02391;0.31493;192936;96088 +5709/11678;secp256r1 jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.293115;0.028106;0.321342;193064;96132 +5710/11678;secp256r1 jacobian coordinates: Group properties (opposite_equality);0.30156;0.028145;0.329809;192936;96136 +5711/11678;secp256r1 jacobian coordinates: Group properties (zero is the identity);0.297135;0.024092;0.321324;193064;96136 +5712/11678;secp256r1 jacobian coordinates: Group properties (distributivity);0.680212;0.020006;0.700399;192896;96232 +5713/11678;secp256r1 jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.567769;0.019991;0.587871;193064;96392 +5714/11678;secp256r1 jacobian coordinates: Group properties (opposite_existential_property);0.298982;0.019932;0.319015;192940;96136 +5715/11678;secp256r1 jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.556693;0.016019;0.572807;192936;96136 +5716/11678;secp256r1 jacobian coordinates: Group properties (multiplication_properties_on_base_field_element);1.06537;0.040051;1.10554;197284;100668 +5717/11678;secp256r1 jacobian coordinates: Group properties (double);0.294293;0.031815;0.326205;193064;96388 +5718/11678;secp256r1 jacobian coordinates: Group properties (additive_associativity_with_scalar);0.6842;0.028008;0.712298;192940;96136 +5719/11678;secp256r1 jacobian coordinates: Group properties (inverse on scalar);0.799159;0.035962;0.83521;193832;96980 +5720/11678;secp256r1 jacobian coordinates: Group properties (additive_associativity);0.275123;0.055822;0.331069;192932;96136 +5721/11678;secp256r1 jacobian coordinates: Group properties (additive_commutativity);0.293759;0.036216;0.330079;192932;96136 +5722/11678;secp256r1 jacobian coordinates: Group properties (Generator is of prime order);0.29295;0.024078;0.317149;192932;96128 +5723/11678;secp256r1 affine coordinates: value generation (random);0.277239;0.040179;0.317521;192940;96136 +5724/11678;secp256r1 affine coordinates: value generation (negate_with_one);0.29076;0.023898;0.314782;193068;96136 +5725/11678;secp256r1 affine coordinates: value generation (negate_with_zero);0.278502;0.035807;0.314414;192932;96136 +5726/11678;secp256r1 affine coordinates: value generation (negate_with_random);0.303818;0.023985;0.327924;193060;96388 +5727/11678;secp256r1 affine coordinates: value generation (double_with_random);0.286162;0.03577;0.322121;193060;96392 +5728/11678;secp256r1 affine coordinates: value generation (negate generates a valid point);0.305144;0.020075;0.325334;193064;96296 +5729/11678;secp256r1 affine coordinates: value generation (addition generates a valid point);0.300072;0.020004;0.32018;193064;96388 +5730/11678;secp256r1 affine coordinates: value generation (double generates a valid point);0.284687;0.040096;0.324885;193064;96392 +5731/11678;secp256r1 affine coordinates: value generation (scalar multiplication generates a valid point);0.409431;0.036126;0.445673;193060;96136 +5732/11678;secp256r1 affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.297221;0.028115;0.325442;193064;96392 +5733/11678;secp256r1 affine coordinates: value generation (check bytes on random with to_bytes);0.288247;0.032027;0.320376;193060;96240 +5734/11678;secp256r1 affine coordinates: value generation (double_with_one);0.301751;0.02414;0.325989;193064;96392 +5735/11678;secp256r1 affine coordinates: value generation (double_with_zero);0.298928;0.023914;0.322945;193064;96396 +5736/11678;secp256r1 affine coordinates: equality (zero);0.294586;0.023885;0.318581;193192;96392 +5737/11678;secp256r1 affine coordinates: equality (one);0.30027;0.020018;0.320398;193060;96132 +5738/11678;secp256r1 affine coordinates: equality (random_same_objects);0.287686;0.031965;0.319755;192932;96136 +5739/11678;secp256r1 affine coordinates: Group properties (check_bytes_random);0.295683;0.019978;0.315757;193068;96136 +5740/11678;secp256r1 affine coordinates: Group properties (check_bytes_zero);0.289068;0.028103;0.317279;193192;96320 +5741/11678;secp256r1 affine coordinates: Group properties (check_bytes_one);0.279885;0.035985;0.315985;193192;96136 +5742/11678;secp256r1 affine coordinates: Group properties (check_bytes_random_double);0.30075;0.01604;0.316891;193192;96132 +5743/11678;secp256r1 affine coordinates: Group properties (check_bytes_random_sum);0.302951;0.015944;0.319003;193068;96136 +5744/11678;secp256r1 affine coordinates: Group properties (check_bytes_random_multiplication);0.431324;0.015974;0.447398;192936;96136 +5745/11678;secp256r1 affine coordinates: Group properties (zero_scalar_nullifier_one);0.297941;0.020131;0.318173;193060;96136 +5746/11678;secp256r1 affine coordinates: Group properties (zero_scalar_nullifier_zero);0.291165;0.02792;0.319184;192936;96136 +5747/11678;secp256r1 affine coordinates: Group properties (zero_scalar_nullifier_random);0.293809;0.024148;0.318091;193192;96136 +5748/11678;secp256r1 affine coordinates: Group properties (multiply_by_one_does_nothing);0.314951;0.007973;0.323027;192936;96392 +5749/11678;secp256r1 affine coordinates: Group properties (opposite_of_opposite);0.295245;0.019949;0.315295;192932;96132 +5750/11678;secp256r1 affine coordinates: Group properties (opposite_of_opposite_using_scalar);0.284778;0.032087;0.316964;193060;96136 +5751/11678;secp256r1 affine coordinates: Group properties (opposite_of_zero_is_zero);0.272665;0.044107;0.316881;193192;96392 +5752/11678;secp256r1 affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.272225;0.044036;0.316389;193188;96396 +5753/11678;secp256r1 affine coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.265367;0.048248;0.313722;193060;96136 +5754/11678;secp256r1 affine coordinates: Group properties (opposite_equality);0.310364;0.015916;0.326378;193060;96208 +5755/11678;secp256r1 affine coordinates: Group properties (zero is the identity);0.300639;0.020042;0.320788;193068;96136 +5756/11678;secp256r1 affine coordinates: Group properties (distributivity);0.698952;0.015976;0.715028;192940;96136 +5757/11678;secp256r1 affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.56067;0.028033;0.5888;192812;96136 +5758/11678;secp256r1 affine coordinates: Group properties (opposite_existential_property);0.289216;0.036152;0.32547;193060;96132 +5759/11678;secp256r1 affine coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.561612;0.016046;0.57774;192948;96324 +5760/11678;secp256r1 affine coordinates: Group properties (multiplication_properties_on_base_field_element);1.09611;0.020002;1.1162;193060;96100 +5761/11678;secp256r1 affine coordinates: Group properties (double);0.296362;0.020024;0.316476;192980;96324 +5762/11678;secp256r1 affine coordinates: Group properties (additive_associativity_with_scalar);0.683537;0.023983;0.707616;193188;96388 +5763/11678;secp256r1 affine coordinates: Group properties (inverse on scalar);0.828689;0.024019;0.85281;193192;96392 +5764/11678;secp256r1 affine coordinates: Group properties (additive_associativity);0.291237;0.031916;0.323259;193192;96136 +5765/11678;secp256r1 affine coordinates: Group properties (additive_commutativity);0.293193;0.024098;0.31739;193060;96136 +5766/11678;secp256r1 affine coordinates: Group properties (Generator is of prime order);0.290856;0.031874;0.322844;193064;96132 +5767/11678;secp256k1 projective coordinates: Vectors (test vectors);0.298834;0.015937;0.314874;192936;96136 +5768/11678;secp256k1 projective coordinates: value generation (random);0.304544;0.012021;0.316664;192936;96140 +5769/11678;secp256k1 projective coordinates: value generation (negate_with_one);0.288595;0.032066;0.32077;193064;96392 +5770/11678;secp256k1 projective coordinates: value generation (negate_with_zero);0.293857;0.024152;0.318119;193068;96392 +5771/11678;secp256k1 projective coordinates: value generation (negate_with_random);0.297739;0.016094;0.313936;192936;96136 +5772/11678;secp256k1 projective coordinates: value generation (double_with_random);0.294996;0.027905;0.323075;193064;96236 +5773/11678;secp256k1 projective coordinates: value generation (negate generates a valid point);0.277262;0.040182;0.317569;192940;96136 +5774/11678;secp256k1 projective coordinates: value generation (addition generates a valid point);0.280511;0.048087;0.32871;193060;96136 +5775/11678;secp256k1 projective coordinates: value generation (double generates a valid point);0.277416;0.040205;0.317734;193008;96392 +5776/11678;secp256k1 projective coordinates: value generation (scalar multiplication generates a valid point);0.359412;0.027954;0.387471;193064;96388 +5777/11678;secp256k1 projective coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.305;0.016052;0.321156;193064;96324 +5778/11678;secp256k1 projective coordinates: value generation (check bytes on random with to_bytes);0.296052;0.020003;0.316158;193060;96136 +5779/11678;secp256k1 projective coordinates: value generation (double_with_one);0.277429;0.040207;0.317754;192932;96136 +5780/11678;secp256k1 projective coordinates: value generation (double_with_zero);0.293929;0.020132;0.314159;193192;96136 +5781/11678;secp256k1 projective coordinates: equality (zero);0.285353;0.036171;0.321633;193192;96136 +5782/11678;secp256k1 projective coordinates: equality (one);0.297689;0.016091;0.313884;193064;96136 +5783/11678;secp256k1 projective coordinates: equality (random_same_objects);0.291903;0.023992;0.315996;193064;96244 +5784/11678;secp256k1 projective coordinates: Group properties (check_bytes_random);0.298795;0.023903;0.322801;192936;96132 +5785/11678;secp256k1 projective coordinates: Group properties (check_bytes_zero);0.299988;0.015999;0.316086;192940;96136 +5786/11678;secp256k1 projective coordinates: Group properties (check_bytes_one);0.286633;0.027867;0.31463;193188;96392 +5787/11678;secp256k1 projective coordinates: Group properties (check_bytes_random_double);0.296772;0.020052;0.316924;192932;96132 +5788/11678;secp256k1 projective coordinates: Group properties (check_bytes_random_sum);0.290323;0.027839;0.318295;193060;96132 +5789/11678;secp256k1 projective coordinates: Group properties (check_bytes_random_multiplication);0.364499;0.024032;0.388637;193068;96136 +5790/11678;secp256k1 projective coordinates: Group properties (zero_scalar_nullifier_one);0.291485;0.023957;0.315546;192936;96136 +5791/11678;secp256k1 projective coordinates: Group properties (zero_scalar_nullifier_zero);0.272626;0.040092;0.312824;192932;96316 +5792/11678;secp256k1 projective coordinates: Group properties (zero_scalar_nullifier_random);0.297504;0.024122;0.321754;193040;96340 +5793/11678;secp256k1 projective coordinates: Group properties (multiply_by_one_does_nothing);0.288821;0.028079;0.317008;193064;96136 +5794/11678;secp256k1 projective coordinates: Group properties (opposite_of_opposite);0.287405;0.031933;0.319442;193188;96320 +5795/11678;secp256k1 projective coordinates: Group properties (opposite_of_opposite_using_scalar);0.287773;0.027977;0.31586;192932;96136 +5796/11678;secp256k1 projective coordinates: Group properties (opposite_of_zero_is_zero);0.292881;0.028084;0.321065;192936;96140 +5797/11678;secp256k1 projective coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.293035;0.024085;0.317224;193064;96136 +5798/11678;secp256k1 projective coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.297688;0.024136;0.321926;193060;96388 +5799/11678;secp256k1 projective coordinates: Group properties (opposite_equality);0.307754;0.01199;0.319842;193196;96388 +5800/11678;secp256k1 projective coordinates: Group properties (zero is the identity);0.297325;0.020089;0.317531;192932;96388 +5801/11678;secp256k1 projective coordinates: Group properties (distributivity);0.516171;0.016005;0.532285;193192;96392 +5802/11678;secp256k1 projective coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.427628;0.031972;0.459713;192936;96136 +5803/11678;secp256k1 projective coordinates: Group properties (opposite_existential_property);0.291931;0.027993;0.320046;192936;96140 +5804/11678;secp256k1 projective coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.42142;0.036121;0.457647;193060;96288 +5805/11678;secp256k1 projective coordinates: Group properties (multiplication_properties_on_base_field_element);0.716973;0.036048;0.753125;196020;99280 +5806/11678;secp256k1 projective coordinates: Group properties (double);0.30072;0.028067;0.32889;193060;96136 +5807/11678;secp256k1 projective coordinates: Group properties (additive_associativity_with_scalar);0.50357;0.031972;0.535651;192932;96160 +5808/11678;secp256k1 projective coordinates: Group properties (inverse on scalar);0.587997;0.019999;0.608094;193320;96568 +5809/11678;secp256k1 projective coordinates: Group properties (additive_associativity);0.297652;0.032178;0.329935;192936;96136 +5810/11678;secp256k1 projective coordinates: Group properties (additive_commutativity);0.274696;0.047773;0.322569;193064;96392 +5811/11678;secp256k1 projective coordinates: Group properties (Generator is of prime order);0.276069;0.04001;0.316188;193068;96388 +5812/11678;secp256k1 jacobian coordinates: value generation (random);0.301924;0.016102;0.31814;192936;96132 +5813/11678;secp256k1 jacobian coordinates: value generation (negate_with_one);0.298842;0.019922;0.318876;193068;96140 +5814/11678;secp256k1 jacobian coordinates: value generation (negate_with_zero);0.297755;0.016094;0.313946;193068;96132 +5815/11678;secp256k1 jacobian coordinates: value generation (negate_with_random);0.27531;0.04389;0.319305;193064;96132 +5816/11678;secp256k1 jacobian coordinates: value generation (double_with_random);0.286839;0.031871;0.318813;193060;96388 +5817/11678;secp256k1 jacobian coordinates: value generation (negate generates a valid point);0.290525;0.027858;0.318503;192936;96132 +5818/11678;secp256k1 jacobian coordinates: value generation (addition generates a valid point);0.279602;0.039943;0.319652;193064;96392 +5819/11678;secp256k1 jacobian coordinates: value generation (double generates a valid point);0.292585;0.024048;0.316739;193068;96140 +5820/11678;secp256k1 jacobian coordinates: value generation (scalar multiplication generates a valid point);0.412656;0.03205;0.444814;193068;96116 +5821/11678;secp256k1 jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.289582;0.036197;0.325886;193064;96396 +5822/11678;secp256k1 jacobian coordinates: value generation (check bytes on random with to_bytes);0.301364;0.016072;0.317553;193192;96392 +5823/11678;secp256k1 jacobian coordinates: value generation (double_with_one);0.308096;0.016005;0.324205;192936;96140 +5824/11678;secp256k1 jacobian coordinates: value generation (double_with_zero);0.275406;0.039914;0.315429;193316;96392 +5825/11678;secp256k1 jacobian coordinates: equality (zero);0.299418;0.023953;0.323473;193192;96388 +5826/11678;secp256k1 jacobian coordinates: equality (one);0.298612;0.015925;0.314639;193068;96396 +5827/11678;secp256k1 jacobian coordinates: equality (random_same_objects);0.280535;0.040076;0.320722;193196;96392 +5828/11678;secp256k1 jacobian coordinates: Group properties (check_bytes_random);0.289309;0.028127;0.317555;192936;96136 +5829/11678;secp256k1 jacobian coordinates: Group properties (check_bytes_zero);0.283918;0.035989;0.320005;192936;96132 +5830/11678;secp256k1 jacobian coordinates: Group properties (check_bytes_one);0.297019;0.020068;0.317198;193188;96316 +5831/11678;secp256k1 jacobian coordinates: Group properties (check_bytes_random_double);0.30456;0.020036;0.324707;193196;96136 +5832/11678;secp256k1 jacobian coordinates: Group properties (check_bytes_random_sum);0.306993;0.015947;0.323046;192932;96136 +5833/11678;secp256k1 jacobian coordinates: Group properties (check_bytes_random_multiplication);0.429914;0.020089;0.450103;193060;96320 +5834/11678;secp256k1 jacobian coordinates: Group properties (zero_scalar_nullifier_one);0.272562;0.04409;0.316756;192940;96132 +5835/11678;secp256k1 jacobian coordinates: Group properties (zero_scalar_nullifier_zero);0.285284;0.036162;0.321555;193060;96136 +5836/11678;secp256k1 jacobian coordinates: Group properties (zero_scalar_nullifier_random);0.286292;0.03181;0.318247;193060;96136 +5837/11678;secp256k1 jacobian coordinates: Group properties (multiply_by_one_does_nothing);0.297303;0.020088;0.317497;192932;96096 +5838/11678;secp256k1 jacobian coordinates: Group properties (opposite_of_opposite);0.294625;0.023888;0.318631;193068;96132 +5839/11678;secp256k1 jacobian coordinates: Group properties (opposite_of_opposite_using_scalar);0.301418;0.016075;0.317595;193064;96392 +5840/11678;secp256k1 jacobian coordinates: Group properties (opposite_of_zero_is_zero);0.276986;0.036128;0.313221;192936;96136 +5841/11678;secp256k1 jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.291814;0.031979;0.323897;193320;96396 +5842/11678;secp256k1 jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.273625;0.048286;0.322015;193064;96392 +5843/11678;secp256k1 jacobian coordinates: Group properties (opposite_equality);0.305133;0.020074;0.325337;192932;96132 +5844/11678;secp256k1 jacobian coordinates: Group properties (zero is the identity);0.298519;0.019901;0.318521;193060;96136 +5845/11678;secp256k1 jacobian coordinates: Group properties (distributivity);0.675057;0.035949;0.711108;193064;96132 +5846/11678;secp256k1 jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.560008;0.02;0.580124;193064;96316 +5847/11678;secp256k1 jacobian coordinates: Group properties (opposite_existential_property);0.29517;0.027921;0.32321;193068;96388 +5848/11678;secp256k1 jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.542247;0.031896;0.574249;193064;96136 +5849/11678;secp256k1 jacobian coordinates: Group properties (multiplication_properties_on_base_field_element);1.06766;0.023992;1.09175;197164;100416 +5850/11678;secp256k1 jacobian coordinates: Group properties (double);0.295961;0.023996;0.32012;192940;96364 +5851/11678;secp256k1 jacobian coordinates: Group properties (additive_associativity_with_scalar);0.67681;0.028033;0.704948;192940;96132 +5852/11678;secp256k1 jacobian coordinates: Group properties (inverse on scalar);0.825681;0.02004;0.845955;194084;96964 +5853/11678;secp256k1 jacobian coordinates: Group properties (additive_associativity);0.315019;0.007975;0.323092;193060;96136 +5854/11678;secp256k1 jacobian coordinates: Group properties (additive_commutativity);0.301389;0.020092;0.321608;192808;96504 +5855/11678;secp256k1 jacobian coordinates: Group properties (Generator is of prime order);0.293434;0.028137;0.321678;193064;96136 +5856/11678;secp256k1 affine coordinates: Vectors (test vectors);0.277117;0.044178;0.321397;193064;96392 +5857/11678;secp256k1 affine coordinates: value generation (random);0.293003;0.032109;0.325221;193068;96388 +5858/11678;secp256k1 affine coordinates: value generation (negate_with_one);0.283703;0.035962;0.319799;193192;96136 +5859/11678;secp256k1 affine coordinates: value generation (negate_with_zero);0.307998;0.011999;0.3201;192936;96136 +5860/11678;secp256k1 affine coordinates: value generation (negate_with_random);0.290783;0.031866;0.322799;193196;96392 +5861/11678;secp256k1 affine coordinates: value generation (double_with_random);0.27304;0.044168;0.317321;192932;96136 +5862/11678;secp256k1 affine coordinates: value generation (negate generates a valid point);0.285291;0.036163;0.321573;193068;96136 +5863/11678;secp256k1 affine coordinates: value generation (addition generates a valid point);0.305572;0.016082;0.321826;193060;96388 +5864/11678;secp256k1 affine coordinates: value generation (double generates a valid point);0.305598;0.020105;0.325812;192936;96140 +5865/11678;secp256k1 affine coordinates: value generation (scalar multiplication generates a valid point);0.426839;0.027924;0.454868;192936;96132 +5866/11678;secp256k1 affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.295434;0.031938;0.327485;193064;96396 +5867/11678;secp256k1 affine coordinates: value generation (check bytes on random with to_bytes);0.292458;0.028043;0.320604;192936;96392 +5868/11678;secp256k1 affine coordinates: value generation (double_with_one);0.291675;0.023973;0.315755;193064;96132 +5869/11678;secp256k1 affine coordinates: value generation (double_with_zero);0.282556;0.031837;0.314494;193060;96136 +5870/11678;secp256k1 affine coordinates: equality (zero);0.275356;0.039906;0.315375;192936;96108 +5871/11678;secp256k1 affine coordinates: equality (one);0.303556;0.015976;0.319638;193196;96396 +5872/11678;secp256k1 affine coordinates: equality (random_same_objects);0.282319;0.035786;0.318207;192936;96136 +5873/11678;secp256k1 affine coordinates: Group properties (check_bytes_random);0.30701;0.015948;0.323069;192936;96076 +5874/11678;secp256k1 affine coordinates: Group properties (check_bytes_zero);0.304459;0.016024;0.320597;193060;96136 +5875/11678;secp256k1 affine coordinates: Group properties (check_bytes_one);0.291632;0.027964;0.319715;193068;96392 +5876/11678;secp256k1 affine coordinates: Group properties (check_bytes_random_double);0.297777;0.024144;0.322037;193064;96136 +5877/11678;secp256k1 affine coordinates: Group properties (check_bytes_random_sum);0.299849;0.027985;0.327945;193192;96132 +5878/11678;secp256k1 affine coordinates: Group properties (check_bytes_random_multiplication);0.411366;0.039938;0.451416;192936;96076 +5879/11678;secp256k1 affine coordinates: Group properties (zero_scalar_nullifier_one);0.297641;0.016088;0.313832;192936;96136 +5880/11678;secp256k1 affine coordinates: Group properties (zero_scalar_nullifier_zero);0.288665;0.028064;0.316841;192932;96208 +5881/11678;secp256k1 affine coordinates: Group properties (zero_scalar_nullifier_random);0.292582;0.032063;0.324755;192936;96136 +5882/11678;secp256k1 affine coordinates: Group properties (multiply_by_one_does_nothing);0.284681;0.036086;0.320873;193064;96316 +5883/11678;secp256k1 affine coordinates: Group properties (opposite_of_opposite);0.301533;0.020102;0.321736;192936;96132 +5884/11678;secp256k1 affine coordinates: Group properties (opposite_of_opposite_using_scalar);0.301449;0.024115;0.325663;193064;96388 +5885/11678;secp256k1 affine coordinates: Group properties (opposite_of_zero_is_zero);0.291831;0.023986;0.315919;192936;96132 +5886/11678;secp256k1 affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.293584;0.028151;0.321838;192936;96320 +5887/11678;secp256k1 affine coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.280877;0.0321;0.313096;193068;96388 +5888/11678;secp256k1 affine coordinates: Group properties (opposite_equality);0.293707;0.02414;0.317951;193064;96392 +5889/11678;secp256k1 affine coordinates: Group properties (zero is the identity);0.300346;0.016018;0.316472;192936;96132 +5890/11678;secp256k1 affine coordinates: Group properties (distributivity);0.71074;0.007985;0.718835;193064;96316 +5891/11678;secp256k1 affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.559852;0.023993;0.583956;192932;96132 +5892/11678;secp256k1 affine coordinates: Group properties (opposite_existential_property);0.298368;0.019891;0.318363;193060;96136 +5893/11678;secp256k1 affine coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.577804;0.008025;0.585928;192936;96136 +5894/11678;secp256k1 affine coordinates: Group properties (multiplication_properties_on_base_field_element);1.08729;0.031978;1.11936;193064;96392 +5895/11678;secp256k1 affine coordinates: Group properties (double);0.30397;0.019998;0.324069;193064;96240 +5896/11678;secp256k1 affine coordinates: Group properties (additive_associativity_with_scalar);0.687725;0.027988;0.715821;193320;96388 +5897/11678;secp256k1 affine coordinates: Group properties (inverse on scalar);0.816873;0.024025;0.840999;193188;96392 +5898/11678;secp256k1 affine coordinates: Group properties (additive_associativity);0.312452;0.020029;0.332604;193060;96136 +5899/11678;secp256k1 affine coordinates: Group properties (additive_commutativity);0.290023;0.031783;0.321911;192932;96136 +5900/11678;secp256k1 affine coordinates: Group properties (Generator is of prime order);0.283103;0.035886;0.319099;193064;96384 +5901/11678;secp256k1 affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes);0.303838;0.015991;0.319933;193064;96392 +5902/11678;secp256k1 affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation);0.311417;0.011977;0.323496;192936;96136 +5903/11678;secp256k1 affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation);0.296006;0.028;0.324121;193060;96136 +5904/11678;secp256k1 affine coordinates: Compressed representation (Compressed version is half the size);0.289149;0.028111;0.317377;193064;96140 +5905/11678;secp256k1 affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation);0.296744;0.02406;0.320909;193060;96388 +5906/11678;secp256k1 affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation);0.303312;0.019954;0.323377;193064;96392 +5907/11678;RedJubjub: Signature scheme properties (Sign and verify random message);0.722161;0.023939;0.746199;192940;96132 +5908/11678;RedJubjub: Signature scheme properties (Sign and verify wrong message);0.719265;0.031967;0.751332;193068;96128 +5909/11678;RedJubjub: Signature scheme properties (sign and verify with an invalid verifying key (different sk));0.736818;0.028031;0.764916;192988;96392 +5910/11678;RedJubjub: Signature scheme properties (sign and verify with an invalid verifying key (different generator));0.734878;0.015975;0.75095;193192;96136 +5911/11678;RedJubjub: Sign on test vectors (Sign on test vectors from librustzcash/zcash_primitives);0.312866;0.012033;0.325006;192932;96236 +5912/11678;Poseidon252: Properties (Perm is consistent);0.282322;0.035787;0.318264;193196;96312 +5913/11678;Poseidon252: Test vectors for Hades252 (Test vectors from dusk-network/hades252);0.291548;0.03195;0.323608;192936;96132 +5914/11678;Poseidon252: Test vectors for Poseidon252 (Test vectors from dusk-network/poseidon252);0.302103;0.019875;0.322152;193064;96392 +5915/11678;Poseidon128: Properties (Perm is consistent);0.296926;0.020062;0.317095;192940;96208 +5916/11678;Poseidon128: Test vectors for Poseidon128 (Regression test vectors for poseidon128);0.300265;0.020017;0.320384;193068;96132 +5917/11678;Pedersen Hash Zcash: Vectors (Test vector from zcash primitives);0.338438;0.027871;0.366423;192940;96136 +5918/11678;Pedersen Hash Zcash: Too long bitstrings (Too long bitstrings, not enough generators);0.307505;0.015974;0.323592;193064;96392 +5919/11678;Pallas projective coordinates: value generation (random);0.310531;0.015924;0.326557;192936;96132 +5920/11678;Pallas projective coordinates: value generation (negate_with_one);0.300053;0.020003;0.320184;192820;96392 +5921/11678;Pallas projective coordinates: value generation (negate_with_zero);0.287844;0.031982;0.319986;192932;96132 +5922/11678;Pallas projective coordinates: value generation (negate_with_random);0.300188;0.024015;0.324344;193060;96132 +5923/11678;Pallas projective coordinates: value generation (double_with_random);0.286494;0.035811;0.322419;192932;96132 +5924/11678;Pallas projective coordinates: value generation (negate generates a valid point);0.308119;0.016006;0.324315;193064;96252 +5925/11678;Pallas projective coordinates: value generation (addition generates a valid point);0.319821;0.015991;0.33591;193196;96392 +5926/11678;Pallas projective coordinates: value generation (double generates a valid point);0.297763;0.028166;0.326028;193060;96136 +5927/11678;Pallas projective coordinates: value generation (scalar multiplication generates a valid point);0.383344;0.019965;0.403415;192936;96136 +5928/11678;Pallas projective coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.301581;0.024126;0.325809;192932;96136 +5929/11678;Pallas projective coordinates: value generation (check bytes on random with to_bytes);0.295059;0.027911;0.323071;193196;96392 +5930/11678;Pallas projective coordinates: value generation (double_with_one);0.296776;0.024062;0.321047;193064;96264 +5931/11678;Pallas projective coordinates: value generation (double_with_zero);0.293603;0.024131;0.317837;192932;96136 +5932/11678;Pallas projective coordinates: equality (zero);0.278949;0.039849;0.318929;193060;96392 +5933/11678;Pallas projective coordinates: equality (one);0.279811;0.035975;0.315907;192936;96136 +5934/11678;Pallas projective coordinates: equality (random_same_objects);0.315107;0.015954;0.331164;193060;96136 +5935/11678;Pallas projective coordinates: Group properties (check_bytes_random);0.304887;0.02407;0.32917;193064;96364 +5936/11678;Pallas projective coordinates: Group properties (check_bytes_zero);0.306925;0.015944;0.323001;193060;96392 +5937/11678;Pallas projective coordinates: Group properties (check_bytes_one);0.287253;0.035906;0.323281;193192;96136 +5938/11678;Pallas projective coordinates: Group properties (check_bytes_random_double);0.298477;0.027857;0.326432;193320;96388 +5939/11678;Pallas projective coordinates: Group properties (check_bytes_random_sum);0.306495;0.023882;0.3305;193064;96388 +5940/11678;Pallas projective coordinates: Group properties (check_bytes_random_multiplication);0.371439;0.027957;0.399546;193064;96248 +5941/11678;Pallas projective coordinates: Group properties (zero_scalar_nullifier_one);0.287123;0.031902;0.319128;192936;96132 +5942/11678;Pallas projective coordinates: Group properties (zero_scalar_nullifier_zero);0.278479;0.035804;0.31442;193068;96192 +5943/11678;Pallas projective coordinates: Group properties (zero_scalar_nullifier_random);0.296529;0.024042;0.32068;192932;96132 +5944/11678;Pallas projective coordinates: Group properties (multiply_by_one_does_nothing);0.303793;0.015989;0.319891;192932;96136 +5945/11678;Pallas projective coordinates: Group properties (opposite_of_opposite);0.300022;0.028002;0.328133;192932;96136 +5946/11678;Pallas projective coordinates: Group properties (opposite_of_opposite_using_scalar);0.287824;0.035978;0.323901;193064;96392 +5947/11678;Pallas projective coordinates: Group properties (opposite_of_zero_is_zero);0.294742;0.027881;0.322727;192936;96052 +5948/11678;Pallas projective coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.288158;0.032017;0.320333;192932;96244 +5949/11678;Pallas projective coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.272902;0.048159;0.321174;193060;96396 +5950/11678;Pallas projective coordinates: Group properties (opposite_equality);0.306139;0.016112;0.322355;193064;96392 +5951/11678;Pallas projective coordinates: Group properties (zero is the identity);0.301729;0.024138;0.32598;193064;96388 +5952/11678;Pallas projective coordinates: Group properties (distributivity);0.520354;0.040027;0.560482;192936;96136 +5953/11678;Pallas projective coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.450435;0.01993;0.470536;193064;96208 +5954/11678;Pallas projective coordinates: Group properties (opposite_existential_property);0.305468;0.024115;0.329682;193064;96136 +5955/11678;Pallas projective coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.447098;0.019959;0.467219;192936;96192 +5956/11678;Pallas projective coordinates: Group properties (multiplication_properties_on_base_field_element);0.743522;0.023984;0.767613;196132;99132 +5957/11678;Pallas projective coordinates: Group properties (double);0.302756;0.023901;0.326771;193068;96136 +5958/11678;Pallas projective coordinates: Group properties (additive_associativity_with_scalar);0.521053;0.024048;0.545178;192992;96392 +5959/11678;Pallas projective coordinates: Group properties (inverse on scalar);0.603379;0.015983;0.619496;193064;96316 +5960/11678;Pallas projective coordinates: Group properties (additive_associativity);0.320298;0.024022;0.344433;192932;96240 +5961/11678;Pallas projective coordinates: Group properties (additive_commutativity);0.305501;0.024118;0.32972;193068;96132 +5962/11678;Pallas projective coordinates: Group properties (Generator is of prime order);0.288719;0.032079;0.320899;192936;96136 +5963/11678;Pallas jacobian coordinates: value generation (random);0.295006;0.027906;0.323017;192936;96136 +5964/11678;Pallas jacobian coordinates: value generation (negate_with_one);0.299992;0.019999;0.320102;193192;96136 +5965/11678;Pallas jacobian coordinates: value generation (negate_with_zero);0.304744;0.016039;0.320885;193060;96136 +5966/11678;Pallas jacobian coordinates: value generation (negate_with_random);0.287002;0.039861;0.326985;193060;96136 +5967/11678;Pallas jacobian coordinates: value generation (double_with_random);0.309886;0.020122;0.330125;192940;96132 +5968/11678;Pallas jacobian coordinates: value generation (negate generates a valid point);0.273473;0.048259;0.32185;193192;96392 +5969/11678;Pallas jacobian coordinates: value generation (addition generates a valid point);0.299319;0.031927;0.3314;192936;96136 +5970/11678;Pallas jacobian coordinates: value generation (double generates a valid point);0.296317;0.032034;0.32846;193064;96136 +5971/11678;Pallas jacobian coordinates: value generation (scalar multiplication generates a valid point);0.407799;0.03998;0.4479;192940;96136 +5972/11678;Pallas jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.309518;0.020098;0.329725;193064;96136 +5973/11678;Pallas jacobian coordinates: value generation (check bytes on random with to_bytes);0.295542;0.027956;0.323608;193064;96140 +5974/11678;Pallas jacobian coordinates: value generation (double_with_one);0.294221;0.027831;0.322246;193060;96136 +5975/11678;Pallas jacobian coordinates: value generation (double_with_zero);0.283733;0.035966;0.3198;193064;96392 +5976/11678;Pallas jacobian coordinates: equality (zero);0.288925;0.024077;0.313148;193060;96180 +5977/11678;Pallas jacobian coordinates: equality (one);0.295872;0.015993;0.311971;193192;96392 +5978/11678;Pallas jacobian coordinates: equality (random_same_objects);0.290978;0.03986;0.330965;192896;96388 +5979/11678;Pallas jacobian coordinates: Group properties (check_bytes_random);0.288793;0.032088;0.320959;192976;96392 +5980/11678;Pallas jacobian coordinates: Group properties (check_bytes_zero);0.292132;0.02401;0.316243;193060;96392 +5981/11678;Pallas jacobian coordinates: Group properties (check_bytes_one);0.283492;0.031942;0.315539;193060;96392 +5982/11678;Pallas jacobian coordinates: Group properties (check_bytes_random_double);0.303596;0.019973;0.323694;192932;96136 +5983/11678;Pallas jacobian coordinates: Group properties (check_bytes_random_sum);0.298729;0.035847;0.334697;193060;96136 +5984/11678;Pallas jacobian coordinates: Group properties (check_bytes_random_multiplication);0.406314;0.047801;0.454248;192936;96192 +5985/11678;Pallas jacobian coordinates: Group properties (zero_scalar_nullifier_one);0.279819;0.039974;0.319891;193064;96136 +5986/11678;Pallas jacobian coordinates: Group properties (zero_scalar_nullifier_zero);0.291114;0.023927;0.315167;193060;96136 +5987/11678;Pallas jacobian coordinates: Group properties (zero_scalar_nullifier_random);0.298576;0.023886;0.322564;193060;96136 +5988/11678;Pallas jacobian coordinates: Group properties (multiply_by_one_does_nothing);0.296259;0.028024;0.324379;193064;96136 +5989/11678;Pallas jacobian coordinates: Group properties (opposite_of_opposite);0.302086;0.024166;0.326361;192936;96140 +5990/11678;Pallas jacobian coordinates: Group properties (opposite_of_opposite_using_scalar);0.310948;0.015946;0.326987;193060;96236 +5991/11678;Pallas jacobian coordinates: Group properties (opposite_of_zero_is_zero);0.29097;0.027901;0.319;192936;96136 +5992/11678;Pallas jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.294678;0.01991;0.314724;193064;96392 +5993/11678;Pallas jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.280788;0.036101;0.317002;192936;96136 +5994/11678;Pallas jacobian coordinates: Group properties (opposite_equality);0.305174;0.020077;0.325359;192932;96136 +5995/11678;Pallas jacobian coordinates: Group properties (zero is the identity);0.310541;0.019906;0.330574;192936;96132 +5996/11678;Pallas jacobian coordinates: Group properties (distributivity);0.713069;0.016024;0.729211;193060;96388 +5997/11678;Pallas jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.560367;0.028018;0.588488;193064;96392 +5998/11678;Pallas jacobian coordinates: Group properties (opposite_existential_property);0.297409;0.028133;0.325641;193068;96136 +5999/11678;Pallas jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.560587;0.024025;0.584746;192808;96132 +6000/11678;Pallas jacobian coordinates: Group properties (multiplication_properties_on_base_field_element);1.08153;0.032045;1.11367;197032;100160 +6001/11678;Pallas jacobian coordinates: Group properties (double);0.303198;0.019947;0.323243;193196;96392 +6002/11678;Pallas jacobian coordinates: Group properties (additive_associativity_with_scalar);0.690408;0.023944;0.714458;192960;96136 +6003/11678;Pallas jacobian coordinates: Group properties (inverse on scalar);0.838373;0.023953;0.862442;193700;96568 +6004/11678;Pallas jacobian coordinates: Group properties (additive_associativity);0.310742;0.027887;0.33873;193192;96392 +6005/11678;Pallas jacobian coordinates: Group properties (additive_commutativity);0.292272;0.040037;0.33241;192936;96136 +6006/11678;Pallas jacobian coordinates: Group properties (Generator is of prime order);0.293005;0.020068;0.313187;192936;96136 +6007/11678;Pallas affine coordinates: value generation (random);0.302969;0.023918;0.327015;193068;96392 +6008/11678;Pallas affine coordinates: value generation (negate_with_one);0.298191;0.019879;0.31818;192936;96136 +6009/11678;Pallas affine coordinates: value generation (negate_with_zero);0.284215;0.036027;0.320363;193064;96320 +6010/11678;Pallas affine coordinates: value generation (negate_with_random);0.295639;0.027965;0.323712;192932;96132 +6011/11678;Pallas affine coordinates: value generation (double_with_random);0.315419;0.011977;0.327544;192932;96240 +6012/11678;Pallas affine coordinates: value generation (negate generates a valid point);0.307653;0.015981;0.323746;192848;96436 +6013/11678;Pallas affine coordinates: value generation (addition generates a valid point);0.295537;0.03195;0.327634;192932;96164 +6014/11678;Pallas affine coordinates: value generation (double generates a valid point);0.291508;0.039932;0.331543;192936;96132 +6015/11678;Pallas affine coordinates: value generation (scalar multiplication generates a valid point);0.429118;0.028073;0.45732;193060;96136 +6016/11678;Pallas affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.311246;0.011971;0.323346;193064;96388 +6017/11678;Pallas affine coordinates: value generation (check bytes on random with to_bytes);0.30224;0.027837;0.330271;193064;96324 +6018/11678;Pallas affine coordinates: value generation (double_with_one);0.26062;0.056133;0.316843;193064;96136 +6019/11678;Pallas affine coordinates: value generation (double_with_zero);0.307664;0.011986;0.319772;193060;96136 +6020/11678;Pallas affine coordinates: equality (zero);0.272106;0.044017;0.316267;193064;96140 +6021/11678;Pallas affine coordinates: equality (one);0.290735;0.023896;0.314724;192872;96316 +6022/11678;Pallas affine coordinates: equality (random_same_objects);0.301722;0.024137;0.325972;192932;96132 +6023/11678;Pallas affine coordinates: Group properties (check_bytes_random);0.304292;0.016015;0.320408;192940;96100 +6024/11678;Pallas affine coordinates: Group properties (check_bytes_zero);0.289278;0.028124;0.317549;192936;96268 +6025/11678;Pallas affine coordinates: Group properties (check_bytes_one);0.284767;0.032086;0.316957;192936;96244 +6026/11678;Pallas affine coordinates: Group properties (check_bytes_random_double);0.301004;0.020066;0.321173;193064;96136 +6027/11678;Pallas affine coordinates: Group properties (check_bytes_random_sum);0.293266;0.036156;0.329533;193060;96392 +6028/11678;Pallas affine coordinates: Group properties (check_bytes_random_multiplication);0.428313;0.032023;0.460455;193188;96392 +6029/11678;Pallas affine coordinates: Group properties (zero_scalar_nullifier_one);0.293568;0.024128;0.317817;192932;96132 +6030/11678;Pallas affine coordinates: Group properties (zero_scalar_nullifier_zero);0.277096;0.040158;0.317364;193064;96136 +6031/11678;Pallas affine coordinates: Group properties (zero_scalar_nullifier_random);0.305179;0.020077;0.325365;193188;96392 +6032/11678;Pallas affine coordinates: Group properties (multiply_by_one_does_nothing);0.289555;0.040216;0.329871;193188;96136 +6033/11678;Pallas affine coordinates: Group properties (opposite_of_opposite);0.300333;0.024026;0.324462;193060;96132 +6034/11678;Pallas affine coordinates: Group properties (opposite_of_opposite_using_scalar);0.303176;0.019945;0.323229;192936;96132 +6035/11678;Pallas affine coordinates: Group properties (opposite_of_zero_is_zero);0.298754;0.019916;0.318779;193192;96136 +6036/11678;Pallas affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.287725;0.035965;0.323802;193064;96136 +6037/11678;Pallas affine coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.278517;0.043766;0.322393;192940;96136 +6038/11678;Pallas affine coordinates: Group properties (opposite_equality);0.305485;0.024117;0.329706;193060;96136 +6039/11678;Pallas affine coordinates: Group properties (zero is the identity);0.296661;0.028062;0.324828;193064;96136 +6040/11678;Pallas affine coordinates: Group properties (distributivity);0.702764;0.023957;0.726823;193316;96388 +6041/11678;Pallas affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.563355;0.023972;0.587421;192936;96136 +6042/11678;Pallas affine coordinates: Group properties (opposite_existential_property);0.303592;0.019973;0.323673;193192;96384 +6043/11678;Pallas affine coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.556665;0.032038;0.588805;193188;96388 +6044/11678;Pallas affine coordinates: Group properties (multiplication_properties_on_base_field_element);1.08832;0.03601;1.12442;192936;96136 +6045/11678;Pallas affine coordinates: Group properties (double);0.30398;0.027998;0.332085;192936;96184 +6046/11678;Pallas affine coordinates: Group properties (additive_associativity_with_scalar);0.691117;0.027964;0.71918;193188;96136 +6047/11678;Pallas affine coordinates: Group properties (inverse on scalar);0.828518;0.028017;0.856628;193060;96132 +6048/11678;Pallas affine coordinates: Group properties (additive_associativity);0.321163;0.040145;0.361439;193188;96136 +6049/11678;Pallas affine coordinates: Group properties (additive_commutativity);0.309857;0.024144;0.334132;193192;96272 +6050/11678;Pallas affine coordinates: Group properties (Generator is of prime order);0.3001;0.020006;0.320266;192932;96188 +6051/11678;Pallas affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes);0.28003;0.036003;0.31614;192932;96136 +6052/11678;Pallas affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation);0.307005;0.023922;0.331035;192936;96136 +6053/11678;Pallas affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation);0.304629;0.028057;0.332798;192936;96388 +6054/11678;Pallas affine coordinates: Compressed representation (Compressed version is half the size);0.297476;0.020099;0.317683;193192;96392 +6055/11678;Pallas affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation);0.29619;0.028018;0.324306;192936;96392 +6056/11678;Pallas affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation);0.292615;0.036075;0.328792;192936;96136 +6057/11678;Orchard: Properties (Perm is consistent);0.293562;0.024128;0.317885;193064;96252 +6058/11678;Orchard: Test vectors for Hades Orchard (Test vectors from zcash-hackworks/zcash-test-vectors);0.309463;0.008038;0.317615;192932;96404 +6059/11678;Orchard: No padding (Inputs of length 2);0.298842;0.019922;0.318872;193068;96392 +6060/11678;Neptunus: Properties (Perm is consistent);0.30128;0.024102;0.325503;192936;96136 +6061/11678;Marvellous permutation: Built on scalar field of BLS12-381 (Test vectors from reference implementation from KUL);0.287558;0.03195;0.319606;193064;96136 +6062/11678;Marvellous permutation: Built on scalar field of BLS12-381 (Regression tests);0.30497;0.020063;0.325143;192940;96312 +6063/11678;Linear trick: Regression test (Poseidon128);0.300208;0.016011;0.316331;193060;96396 +6064/11678;Jubjub - Weierstrass - Affine coordinates: value generation (random);0.288083;0.03601;0.324201;192936;96136 +6065/11678;Jubjub - Weierstrass - Affine coordinates: value generation (negate_with_one);0.288756;0.032084;0.320956;193188;96132 +6066/11678;Jubjub - Weierstrass - Affine coordinates: value generation (negate_with_zero);0.296199;0.020013;0.316317;193068;96388 +6067/11678;Jubjub - Weierstrass - Affine coordinates: value generation (negate_with_random);0.305499;0.020098;0.325698;192940;96136 +6068/11678;Jubjub - Weierstrass - Affine coordinates: value generation (double_with_random);0.280589;0.044092;0.324785;193064;96392 +6069/11678;Jubjub - Weierstrass - Affine coordinates: value generation (negate generates a valid point);0.291512;0.035939;0.327552;192936;96136 +6070/11678;Jubjub - Weierstrass - Affine coordinates: value generation (addition generates a valid point);0.307202;0.035906;0.343226;193068;96316 +6071/11678;Jubjub - Weierstrass - Affine coordinates: value generation (double generates a valid point);0.305303;0.024102;0.329508;193192;96320 +6072/11678;Jubjub - Weierstrass - Affine coordinates: value generation (scalar multiplication generates a valid point);0.44097;0.016035;0.457153;193068;96416 +6073/11678;Jubjub - Weierstrass - Affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.31775;0.016088;0.333955;192932;96136 +6074/11678;Jubjub - Weierstrass - Affine coordinates: value generation (check bytes on random with to_bytes);0.295701;0.031967;0.327767;192940;96140 +6075/11678;Jubjub - Weierstrass - Affine coordinates: value generation (double_with_one);0.295014;0.019933;0.315051;193324;96388 +6076/11678;Jubjub - Weierstrass - Affine coordinates: value generation (double_with_zero);0.299167;0.027922;0.327197;193060;96392 +6077/11678;Jubjub - Weierstrass - Affine coordinates: equality (zero);0.289522;0.028147;0.317783;193064;96392 +6078/11678;Jubjub - Weierstrass - Affine coordinates: equality (one);0.293766;0.020121;0.313997;193188;96392 +6079/11678;Jubjub - Weierstrass - Affine coordinates: equality (random_same_objects);0.292793;0.032086;0.325011;192932;96136 +6080/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (check_bytes_random);0.282991;0.043843;0.326951;193192;96392 +6081/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (check_bytes_zero);0.28393;0.03999;0.324088;193060;96120 +6082/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (check_bytes_one);0.303299;0.019953;0.323368;192932;96136 +6083/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (check_bytes_random_double);0.296994;0.028094;0.325189;193192;96392 +6084/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (check_bytes_random_sum);0.333638;0.008039;0.341773;192932;96136 +6085/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (check_bytes_random_multiplication);0.432741;0.024041;0.456883;193068;96388 +6086/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (zero_scalar_nullifier_one);0.273698;0.044274;0.318077;193064;96392 +6087/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (zero_scalar_nullifier_zero);0.285406;0.032158;0.31768;193192;96136 +6088/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (zero_scalar_nullifier_random);0.296506;0.032054;0.328688;192808;96132 +6089/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (multiply_by_one_does_nothing);0.291174;0.035898;0.327186;193060;96316 +6090/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_of_opposite);0.305239;0.020081;0.32542;193068;96136 +6091/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_of_opposite_using_scalar);0.301543;0.024123;0.325796;193060;96132 +6092/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_of_zero_is_zero);0.295674;0.027969;0.323756;193064;96136 +6093/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.282323;0.039763;0.322204;192936;96136 +6094/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.300409;0.020027;0.320546;192936;96132 +6095/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_equality);0.295553;0.031951;0.327642;192832;96372 +6096/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (zero is the identity);0.315695;0.011988;0.327795;193196;96392 +6097/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (distributivity);0.702967;0.031953;0.735017;193064;96392 +6098/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.574973;0.023957;0.59903;193060;96320 +6099/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_existential_property);0.292046;0.036005;0.328161;193060;96388 +6100/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.563834;0.03199;0.595926;193064;96316 +6101/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (multiplication_properties_on_base_field_element);1.08628;0.031949;1.11832;192932;96132 +6102/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (double);0.303273;0.019952;0.323333;192932;96136 +6103/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (additive_associativity_with_scalar);0.691983;0.027999;0.720113;192936;96232 +6104/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (inverse on scalar);0.818429;0.039923;0.858467;193192;96392 +6105/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (additive_associativity);0.31832;0.031832;0.350262;192936;96244 +6106/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (additive_commutativity);0.309262;0.032131;0.341492;193060;96136 +6107/11678;Jubjub - Weierstrass - Affine coordinates: Group properties (Generator is of prime order);0.290674;0.023891;0.314666;192932;96132 +6108/11678;Jubjub - Weierstrass - Affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes);0.299488;0.015972;0.315582;193064;96392 +6109/11678;Jubjub - Weierstrass - Affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation);0.30499;0.028091;0.333186;192932;96136 +6110/11678;Jubjub - Weierstrass - Affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation);0.29624;0.036029;0.332372;192932;96140 +6111/11678;Jubjub - Weierstrass - Affine coordinates: Compressed representation (Compressed version is half the size);0.291712;0.031968;0.323789;193196;96256 +6112/11678;Jubjub - Weierstrass - Affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation);0.315219;0.01596;0.331284;193320;96392 +6113/11678;Jubjub - Weierstrass - Affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation);0.297477;0.028139;0.325721;193192;96316 +6114/11678;"JubJub: Affine Edwards <-> Affine Montgomery ; Affine Edwards -> Affine Weierstrass (Points are on both curves)";0.28665;0.047775;0.334529;193060;96136 +6115/11678;"JubJub: Affine Edwards <-> Affine Montgomery ; Affine Edwards -> Affine Weierstrass (Addition)";0.333109;0.03612;0.369326;193060;96136 +6116/11678;"JubJub: Affine Edwards <-> Affine Montgomery ; Affine Edwards -> Affine Weierstrass (Scalar multiplication)";0.812564;0.024016;0.836677;193064;96132 +6117/11678;Jubjub: Vectors (test vectors elements);0.285546;0.036196;0.321906;192812;96196 +6118/11678;"Jubjub: Compressed/Uncompressed (Correct point; uncompressed_exn)";0.288955;0.028092;0.31715;193064;96392 +6119/11678;Jubjub: Compressed/Uncompressed (Random values must not be accepted);0.292784;0.024064;0.316956;192932;96136 +6120/11678;Jubjub: Compressed/Uncompressed (Compressed gives 32 bytes);0.291311;0.027933;0.319345;193192;96392 +6121/11678;"Jubjub: Compressed/Uncompressed (Correct point; uncompressed_opt)";0.289412;0.028137;0.317652;193064;96136 +6122/11678;Jubjub: Compressed/Uncompressed (Test vectors);0.278282;0.035779;0.314241;192936;96140 +6123/11678;Jubjub: Compressed/Uncompressed (Encoding of zero);0.280237;0.03603;0.316382;193196;96392 +6124/11678;Jubjub: Tests random (test random coordinates do not give a point on the curve);0.293798;0.028172;0.322073;192940;96132 +6125/11678;Jubjub: value generation (random);0.297192;0.032128;0.329412;193064;96132 +6126/11678;Jubjub: value generation (negate_with_one);0.288062;0.028006;0.316167;193064;96392 +6127/11678;Jubjub: value generation (negate_with_zero);0.286443;0.027848;0.314454;193048;96364 +6128/11678;Jubjub: value generation (negate_with_random);0.306244;0.015908;0.322281;192692;96200 +6129/11678;Jubjub: value generation (double_with_random);0.305062;0.024083;0.329321;192940;96544 +6130/11678;Jubjub: value generation (negate generates a valid point);0.294821;0.031872;0.326871;193060;96292 +6131/11678;Jubjub: value generation (addition generates a valid point);0.283749;0.051954;0.335801;193188;96392 +6132/11678;Jubjub: value generation (double generates a valid point);0.287904;0.035988;0.324011;193188;96320 +6133/11678;Jubjub: value generation (scalar multiplication generates a valid point);0.409147;0.024067;0.433326;193064;96316 +6134/11678;Jubjub: value generation (of_bytes_exn and to_bytes are inverse functions);0.297935;0.028183;0.326225;193192;96388 +6135/11678;Jubjub: value generation (check bytes on random with to_bytes);0.297381;0.02813;0.325615;192936;96136 +6136/11678;Jubjub: value generation (double_with_one);0.27164;0.043941;0.315687;193060;96388 +6137/11678;Jubjub: value generation (double_with_zero);0.301446;0.020096;0.321639;192936;96136 +6138/11678;Jubjub: Group properties of Edwards curve (unsafe_from_coordinates do not check the point is on the curve);0.302132;0.011926;0.314201;192936;96132 +6139/11678;Jubjub: Group properties of Edwards curve (Test check_bytes and of_bytes_[exn/opt] with a different number of bytes than expected);0.307682;0.015983;0.323769;192936;96136 +6140/11678;Jubjub: Group properties (check_bytes_random);0.299361;0.023948;0.323405;193188;96392 +6141/11678;Jubjub: Group properties (check_bytes_zero);0.290254;0.027832;0.318201;193192;96132 +6142/11678;Jubjub: Group properties (check_bytes_one);0.287011;0.027903;0.315053;193068;96344 +6143/11678;Jubjub: Group properties (check_bytes_random_double);0.302374;0.031828;0.334324;193060;96132 +6144/11678;Jubjub: Group properties (check_bytes_random_sum);0.324493;0.012018;0.336623;192932;96136 +6145/11678;Jubjub: Group properties (check_bytes_random_multiplication);0.410849;0.019944;0.43089;192936;96132 +6146/11678;Jubjub: Group properties (zero_scalar_nullifier_one);0.295929;0.027993;0.324039;193188;96392 +6147/11678;Jubjub: Group properties (zero_scalar_nullifier_zero);0.292623;0.028059;0.320814;192932;96136 +6148/11678;Jubjub: Group properties (zero_scalar_nullifier_random);0.299509;0.027954;0.327579;193192;96392 +6149/11678;Jubjub: Group properties (multiply_by_one_does_nothing);0.307676;0.023974;0.331801;192936;96228 +6150/11678;Jubjub: Group properties (opposite_of_opposite);0.287672;0.039954;0.327723;193064;96392 +6151/11678;Jubjub: Group properties (opposite_of_opposite_using_scalar);0.312249;0.016012;0.328366;193060;96136 +6152/11678;Jubjub: Group properties (opposite_of_zero_is_zero);0.289196;0.028116;0.317419;193060;96392 +6153/11678;Jubjub: Group properties (opposite_of_opposite_of_zero_is_zero);0.301442;0.020096;0.321638;193060;96388 +6154/11678;Jubjub: Group properties (opposite_of_opposite_of_one_is_one);0.287856;0.027986;0.315942;193064;96312 +6155/11678;Jubjub: Group properties (opposite_equality);0.29867;0.023893;0.322667;192936;96136 +6156/11678;Jubjub: Group properties (zero is the identity);0.288165;0.03602;0.324291;193060;96320 +6157/11678;Jubjub: Group properties (distributivity);0.631557;0.019986;0.651658;193064;96200 +6158/11678;Jubjub: Group properties (opposite_of_scalar_is_opposite_of_ec);0.521031;0.028055;0.549236;193060;96392 +6159/11678;Jubjub: Group properties (opposite_existential_property);0.288369;0.040051;0.328525;193196;96320 +6160/11678;Jubjub: Group properties (mul_by_order_of_base_field_equals_element);0.509196;0.040094;0.5494;193064;96392 +6161/11678;Jubjub: Group properties (multiplication_properties_on_base_field_element);0.93656;0.040023;0.976678;193064;96136 +6162/11678;Jubjub: Group properties (double);0.290367;0.039776;0.330244;192936;96136 +6163/11678;Jubjub: Group properties (additive_associativity_with_scalar);0.622383;0.031917;0.654414;193188;96384 +6164/11678;Jubjub: Group properties (inverse on scalar);0.721353;0.028052;0.749516;193064;96316 +6165/11678;Jubjub: Group properties (additive_associativity);0.315035;0.027914;0.343059;192940;96136 +6166/11678;Jubjub: Group properties (additive_commutativity);0.316882;0.016044;0.333034;192936;96244 +6167/11678;Jubjub: Group properties (Generator is of prime order);0.289441;0.03216;0.321727;192164;95368 +6168/11678;Jubjub: equality (zero);0.29681;0.020054;0.316979;193068;96136 +6169/11678;Jubjub: equality (one);0.300307;0.016016;0.316426;192936;96136 +6170/11678;Jubjub: equality (random_same_objects);0.291557;0.031951;0.32362;193060;96392 +6171/11678;Iterator: Bytes (One byte);0.299136;0.02393;0.323171;192936;96132 +6172/11678;Iterator: Bytes (Multiple bytes);0.301488;0.012059;0.313653;193192;96392 +6173/11678;Iterator: Bool list (Test vectors);0.292296;0.024024;0.316509;193060;96120 +6174/11678;Iterator: Utils functions (is processed);0.28501;0.032113;0.317221;192932;96136 +6175/11678;Iterator: get chunk (get chnk);0.290344;0.031818;0.32246;193060;96136 +6176/11678;Iso Pallas affine form: Test isogeny (With random point);0.278603;0.0398;0.318518;192932;96132 +6177/11678;Iso Pallas affine form: value generation (random);0.29288;0.032096;0.325081;192940;96136 +6178/11678;Iso Pallas affine form: value generation (negate_with_one);0.296474;0.024038;0.320618;193060;96132 +6179/11678;Iso Pallas affine form: value generation (negate_with_zero);0.287362;0.031929;0.319404;193188;96392 +6180/11678;Iso Pallas affine form: value generation (negate_with_random);0.309833;0.020119;0.330061;193060;96136 +6181/11678;Iso Pallas affine form: value generation (double_with_random);0.29515;0.035896;0.331155;193064;96392 +6182/11678;Iso Pallas affine form: value generation (negate generates a valid point);0.278069;0.044329;0.322499;193196;96320 +6183/11678;Iso Pallas affine form: value generation (addition generates a valid point);0.297618;0.040218;0.337977;192844;96392 +6184/11678;Iso Pallas affine form: value generation (double generates a valid point);0.29379;0.032196;0.326081;193064;96136 +6185/11678;Iso Pallas affine form: value generation (scalar multiplication generates a valid point);0.437692;0.024093;0.46189;193060;96136 +6186/11678;Iso Pallas affine form: value generation (of_bytes_exn and to_bytes are inverse functions);0.282428;0.047734;0.33029;192880;96392 +6187/11678;Iso Pallas affine form: value generation (check bytes on random with to_bytes);0.306677;0.023896;0.33067;193064;96224 +6188/11678;Iso Pallas affine form: value generation (double_with_one);0.282033;0.032232;0.314345;193040;96392 +6189/11678;Iso Pallas affine form: value generation (double_with_zero);0.295534;0.019968;0.315652;192936;96100 +6190/11678;Iso Pallas affine form: equality (zero);0.300069;0.024005;0.324175;193060;96136 +6191/11678;Iso Pallas affine form: equality (one);0.279134;0.039876;0.319115;193064;96136 +6192/11678;Iso Pallas affine form: equality (random_same_objects);0.301707;0.028159;0.329978;192804;96136 +6193/11678;Iso Pallas affine form: Group properties (check_bytes_random);0.304065;0.020004;0.324172;193192;96296 +6194/11678;Iso Pallas affine form: Group properties (check_bytes_zero);0.29499;0.027904;0.323011;192936;96132 +6195/11678;Iso Pallas affine form: Group properties (check_bytes_one);0.30571;0.012067;0.317876;192808;96136 +6196/11678;Iso Pallas affine form: Group properties (check_bytes_random_double);0.305473;0.020096;0.325686;193064;96100 +6197/11678;Iso Pallas affine form: Group properties (check_bytes_random_sum);0.302593;0.02787;0.330575;192936;96136 +6198/11678;Iso Pallas affine form: Group properties (check_bytes_random_multiplication);0.42791;0.031993;0.460033;192940;96300 +6199/11678;Iso Pallas affine form: Group properties (zero_scalar_nullifier_one);0.292998;0.028095;0.321191;193196;96392 +6200/11678;Iso Pallas affine form: Group properties (zero_scalar_nullifier_zero);0.295915;0.019994;0.316009;193060;96120 +6201/11678;Iso Pallas affine form: Group properties (zero_scalar_nullifier_random);0.286616;0.039807;0.32653;193064;96136 +6202/11678;Iso Pallas affine form: Group properties (multiply_by_one_does_nothing);0.30813;0.020008;0.328255;192940;96132 +6203/11678;Iso Pallas affine form: Group properties (opposite_of_opposite);0.297496;0.028141;0.325755;192848;96300 +6204/11678;Iso Pallas affine form: Group properties (opposite_of_opposite_using_scalar);0.295117;0.027916;0.323154;193064;96136 +6205/11678;Iso Pallas affine form: Group properties (opposite_of_zero_is_zero);0.283299;0.031921;0.315333;193064;96136 +6206/11678;Iso Pallas affine form: Group properties (opposite_of_opposite_of_zero_is_zero);0.28759;0.035948;0.323647;193064;96388 +6207/11678;Iso Pallas affine form: Group properties (opposite_of_opposite_of_one_is_one);0.292547;0.024044;0.316693;193064;96100 +6208/11678;Iso Pallas affine form: Group properties (opposite_equality);0.312847;0.016043;0.329;192932;96240 +6209/11678;Iso Pallas affine form: Group properties (zero is the identity);0.280823;0.040117;0.321044;192936;96136 +6210/11678;Iso Pallas affine form: Group properties (distributivity);0.698226;0.035908;0.734241;193064;96312 +6211/11678;Iso Pallas affine form: Group properties (opposite_of_scalar_is_opposite_of_ec);0.563899;0.023995;0.587994;192936;96132 +6212/11678;Iso Pallas affine form: Group properties (opposite_existential_property);0.297364;0.02411;0.321585;193064;96136 +6213/11678;Iso Pallas affine form: Group properties (mul_by_order_of_base_field_equals_element);0.556073;0.036004;0.592193;193192;96316 +6214/11678;Iso Pallas affine form: Group properties (multiplication_properties_on_base_field_element);1.09192;0.027998;1.12004;193068;96392 +6215/11678;Iso Pallas affine form: Group properties (double);0.284755;0.040106;0.32501;193060;96120 +6216/11678;Iso Pallas affine form: Group properties (additive_associativity_with_scalar);0.697877;0.028075;0.726097;192940;96232 +6217/11678;Iso Pallas affine form: Group properties (inverse on scalar);0.837721;0.024049;0.861884;193060;96320 +6218/11678;Iso Pallas affine form: Group properties (additive_associativity);0.310474;0.027863;0.338441;192940;96136 +6219/11678;Iso Pallas affine form: Group properties (additive_commutativity);0.302218;0.031812;0.334139;193196;96392 +6220/11678;Iso Pallas affine form: Group properties (Generator is of prime order);0.301329;0.020088;0.321535;192932;96132 +6221/11678;Find group hash: Zcash test vectors (Test vectors);0.277338;0.040193;0.317634;193192;96392 +6222/11678;Curve functors: Check initialisation strengthen conditions (b cannot be null);0.296346;0.024028;0.32048;192936;96132 +6223/11678;Digestif fork: Blake2b test vectors (Test vector with personalisation);0.308042;0.016002;0.324146;193068;96208 +6224/11678;Digestif fork: Blake2b properties (Feed twice and finalize gives the same result than feeding with the concatenation and finalize);0.289695;0.028164;0.317967;192932;96220 +6225/11678;Curve448: value generation (random);0.291429;0.031937;0.323465;193064;96136 +6226/11678;Curve448: value generation (negate_with_one);0.283907;0.031989;0.316001;192936;96136 +6227/11678;Curve448: value generation (negate_with_zero);0.297764;0.024143;0.322007;193064;96136 +6228/11678;Curve448: value generation (negate_with_random);0.30676;0.023903;0.330758;193064;96128 +6229/11678;Curve448: value generation (double_with_random);0.301574;0.024125;0.325848;192936;96068 +6230/11678;Curve448: value generation (negate generates a valid point);0.322482;0.027868;0.35046;193188;96000 +6231/11678;Curve448: value generation (addition generates a valid point);0.303225;0.031918;0.335255;192936;96204 +6232/11678;Curve448: value generation (double generates a valid point);0.287964;0.039995;0.32807;193060;96308 +6233/11678;Curve448: value generation (scalar multiplication generates a valid point);0.602677;0.019956;0.622738;192932;96232 +6234/11678;Curve448: value generation (of_bytes_exn and to_bytes are inverse functions);0.323621;0.00799;0.331711;193196;96132 +6235/11678;Curve448: value generation (check bytes on random with to_bytes);0.300234;0.036028;0.336378;193192;96392 +6236/11678;Curve448: value generation (double_with_one);0.285237;0.036156;0.321504;192936;96136 +6237/11678;Curve448: value generation (double_with_zero);0.28704;0.027906;0.315077;193192;96280 +6238/11678;Curve448: Group properties (check_bytes_random);0.302803;0.027889;0.330813;192936;96136 +6239/11678;Curve448: Group properties (check_bytes_zero);0.301151;0.016061;0.317345;192932;96132 +6240/11678;Curve448: Group properties (check_bytes_one);0.291596;0.023966;0.315678;193192;96136 +6241/11678;Curve448: Group properties (check_bytes_random_double);0.293313;0.032143;0.325564;193188;96392 +6242/11678;Curve448: Group properties (check_bytes_random_sum);0.310221;0.02784;0.338211;193064;96280 +6243/11678;Curve448: Group properties (check_bytes_random_multiplication);0.58966;0.03209;0.62185;193060;96132 +6244/11678;Curve448: Group properties (zero_scalar_nullifier_one);0.277631;0.040236;0.317973;192932;96136 +6245/11678;Curve448: Group properties (zero_scalar_nullifier_zero);0.288787;0.024065;0.312954;193064;96392 +6246/11678;Curve448: Group properties (zero_scalar_nullifier_random);0.308799;0.016041;0.324946;192936;96136 +6247/11678;Curve448: Group properties (multiply_by_one_does_nothing);0.301476;0.020098;0.321673;193064;96136 +6248/11678;Curve448: Group properties (opposite_of_opposite);0.303048;0.027912;0.331067;193060;96392 +6249/11678;Curve448: Group properties (opposite_of_opposite_using_scalar);0.296856;0.036104;0.333078;193060;96132 +6250/11678;Curve448: Group properties (opposite_of_zero_is_zero);0.306312;0.011934;0.318401;193068;96304 +6251/11678;Curve448: Group properties (opposite_of_opposite_of_zero_is_zero);0.298733;0.015932;0.314768;193060;96316 +6252/11678;Curve448: Group properties (opposite_of_opposite_of_one_is_one);0.28169;0.032193;0.31399;193064;96392 +6253/11678;Curve448: Group properties (opposite_equality);0.30963;0.020105;0.329837;192940;96136 +6254/11678;Curve448: Group properties (zero is the identity);0.30007;0.024005;0.324164;192896;96392 +6255/11678;Curve448: Group properties (distributivity);1.19348;0.036044;1.22964;194724;98076 +6256/11678;Curve448: Group properties (opposite_of_scalar_is_opposite_of_ec);0.894129;0.027941;0.92223;193064;96252 +6257/11678;Curve448: Group properties (opposite_existential_property);0.293701;0.028163;0.321964;193064;96136 +6258/11678;Curve448: Group properties (mul_by_order_of_base_field_equals_element);0.905248;0.016022;0.921364;193060;96384 +6259/11678;Curve448: Group properties (multiplication_properties_on_base_field_element);2.08521;0.028016;2.11333;202148;105268 +6260/11678;Curve448: Group properties (double);0.286823;0.039836;0.326761;193068;96136 +6261/11678;Curve448: Group properties (additive_associativity_with_scalar);1.18638;0.031956;1.21844;194724;97852 +6262/11678;Curve448: Group properties (inverse on scalar);1.49331;0.028024;1.52143;197160;100668 +6263/11678;Curve448: Group properties (additive_associativity);0.320544;0.020034;0.340693;192808;96136 +6264/11678;Curve448: Group properties (additive_commutativity);0.323139;0.019946;0.343218;192932;96136 +6265/11678;Curve448: Group properties (Generator is of prime order);0.287629;0.027963;0.315703;192932;96136 +6266/11678;Curve448: Group properties of Edwards curve (unsafe_from_coordinates do not check the point is on the curve);0.299477;0.019965;0.319606;192940;96252 +6267/11678;Curve448: Group properties of Edwards curve (Test check_bytes and of_bytes_[exn/opt] with a different number of bytes than expected);0.293048;0.024086;0.317242;192936;96136 +6268/11678;Curve448: equality (zero);0.300249;0.020016;0.320365;192932;96136 +6269/11678;Curve448: equality (one);0.299299;0.015962;0.315361;192940;96320 +6270/11678;Curve448: equality (random_same_objects);0.311021;0.019937;0.33108;192936;96184 +6271/11678;Curve25519: value generation (random);0.291771;0.031974;0.323889;193192;96132 +6272/11678;Curve25519: value generation (negate_with_one);0.280742;0.036095;0.316945;192932;96132 +6273/11678;Curve25519: value generation (negate_with_zero);0.296952;0.02809;0.325142;193060;96392 +6274/11678;Curve25519: value generation (negate_with_random);0.285369;0.036173;0.321623;192724;96136 +6275/11678;Curve25519: value generation (double_with_random);0.303961;0.019997;0.324046;192980;96312 +6276/11678;Curve25519: value generation (negate generates a valid point);0.30542;0.020093;0.325667;193064;96248 +6277/11678;Curve25519: value generation (addition generates a valid point);0.30158;0.028147;0.329835;193068;96388 +6278/11678;Curve25519: value generation (double generates a valid point);0.291348;0.031928;0.323381;193068;96136 +6279/11678;Curve25519: value generation (scalar multiplication generates a valid point);0.350413;0.043801;0.394355;193060;96328 +6280/11678;Curve25519: value generation (of_bytes_exn and to_bytes are inverse functions);0.297385;0.032149;0.329651;193064;96132 +6281/11678;Curve25519: value generation (check bytes on random with to_bytes);0.300436;0.020029;0.320564;193064;96392 +6282/11678;Curve25519: value generation (double_with_one);0.295138;0.019941;0.315219;193064;96136 +6283/11678;Curve25519: value generation (double_with_zero);0.287619;0.031957;0.319687;193060;96392 +6284/11678;Curve25519: Group properties (check_bytes_random);0.300673;0.020044;0.320822;193060;96244 +6285/11678;Curve25519: Group properties (check_bytes_zero);0.304526;0.016027;0.320663;193064;96136 +6286/11678;Curve25519: Group properties (check_bytes_one);0.294439;0.019894;0.314439;193064;96132 +6287/11678;Curve25519: Group properties (check_bytes_random_double);0.314804;0.007969;0.322871;192932;96136 +6288/11678;Curve25519: Group properties (check_bytes_random_sum);0.287007;0.047834;0.33495;192932;96132 +6289/11678;Curve25519: Group properties (check_bytes_random_multiplication);0.362156;0.031837;0.394148;192808;96276 +6290/11678;Curve25519: Group properties (zero_scalar_nullifier_one);0.291805;0.027981;0.319893;192936;96136 +6291/11678;Curve25519: Group properties (zero_scalar_nullifier_zero);0.287824;0.027982;0.315909;192932;96392 +6292/11678;Curve25519: Group properties (zero_scalar_nullifier_random);0.291349;0.031928;0.32339;193188;96136 +6293/11678;Curve25519: Group properties (multiply_by_one_does_nothing);0.298422;0.023873;0.322399;193064;96132 +6294/11678;Curve25519: Group properties (opposite_of_opposite);0.296937;0.028088;0.325129;192940;96136 +6295/11678;Curve25519: Group properties (opposite_of_opposite_using_scalar);0.307671;0.019978;0.327753;193196;96392 +6296/11678;Curve25519: Group properties (opposite_of_zero_is_zero);0.278302;0.039757;0.318144;192840;96232 +6297/11678;Curve25519: Group properties (opposite_of_opposite_of_zero_is_zero);0.288843;0.028081;0.317103;192936;96252 +6298/11678;Curve25519: Group properties (opposite_of_opposite_of_one_is_one);0.298673;0.015929;0.314712;192804;96140 +6299/11678;Curve25519: Group properties (opposite_equality);0.297884;0.024152;0.322145;193060;96316 +6300/11678;Curve25519: Group properties (zero is the identity);0.285617;0.036204;0.321926;192940;96136 +6301/11678;Curve25519: Group properties (distributivity);0.528594;0.024027;0.552724;192680;96368 +6302/11678;Curve25519: Group properties (opposite_of_scalar_is_opposite_of_ec);0.451323;0.01997;0.471396;193188;96396 +6303/11678;Curve25519: Group properties (opposite_existential_property);0.277033;0.044164;0.321307;193064;96140 +6304/11678;Curve25519: Group properties (mul_by_order_of_base_field_equals_element);0.44943;0.020063;0.469621;193064;96132 +6305/11678;Curve25519: Group properties (multiplication_properties_on_base_field_element);0.722741;0.047916;0.770745;192936;96136 +6306/11678;Curve25519: Group properties (double);0.306951;0.019931;0.326998;192932;96136 +6307/11678;Curve25519: Group properties (additive_associativity_with_scalar);0.515655;0.031978;0.547733;193064;96132 +6308/11678;Curve25519: Group properties (inverse on scalar);0.592881;0.028041;0.621029;193068;96176 +6309/11678;Curve25519: Group properties (additive_associativity);0.300322;0.032034;0.33246;193064;96136 +6310/11678;Curve25519: Group properties (additive_commutativity);0.302732;0.023899;0.326739;193188;96392 +6311/11678;Curve25519: Group properties (Generator is of prime order);0.299148;0.019943;0.319195;192936;96136 +6312/11678;Curve25519: equality (zero);0.278594;0.039799;0.3185;192932;96136 +6313/11678;Curve25519: equality (one);0.287977;0.031997;0.320079;193064;96392 +6314/11678;Curve25519: equality (random_same_objects);0.290371;0.031821;0.322306;192936;96132 +6315/11678;Curve 25519 conversions between the different forms: Edwards <-> Montgomery (Points are on both curves);0.312142;0.020009;0.33225;193064;96132 +6316/11678;Curve 25519 conversions between the different forms: Edwards <-> Montgomery (Addition);0.305191;0.044172;0.349465;193060;96136 +6317/11678;Curve 25519 conversions between the different forms: Edwards <-> Montgomery (Scalar multiplication);0.659064;0.039943;0.699109;193192;96392 +6318/11678;Curve25519 edwards form and affine coordinates: value generation (random);0.303557;0.023965;0.327626;192936;96136 +6319/11678;Curve25519 edwards form and affine coordinates: value generation (negate_with_one);0.289029;0.0281;0.317228;193064;96136 +6320/11678;Curve25519 edwards form and affine coordinates: value generation (negate_with_zero);0.275125;0.047847;0.323076;192936;96136 +6321/11678;Curve25519 edwards form and affine coordinates: value generation (negate_with_random);0.299768;0.019984;0.319879;193196;96244 +6322/11678;Curve25519 edwards form and affine coordinates: value generation (double_with_random);0.299754;0.02398;0.323835;193192;96392 +6323/11678;Curve25519 edwards form and affine coordinates: value generation (negate generates a valid point);0.30878;0.02406;0.333002;193092;96180 +6324/11678;Curve25519 edwards form and affine coordinates: value generation (addition generates a valid point);0.313603;0.016082;0.329836;192936;96176 +6325/11678;Curve25519 edwards form and affine coordinates: value generation (double generates a valid point);0.279691;0.043951;0.323746;193064;96392 +6326/11678;Curve25519 edwards form and affine coordinates: value generation (scalar multiplication generates a valid point);0.413151;0.016044;0.429302;193064;96136 +6327/11678;Curve25519 edwards form and affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.297045;0.032113;0.329261;193064;96300 +6328/11678;Curve25519 edwards form and affine coordinates: value generation (check bytes on random with to_bytes);0.295062;0.031898;0.327144;193064;96324 +6329/11678;Curve25519 edwards form and affine coordinates: value generation (double_with_one);0.287617;0.031957;0.319688;193064;96644 +6330/11678;Curve25519 edwards form and affine coordinates: value generation (double_with_zero);0.305442;0.012056;0.317621;193068;96648 +6331/11678;Curve25519 edwards form and affine coordinates: Group properties (check_bytes_random);0.312589;0.01603;0.328726;192936;96132 +6332/11678;Curve25519 edwards form and affine coordinates: Group properties (check_bytes_zero);0.283552;0.031949;0.315606;193064;96320 +6333/11678;Curve25519 edwards form and affine coordinates: Group properties (check_bytes_one);0.286814;0.031868;0.318791;192936;96136 +6334/11678;Curve25519 edwards form and affine coordinates: Group properties (check_bytes_random_double);0.290765;0.031864;0.322731;193064;96312 +6335/11678;Curve25519 edwards form and affine coordinates: Group properties (check_bytes_random_sum);0.301911;0.028178;0.330198;193068;96136 +6336/11678;Curve25519 edwards form and affine coordinates: Group properties (check_bytes_random_multiplication);0.401581;0.02811;0.429789;192932;96136 +6337/11678;Curve25519 edwards form and affine coordinates: Group properties (zero_scalar_nullifier_one);0.289247;0.028121;0.317464;193064;96136 +6338/11678;Curve25519 edwards form and affine coordinates: Group properties (zero_scalar_nullifier_zero);0.306892;0.015942;0.322938;193060;96136 +6339/11678;Curve25519 edwards form and affine coordinates: Group properties (zero_scalar_nullifier_random);0.29435;0.035799;0.33034;192932;96136 +6340/11678;Curve25519 edwards form and affine coordinates: Group properties (multiply_by_one_does_nothing);0.300976;0.024078;0.325185;193064;96136 +6341/11678;Curve25519 edwards form and affine coordinates: Group properties (opposite_of_opposite);0.305381;0.02009;0.325578;192936;96132 +6342/11678;Curve25519 edwards form and affine coordinates: Group properties (opposite_of_opposite_using_scalar);0.293197;0.028114;0.321424;193068;96392 +6343/11678;Curve25519 edwards form and affine coordinates: Group properties (opposite_of_zero_is_zero);0.295913;0.027991;0.324014;193064;96132 +6344/11678;Curve25519 edwards form and affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.288492;0.028047;0.316645;193064;96136 +6345/11678;Curve25519 edwards form and affine coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.271512;0.043921;0.315541;193064;96392 +6346/11678;Curve25519 edwards form and affine coordinates: Group properties (opposite_equality);0.292525;0.032057;0.324685;193064;96136 +6347/11678;Curve25519 edwards form and affine coordinates: Group properties (zero is the identity);0.306891;0.023913;0.330906;193064;96136 +6348/11678;Curve25519 edwards form and affine coordinates: Group properties (distributivity);0.62027;0.032013;0.652389;192936;96136 +6349/11678;Curve25519 edwards form and affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.506789;0.035914;0.542799;192936;96132 +6350/11678;Curve25519 edwards form and affine coordinates: Group properties (opposite_existential_property);0.297072;0.024086;0.321272;193060;96136 +6351/11678;Curve25519 edwards form and affine coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.518647;0.023937;0.542689;192932;96140 +6352/11678;Curve25519 edwards form and affine coordinates: Group properties (multiplication_properties_on_base_field_element);0.927266;0.035971;0.963334;193068;96320 +6353/11678;Curve25519 edwards form and affine coordinates: Group properties (double);0.300021;0.028001;0.328126;193068;96136 +6354/11678;Curve25519 edwards form and affine coordinates: Group properties (additive_associativity_with_scalar);0.619883;0.023995;0.644027;192936;96352 +6355/11678;Curve25519 edwards form and affine coordinates: Group properties (inverse on scalar);0.728479;0.020013;0.748595;193060;96136 +6356/11678;Curve25519 edwards form and affine coordinates: Group properties (additive_associativity);0.304496;0.028045;0.332643;192936;96136 +6357/11678;Curve25519 edwards form and affine coordinates: Group properties (additive_commutativity);0.290265;0.035786;0.326187;193060;96160 +6358/11678;Curve25519 edwards form and affine coordinates: Group properties (Generator is of prime order);0.283398;0.031932;0.315438;193320;96392 +6359/11678;Curve25519 edwards form and affine coordinates: Group properties of Edwards curve (unsafe_from_coordinates do not check the point is on the curve);0.290831;0.023903;0.314833;193064;96208 +6360/11678;Curve25519 edwards form and affine coordinates: Group properties of Edwards curve (Test check_bytes and of_bytes_[exn/opt] with a different number of bytes than expected);0.280428;0.032048;0.312599;193064;96136 +6361/11678;Curve25519 edwards form and affine coordinates: equality (zero);0.288421;0.02804;0.316571;193196;96296 +6362/11678;Curve25519 edwards form and affine coordinates: equality (one);0.306963;0.011959;0.319031;193068;96316 +6363/11678;Curve25519 edwards form and affine coordinates: equality (random_same_objects);0.295017;0.027907;0.323021;193064;96136 +6364/11678;BN254 projective form: value generation (random);0.311402;0.011977;0.323492;193064;96136 +6365/11678;BN254 projective form: value generation (negate_with_one);0.272553;0.048097;0.320752;193064;96388 +6366/11678;BN254 projective form: value generation (negate_with_zero);0.283089;0.031897;0.315095;192932;96136 +6367/11678;BN254 projective form: value generation (negate_with_random);0.305148;0.012045;0.317306;193064;96136 +6368/11678;BN254 projective form: value generation (double_with_random);0.287744;0.027975;0.315827;192932;96136 +6369/11678;BN254 projective form: value generation (negate generates a valid point);0.293319;0.024108;0.317539;192932;96128 +6370/11678;BN254 projective form: value generation (addition generates a valid point);0.304208;0.01601;0.320324;193196;96132 +6371/11678;BN254 projective form: value generation (double generates a valid point);0.290889;0.023908;0.314899;193192;96392 +6372/11678;BN254 projective form: value generation (scalar multiplication generates a valid point);0.343549;0.043942;0.387598;193192;96392 +6373/11678;BN254 projective form: value generation (of_bytes_exn and to_bytes are inverse functions);0.293438;0.024118;0.317658;193060;96136 +6374/11678;BN254 projective form: value generation (check bytes on random with to_bytes);0.276584;0.040084;0.31677;192936;96136 +6375/11678;BN254 projective form: value generation (double_with_one);0.286456;0.027849;0.314439;192936;96136 +6376/11678;BN254 projective form: value generation (double_with_zero);0.296646;0.028061;0.324806;192936;96136 +6377/11678;BN254 projective form: equality (zero);0.3033;0.019953;0.323356;193068;96240 +6378/11678;BN254 projective form: equality (one);0.288082;0.03601;0.324198;193192;96392 +6379/11678;BN254 projective form: equality (random_same_objects);0.295552;0.019969;0.315626;192932;96136 +6380/11678;BN254 projective form: Group properties (check_bytes_random);0.295843;0.027985;0.323927;192932;96136 +6381/11678;BN254 projective form: Group properties (check_bytes_zero);0.276242;0.040035;0.316379;192932;96136 +6382/11678;BN254 projective form: Group properties (check_bytes_one);0.299526;0.015974;0.315618;192932;96132 +6383/11678;BN254 projective form: Group properties (check_bytes_random_double);0.306594;0.015926;0.322627;192932;96132 +6384/11678;BN254 projective form: Group properties (check_bytes_random_sum);0.307322;0.011973;0.319401;193060;96136 +6385/11678;BN254 projective form: Group properties (check_bytes_random_multiplication);0.363408;0.027954;0.391551;192936;96148 +6386/11678;BN254 projective form: Group properties (zero_scalar_nullifier_one);0.286931;0.027896;0.314919;192740;96096 +6387/11678;BN254 projective form: Group properties (zero_scalar_nullifier_zero);0.296799;0.024064;0.320975;193064;96128 +6388/11678;BN254 projective form: Group properties (zero_scalar_nullifier_random);0.290272;0.035786;0.326174;193064;96136 +6389/11678;BN254 projective form: Group properties (multiply_by_one_does_nothing);0.298939;0.019929;0.318968;192936;96136 +6390/11678;BN254 projective form: Group properties (opposite_of_opposite);0.277483;0.044236;0.321831;193188;96396 +6391/11678;BN254 projective form: Group properties (opposite_of_opposite_using_scalar);0.302478;0.019899;0.322487;192936;96132 +6392/11678;BN254 projective form: Group properties (opposite_of_zero_is_zero);0.299597;0.019973;0.319686;193192;96316 +6393/11678;BN254 projective form: Group properties (opposite_of_opposite_of_zero_is_zero);0.281692;0.032193;0.314004;192940;96136 +6394/11678;BN254 projective form: Group properties (opposite_of_opposite_of_one_is_one);0.300049;0.020003;0.320155;193060;96344 +6395/11678;BN254 projective form: Group properties (opposite_equality);0.29571;0.027972;0.323786;192940;96136 +6396/11678;BN254 projective form: Group properties (zero is the identity);0.294383;0.031825;0.32632;193028;96388 +6397/11678;BN254 projective form: Group properties (distributivity);0.498241;0.039859;0.538201;193064;96136 +6398/11678;BN254 projective form: Group properties (opposite_of_scalar_is_opposite_of_ec);0.430527;0.03189;0.462568;192940;96068 +6399/11678;BN254 projective form: Group properties (opposite_existential_property);0.284851;0.036107;0.321077;192940;96140 +6400/11678;BN254 projective form: Group properties (mul_by_order_of_base_field_equals_element);0.445916;0.020086;0.4661;192932;96136 +6401/11678;BN254 projective form: Group properties (multiplication_properties_on_base_field_element);0.724437;0.040024;0.764564;196004;99136 +6402/11678;BN254 projective form: Group properties (double);0.287916;0.039988;0.328015;193188;96392 +6403/11678;BN254 projective form: Group properties (additive_associativity_with_scalar);0.50374;0.035981;0.539831;193196;96392 +6404/11678;BN254 projective form: Group properties (inverse on scalar);0.689182;0.024041;0.713318;192936;96136 +6405/11678;BN254 projective form: Group properties (additive_associativity);0.291655;0.031962;0.323742;193064;96388 +6406/11678;BN254 projective form: Group properties (additive_commutativity);0.291904;0.02799;0.320016;193316;96392 +6407/11678;BN254 projective form: Group properties (Generator is of prime order);0.286307;0.031811;0.318234;193064;96644 +6408/11678;BN254 jacobian coordinates: value generation (random);0.29256;0.024046;0.316723;193196;96136 +6409/11678;BN254 jacobian coordinates: value generation (negate_with_one);0.299759;0.019983;0.31985;193064;96388 +6410/11678;BN254 jacobian coordinates: value generation (negate_with_zero);0.302286;0.019887;0.322283;193060;96140 +6411/11678;BN254 jacobian coordinates: value generation (negate_with_random);0.276518;0.040075;0.3167;192936;96132 +6412/11678;BN254 jacobian coordinates: value generation (double_with_random);0.299736;0.019982;0.319848;193196;96316 +6413/11678;BN254 jacobian coordinates: value generation (negate generates a valid point);0.286436;0.031826;0.31836;193060;96136 +6414/11678;BN254 jacobian coordinates: value generation (addition generates a valid point);0.294554;0.027863;0.322532;193068;96392 +6415/11678;BN254 jacobian coordinates: value generation (double generates a valid point);0.290562;0.027862;0.318542;193188;96136 +6416/11678;BN254 jacobian coordinates: value generation (scalar multiplication generates a valid point);0.42882;0.020038;0.448963;192936;96136 +6417/11678;BN254 jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.269291;0.05225;0.321658;193060;96320 +6418/11678;BN254 jacobian coordinates: value generation (check bytes on random with to_bytes);0.299259;0.01596;0.315336;192936;96208 +6419/11678;BN254 jacobian coordinates: value generation (double_with_one);0.293643;0.028157;0.321909;193060;96388 +6420/11678;BN254 jacobian coordinates: value generation (double_with_zero);0.287249;0.027927;0.315278;192932;96136 +6421/11678;BN254 jacobian coordinates: equality (zero);0.289587;0.028154;0.317863;192932;96136 +6422/11678;BN254 jacobian coordinates: equality (one);0.297376;0.024111;0.3216;192940;96136 +6423/11678;BN254 jacobian coordinates: equality (random_same_objects);0.287085;0.031898;0.319088;193060;96392 +6424/11678;BN254 jacobian coordinates: Group properties (check_bytes_random);0.292937;0.024077;0.317114;192932;96136 +6425/11678;BN254 jacobian coordinates: Group properties (check_bytes_zero);0.292293;0.032032;0.324436;193064;96136 +6426/11678;BN254 jacobian coordinates: Group properties (check_bytes_one);0.298913;0.019927;0.318967;193064;96120 +6427/11678;BN254 jacobian coordinates: Group properties (check_bytes_random_double);0.291274;0.02793;0.319311;193060;96392 +6428/11678;BN254 jacobian coordinates: Group properties (check_bytes_random_sum);0.290599;0.031846;0.322547;192936;96140 +6429/11678;BN254 jacobian coordinates: Group properties (check_bytes_random_multiplication);0.433283;0.016047;0.449439;192932;96136 +6430/11678;BN254 jacobian coordinates: Group properties (zero_scalar_nullifier_one);0.301594;0.016085;0.317792;193068;96136 +6431/11678;BN254 jacobian coordinates: Group properties (zero_scalar_nullifier_zero);0.293576;0.020107;0.313794;192936;96136 +6432/11678;BN254 jacobian coordinates: Group properties (zero_scalar_nullifier_random);0.291537;0.027955;0.319571;193032;96392 +6433/11678;BN254 jacobian coordinates: Group properties (multiply_by_one_does_nothing);0.286626;0.031847;0.318586;193068;96392 +6434/11678;BN254 jacobian coordinates: Group properties (opposite_of_opposite);0.292711;0.032078;0.324954;193060;96248 +6435/11678;BN254 jacobian coordinates: Group properties (opposite_of_opposite_using_scalar);0.301006;0.016053;0.317165;193320;96140 +6436/11678;BN254 jacobian coordinates: Group properties (opposite_of_zero_is_zero);0.28084;0.032096;0.313072;193064;96132 +6437/11678;BN254 jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.287403;0.031933;0.319435;193060;96128 +6438/11678;BN254 jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.28557;0.032176;0.317865;193188;96392 +6439/11678;BN254 jacobian coordinates: Group properties (opposite_equality);0.295037;0.027908;0.323052;193320;96388 +6440/11678;BN254 jacobian coordinates: Group properties (zero is the identity);0.303456;0.015971;0.319534;192932;96132 +6441/11678;BN254 jacobian coordinates: Group properties (distributivity);0.678941;0.039937;0.718978;192932;96132 +6442/11678;BN254 jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.557603;0.032092;0.589798;193060;96136 +6443/11678;BN254 jacobian coordinates: Group properties (opposite_existential_property);0.293343;0.02411;0.317552;192808;96136 +6444/11678;BN254 jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.551863;0.031992;0.583971;193192;96396 +6445/11678;BN254 jacobian coordinates: Group properties (multiplication_properties_on_base_field_element);1.07858;0.027963;1.10666;196776;99900 +6446/11678;BN254 jacobian coordinates: Group properties (double);0.263135;0.055816;0.319059;193064;96392 +6447/11678;BN254 jacobian coordinates: Group properties (additive_associativity_with_scalar);0.684177;0.028007;0.71229;193068;96136 +6448/11678;BN254 jacobian coordinates: Group properties (inverse on scalar);0.808911;0.024027;0.833031;193704;96572 +6449/11678;BN254 jacobian coordinates: Group properties (additive_associativity);0.316078;0.012002;0.328199;192932;96136 +6450/11678;BN254 jacobian coordinates: Group properties (additive_commutativity);0.301584;0.024126;0.325821;192940;96136 +6451/11678;BN254 jacobian coordinates: Group properties (Generator is of prime order);0.283149;0.031904;0.315157;193064;96276 +6452/11678;BN254 affine form: value generation (random);0.285359;0.036172;0.321655;192932;96136 +6453/11678;BN254 affine form: value generation (negate_with_one);0.29269;0.032075;0.324873;192936;96136 +6454/11678;BN254 affine form: value generation (negate_with_zero);0.294835;0.023905;0.318849;193068;96136 +6455/11678;BN254 affine form: value generation (negate_with_random);0.289606;0.028156;0.317871;193188;96392 +6456/11678;BN254 affine form: value generation (double_with_random);0.291352;0.027937;0.319389;193060;96156 +6457/11678;BN254 affine form: value generation (negate generates a valid point);0.288261;0.028025;0.316395;192932;96140 +6458/11678;BN254 affine form: value generation (addition generates a valid point);0.286993;0.03986;0.326956;193064;96320 +6459/11678;BN254 affine form: value generation (double generates a valid point);0.29669;0.020046;0.316853;193060;96224 +6460/11678;BN254 affine form: value generation (scalar multiplication generates a valid point);0.424169;0.032012;0.456286;193060;96388 +6461/11678;BN254 affine form: value generation (of_bytes_exn and to_bytes are inverse functions);0.292607;0.028058;0.320781;193324;96320 +6462/11678;BN254 affine form: value generation (check bytes on random with to_bytes);0.296524;0.028049;0.324679;193060;96388 +6463/11678;BN254 affine form: value generation (double_with_one);0.283587;0.027959;0.311651;192932;96136 +6464/11678;BN254 affine form: value generation (double_with_zero);0.296562;0.020038;0.316719;193060;96136 +6465/11678;BN254 affine form: equality (zero);0.291079;0.023924;0.315114;192936;96136 +6466/11678;BN254 affine form: equality (one);0.291133;0.027916;0.319155;193060;96136 +6467/11678;BN254 affine form: equality (random_same_objects);0.298505;0.02786;0.326476;193188;96392 +6468/11678;BN254 affine form: Group properties (check_bytes_random);0.281538;0.036197;0.317835;192936;96136 +6469/11678;BN254 affine form: Group properties (check_bytes_zero);0.283787;0.031976;0.315868;193064;96136 +6470/11678;BN254 affine form: Group properties (check_bytes_one);0.276592;0.040085;0.316779;193064;96136 +6471/11678;BN254 affine form: Group properties (check_bytes_random_double);0.291557;0.027957;0.31962;193188;96392 +6472/11678;BN254 affine form: Group properties (check_bytes_random_sum);0.281492;0.044234;0.325841;193064;96312 +6473/11678;BN254 affine form: Group properties (check_bytes_random_multiplication);0.415079;0.031929;0.447125;192936;96136 +6474/11678;BN254 affine form: Group properties (zero_scalar_nullifier_one);0.297279;0.020086;0.317475;192936;96140 +6475/11678;BN254 affine form: Group properties (zero_scalar_nullifier_zero);0.2883;0.028029;0.316442;192992;96392 +6476/11678;BN254 affine form: Group properties (zero_scalar_nullifier_random);0.300174;0.024013;0.324286;193188;96392 +6477/11678;BN254 affine form: Group properties (multiply_by_one_does_nothing);0.295498;0.019966;0.315568;192940;96132 +6478/11678;BN254 affine form: Group properties (opposite_of_opposite);0.287794;0.031977;0.319872;193060;96136 +6479/11678;BN254 affine form: Group properties (opposite_of_opposite_using_scalar);0.293066;0.032116;0.325383;192932;96108 +6480/11678;BN254 affine form: Group properties (opposite_of_zero_is_zero);0.299091;0.023927;0.323128;193192;96392 +6481/11678;BN254 affine form: Group properties (opposite_of_opposite_of_zero_is_zero);0.286718;0.035839;0.322661;192936;96136 +6482/11678;BN254 affine form: Group properties (opposite_of_opposite_of_one_is_one);0.299064;0.023925;0.323118;192936;96132 +6483/11678;BN254 affine form: Group properties (opposite_equality);0.264711;0.05615;0.320961;193188;96388 +6484/11678;BN254 affine form: Group properties (zero is the identity);0.288986;0.032109;0.321211;192932;96136 +6485/11678;BN254 affine form: Group properties (distributivity);0.677198;0.04007;0.717372;193324;96392 +6486/11678;BN254 affine form: Group properties (opposite_of_scalar_is_opposite_of_ec);0.554902;0.031936;0.586932;192936;96140 +6487/11678;BN254 affine form: Group properties (opposite_existential_property);0.284615;0.032069;0.316797;192864;96392 +6488/11678;BN254 affine form: Group properties (mul_by_order_of_base_field_equals_element);0.546575;0.031916;0.578604;193196;96136 +6489/11678;BN254 affine form: Group properties (multiplication_properties_on_base_field_element);1.0928;0.02802;1.12093;193064;96136 +6490/11678;BN254 affine form: Group properties (double);0.286222;0.031802;0.318139;193064;96132 +6491/11678;BN254 affine form: Group properties (additive_associativity_with_scalar);0.672957;0.040056;0.713106;192932;96136 +6492/11678;BN254 affine form: Group properties (inverse on scalar);0.842867;0.011983;0.854945;193060;96132 +6493/11678;BN254 affine form: Group properties (additive_associativity);0.307681;0.015983;0.323781;193192;96392 +6494/11678;BN254 affine form: Group properties (additive_commutativity);0.283245;0.043883;0.327318;193060;96248 +6495/11678;BN254 affine form: Group properties (Generator is of prime order);0.304724;0.012028;0.316859;193064;96388 +6496/11678;BN254 affine form: Compressed representation (Compressed representation of zero is the bs with zeroes);0.276809;0.040117;0.317029;192932;96136 +6497/11678;BN254 affine form: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation);0.299353;0.027939;0.327412;192936;96388 +6498/11678;BN254 affine form: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation);0.303879;0.02399;0.32798;193060;96392 +6499/11678;BN254 affine form: Compressed representation (Compressed version is half the size);0.286096;0.031788;0.318104;193060;96188 +6500/11678;BN254 affine form: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation);0.308228;0.008005;0.316401;193060;96204 +6501/11678;BN254 affine form: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation);0.278929;0.039847;0.318925;192932;96176 +6502/11678;BLS12-381 G1 projective form: value generation (random);0.330669;0.035855;0.366633;193064;96136 +6503/11678;BLS12-381 G1 projective form: value generation (negate_with_one);0.286625;0.027866;0.31472;192748;96140 +6504/11678;BLS12-381 G1 projective form: value generation (negate_with_zero);0.294111;0.019872;0.314105;193060;96388 +6505/11678;BLS12-381 G1 projective form: value generation (negate_with_random);0.322581;0.039824;0.362507;192940;96136 +6506/11678;BLS12-381 G1 projective form: value generation (double_with_random);0.344914;0.020053;0.36508;193064;96320 +6507/11678;BLS12-381 G1 projective form: value generation (negate generates a valid point);0.3817;0.028125;0.409938;192940;96132 +6508/11678;BLS12-381 G1 projective form: value generation (addition generates a valid point);0.419369;0.019969;0.439437;193196;96136 +6509/11678;BLS12-381 G1 projective form: value generation (double generates a valid point);0.383582;0.019978;0.403677;193068;96392 +6510/11678;BLS12-381 G1 projective form: value generation (scalar multiplication generates a valid point);0.472073;0.020003;0.492174;192936;96136 +6511/11678;BLS12-381 G1 projective form: value generation (of_bytes_exn and to_bytes are inverse functions);0.375768;0.023985;0.399867;193060;96136 +6512/11678;BLS12-381 G1 projective form: value generation (check bytes on random with to_bytes);0.344052;0.056008;0.400191;193060;96132 +6513/11678;BLS12-381 G1 projective form: value generation (double_with_one);0.284073;0.032008;0.316186;193188;96392 +6514/11678;BLS12-381 G1 projective form: value generation (double_with_zero);0.288506;0.028049;0.316668;192936;96136 +6515/11678;BLS12-381 G1 projective form: equality (zero);0.302445;0.019897;0.322457;192936;96136 +6516/11678;BLS12-381 G1 projective form: equality (one);0.30087;0.024069;0.325047;193064;96136 +6517/11678;BLS12-381 G1 projective form: equality (random_same_objects);0.318526;0.039815;0.358463;193192;96292 +6518/11678;BLS12-381 G1 projective form: Group properties (check_bytes_random);0.366777;0.031893;0.398783;193060;96392 +6519/11678;BLS12-381 G1 projective form: Group properties (check_bytes_zero);0.309778;0.008046;0.317931;193064;96136 +6520/11678;BLS12-381 G1 projective form: Group properties (check_bytes_one);0.285257;0.028123;0.313489;193060;96132 +6521/11678;BLS12-381 G1 projective form: Group properties (check_bytes_random_double);0.362778;0.035879;0.398776;192936;96136 +6522/11678;BLS12-381 G1 projective form: Group properties (check_bytes_random_sum);0.422308;0.023904;0.446311;193320;96392 +6523/11678;BLS12-381 G1 projective form: Group properties (check_bytes_random_multiplication);0.455124;0.031938;0.487175;193188;96392 +6524/11678;BLS12-381 G1 projective form: Group properties (zero_scalar_nullifier_one);0.299898;0.015994;0.316;193064;96388 +6525/11678;BLS12-381 G1 projective form: Group properties (zero_scalar_nullifier_zero);0.293305;0.024107;0.317564;193192;96204 +6526/11678;BLS12-381 G1 projective form: Group properties (zero_scalar_nullifier_random);0.333885;0.032181;0.366175;192932;96136 +6527/11678;BLS12-381 G1 projective form: Group properties (multiply_by_one_does_nothing);0.324219;0.036024;0.360343;193316;96392 +6528/11678;BLS12-381 G1 projective form: Group properties (opposite_of_opposite);0.343051;0.023933;0.367084;193060;96132 +6529/11678;BLS12-381 G1 projective form: Group properties (opposite_of_opposite_using_scalar);0.337122;0.02408;0.361306;192936;96136 +6530/11678;BLS12-381 G1 projective form: Group properties (opposite_of_zero_is_zero);0.294762;0.027882;0.322762;193064;96316 +6531/11678;BLS12-381 G1 projective form: Group properties (opposite_of_opposite_of_zero_is_zero);0.291435;0.031938;0.323475;193060;96316 +6532/11678;BLS12-381 G1 projective form: Group properties (opposite_of_opposite_of_one_is_one);0.279992;0.039998;0.320097;193064;96132 +6533/11678;BLS12-381 G1 projective form: Group properties (opposite_equality);0.302286;0.019887;0.322258;193140;96560 +6534/11678;BLS12-381 G1 projective form: Group properties (zero is the identity);0.318778;0.043832;0.362719;193320;96388 +6535/11678;BLS12-381 G1 projective form: Group properties (distributivity);0.654291;0.027927;0.682317;194472;97340 +6536/11678;BLS12-381 G1 projective form: Group properties (opposite_of_scalar_is_opposite_of_ec);0.520527;0.02002;0.540652;193064;96136 +6537/11678;BLS12-381 G1 projective form: Group properties (opposite_existential_property);0.327762;0.031976;0.359846;193196;96392 +6538/11678;BLS12-381 G1 projective form: Group properties (mul_by_order_of_base_field_equals_element);0.518618;0.019946;0.538667;193192;96136 +6539/11678;BLS12-381 G1 projective form: Group properties (multiplication_properties_on_base_field_element);0.872074;0.024002;0.896187;199976;103232 +6540/11678;BLS12-381 G1 projective form: Group properties (double);0.336929;0.028077;0.365108;193068;96392 +6541/11678;BLS12-381 G1 projective form: Group properties (additive_associativity_with_scalar);0.613032;0.016027;0.629159;193964;97088 +6542/11678;BLS12-381 G1 projective form: Group properties (inverse on scalar);0.689714;0.032079;0.721884;196136;99132 +6543/11678;BLS12-381 G1 projective form: Group properties (additive_associativity);0.431892;0.023994;0.455983;193192;96136 +6544/11678;BLS12-381 G1 projective form: Group properties (additive_commutativity);0.390434;0.023904;0.414436;193320;96388 +6545/11678;BLS12-381 G1 projective form: Group properties (Generator is of prime order);0.276816;0.040118;0.317042;193060;96396 +6546/11678;BLS12-381 G1 affine form: value generation (random);0.384556;0.02804;0.412709;192936;96136 +6547/11678;BLS12-381 G1 affine form: value generation (negate_with_one);0.28842;0.02804;0.31661;192940;96136 +6548/11678;BLS12-381 G1 affine form: value generation (negate_with_zero);0.294795;0.027886;0.322796;193060;96392 +6549/11678;BLS12-381 G1 affine form: value generation (negate_with_random);0.380334;0.032028;0.412481;192812;96392 +6550/11678;BLS12-381 G1 affine form: value generation (double_with_random);0.379664;0.027975;0.407742;193196;96392 +6551/11678;BLS12-381 G1 affine form: value generation (negate generates a valid point);0.47174;0.027984;0.499803;193000;96392 +6552/11678;BLS12-381 G1 affine form: value generation (addition generates a valid point);0.569623;0.020057;0.589783;193060;96392 +6553/11678;BLS12-381 G1 affine form: value generation (double generates a valid point);0.477677;0.024084;0.501867;193060;96136 +6554/11678;BLS12-381 G1 affine form: value generation (scalar multiplication generates a valid point);0.660109;0.012001;0.67221;193068;96132 +6555/11678;BLS12-381 G1 affine form: value generation (of_bytes_exn and to_bytes are inverse functions);0.468396;0.032027;0.500518;193320;96388 +6556/11678;BLS12-381 G1 affine form: value generation (check bytes on random with to_bytes);0.468042;0.028002;0.496147;193064;96132 +6557/11678;BLS12-381 G1 affine form: value generation (double_with_one);0.293721;0.024141;0.317968;192936;96136 +6558/11678;BLS12-381 G1 affine form: value generation (double_with_zero);0.298491;0.023879;0.322477;193024;96224 +6559/11678;BLS12-381 G1 affine form: equality (zero);0.295109;0.019939;0.31515;193316;96396 +6560/11678;BLS12-381 G1 affine form: equality (one);0.297872;0.020126;0.318105;192932;96136 +6561/11678;BLS12-381 G1 affine form: equality (random_same_objects);0.385584;0.024099;0.409802;193064;96392 +6562/11678;BLS12-381 G1 affine form: Group properties (check_bytes_random);0.467154;0.027949;0.495221;193196;96380 +6563/11678;BLS12-381 G1 affine form: Group properties (check_bytes_zero);0.293511;0.024124;0.317744;193188;96132 +6564/11678;BLS12-381 G1 affine form: Group properties (check_bytes_one);0.295544;0.027956;0.323609;193060;96388 +6565/11678;BLS12-381 G1 affine form: Group properties (check_bytes_random_double);0.467995;0.023999;0.492103;192940;96136 +6566/11678;BLS12-381 G1 affine form: Group properties (check_bytes_random_sum);0.549508;0.032088;0.581738;192936;96124 +6567/11678;BLS12-381 G1 affine form: Group properties (check_bytes_random_multiplication);0.653438;0.024052;0.677595;193064;96392 +6568/11678;BLS12-381 G1 affine form: Group properties (zero_scalar_nullifier_one);0.276429;0.040062;0.31659;193064;96392 +6569/11678;BLS12-381 G1 affine form: Group properties (zero_scalar_nullifier_zero);0.279197;0.035896;0.315271;193068;96160 +6570/11678;BLS12-381 G1 affine form: Group properties (zero_scalar_nullifier_random);0.384875;0.020045;0.405034;193064;96136 +6571/11678;BLS12-381 G1 affine form: Group properties (multiply_by_one_does_nothing);0.366302;0.039815;0.406242;192936;96132 +6572/11678;BLS12-381 G1 affine form: Group properties (opposite_of_opposite);0.371275;0.035929;0.407312;193064;96132 +6573/11678;BLS12-381 G1 affine form: Group properties (opposite_of_opposite_using_scalar);0.388323;0.016013;0.404441;193064;96392 +6574/11678;BLS12-381 G1 affine form: Group properties (opposite_of_zero_is_zero);0.297361;0.020091;0.317565;192936;96248 +6575/11678;BLS12-381 G1 affine form: Group properties (opposite_of_opposite_of_zero_is_zero);0.292693;0.024056;0.31694;192932;96160 +6576/11678;BLS12-381 G1 affine form: Group properties (opposite_of_opposite_of_one_is_one);0.300594;0.016031;0.316737;193196;96392 +6577/11678;BLS12-381 G1 affine form: Group properties (opposite_equality);0.292426;0.032046;0.324584;193060;96140 +6578/11678;BLS12-381 G1 affine form: Group properties (zero is the identity);0.371581;0.035959;0.407655;193060;96392 +6579/11678;BLS12-381 G1 affine form: Group properties (distributivity);1.0175;0.032047;1.04965;193064;96132 +6580/11678;BLS12-381 G1 affine form: Group properties (opposite_of_scalar_is_opposite_of_ec);0.745554;0.02405;0.769699;193060;96392 +6581/11678;BLS12-381 G1 affine form: Group properties (opposite_existential_property);0.37632;0.028023;0.404444;193196;96136 +6582/11678;BLS12-381 G1 affine form: Group properties (mul_by_order_of_base_field_equals_element);0.73841;0.027939;0.76645;193064;96392 +6583/11678;BLS12-381 G1 affine form: Group properties (multiplication_properties_on_base_field_element);1.48805;0.02;1.50815;194476;97588 +6584/11678;BLS12-381 G1 affine form: Group properties (double);0.362297;0.043794;0.406197;192936;96136 +6585/11678;BLS12-381 G1 affine form: Group properties (additive_associativity_with_scalar);0.928102;0.032003;0.960197;192940;96136 +6586/11678;BLS12-381 G1 affine form: Group properties (inverse on scalar);1.12137;0.016019;1.1375;192940;96316 +6587/11678;BLS12-381 G1 affine form: Group properties (additive_associativity);0.551816;0.035988;0.587907;193320;96392 +6588/11678;BLS12-381 G1 affine form: Group properties (additive_commutativity);0.466354;0.027901;0.494366;193320;96392 +6589/11678;BLS12-381 G1 affine form: Group properties (Generator is of prime order);0.298786;0.015935;0.314824;192940;96132 +6590/11678;BLS12-381 G1 affine form: Compressed representation (Compressed representation of zero is the bs with zeroes);0.293316;0.02009;0.313511;192936;96136 +6591/11678;BLS12-381 G1 affine form: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation);0.480632;0.020026;0.500771;193060;96136 +6592/11678;BLS12-381 G1 affine form: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation);0.474183;0.031877;0.506194;193064;96136 +6593/11678;BLS12-381 G1 affine form: Compressed representation (Compressed version is half the size);0.286901;0.031877;0.318887;192940;96132 +6594/11678;BLS12-381 G1 affine form: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation);0.374963;0.0359;0.410962;193060;96388 +6595/11678;BLS12-381 G1 affine form: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation);0.396913;0.012027;0.409049;192936;96136 +6596/11678;Bandersnatch Weierstrass form, affine coordinates: value generation (random);0.299912;0.019994;0.320011;193060;96240 +6597/11678;Bandersnatch Weierstrass form, affine coordinates: value generation (negate_with_one);0.289477;0.024123;0.313721;193064;96392 +6598/11678;Bandersnatch Weierstrass form, affine coordinates: value generation (negate_with_zero);0.290377;0.023866;0.314341;192932;96136 +6599/11678;Bandersnatch Weierstrass form, affine coordinates: value generation (negate_with_random);0.286675;0.035834;0.322612;193060;96136 +6600/11678;Bandersnatch Weierstrass form, affine coordinates: value generation (double_with_random);0.294372;0.031824;0.326342;192936;96156 +6601/11678;Bandersnatch Weierstrass form, affine coordinates: value generation (negate generates a valid point);0.304557;0.020036;0.324777;193068;96176 +6602/11678;Bandersnatch Weierstrass form, affine coordinates: value generation (addition generates a valid point);0.302639;0.031856;0.334616;192936;96136 +6603/11678;Bandersnatch Weierstrass form, affine coordinates: value generation (double generates a valid point);0.304043;0.024003;0.32815;192932;96140 +6604/11678;Bandersnatch Weierstrass form, affine coordinates: value generation (scalar multiplication generates a valid point);0.444254;0.016009;0.460378;192932;96392 +6605/11678;Bandersnatch Weierstrass form, affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.297131;0.024091;0.321325;193064;96392 +6606/11678;Bandersnatch Weierstrass form, affine coordinates: value generation (check bytes on random with to_bytes);0.307122;0.023931;0.33116;193064;96392 +6607/11678;Bandersnatch Weierstrass form, affine coordinates: value generation (double_with_one);0.290313;0.023861;0.314311;192936;96136 +6608/11678;Bandersnatch Weierstrass form, affine coordinates: value generation (double_with_zero);0.304773;0.01604;0.320942;193188;96136 +6609/11678;Bandersnatch Weierstrass form, affine coordinates: equality (zero);0.290507;0.031836;0.322444;193188;96396 +6610/11678;Bandersnatch Weierstrass form, affine coordinates: equality (one);0.273636;0.044264;0.318029;193060;96316 +6611/11678;Bandersnatch Weierstrass form, affine coordinates: equality (random_same_objects);0.30892;0.024071;0.333093;192932;96392 +6612/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (check_bytes_random);0.30567;0.020109;0.325888;193064;96132 +6613/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (check_bytes_zero);0.288999;0.032111;0.321222;193068;96356 +6614/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (check_bytes_one);0.304469;0.016024;0.32061;193060;96136 +6615/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (check_bytes_random_double);0.298215;0.031809;0.33012;193188;96392 +6616/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (check_bytes_random_sum);0.319994;0.015999;0.336099;193064;96136 +6617/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (check_bytes_random_multiplication);0.439696;0.023983;0.46378;192932;96136 +6618/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (zero_scalar_nullifier_one);0.284292;0.036037;0.320437;193192;96136 +6619/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (zero_scalar_nullifier_zero);0.282072;0.039728;0.321954;193188;96392 +6620/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (zero_scalar_nullifier_random);0.296145;0.028013;0.324256;193060;96136 +6621/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (multiply_by_one_does_nothing);0.302098;0.028195;0.330396;192936;96136 +6622/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_of_opposite);0.310315;0.019892;0.330392;192896;96252 +6623/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_of_opposite_using_scalar);0.287507;0.035938;0.32355;193192;96320 +6624/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_of_zero_is_zero);0.298812;0.01992;0.31884;193060;96316 +6625/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.28279;0.039829;0.322723;193192;96392 +6626/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.291816;0.023984;0.315897;193188;96136 +6627/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_equality);0.292752;0.024061;0.316921;192932;96392 +6628/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (zero is the identity);0.293261;0.032138;0.32551;193064;96136 +6629/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (distributivity);0.707277;0.019979;0.727417;192888;96252 +6630/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.576067;0.016001;0.592161;193064;96136 +6631/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_existential_property);0.304011;0.02;0.324177;192936;96192 +6632/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.571338;0.023972;0.595417;192936;96392 +6633/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (multiplication_properties_on_base_field_element);1.09806;0.019964;1.11815;193196;96132 +6634/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (double);0.308653;0.020042;0.328798;193064;96392 +6635/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (additive_associativity_with_scalar);0.705265;0.024043;0.729408;193064;96392 +6636/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (inverse on scalar);0.856406;0.020009;0.876534;193060;96392 +6637/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (additive_associativity);0.299001;0.039866;0.338977;193192;96136 +6638/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (additive_commutativity);0.314975;0.019935;0.335019;192860;96268 +6639/11678;Bandersnatch Weierstrass form, affine coordinates: Group properties (Generator is of prime order);0.297212;0.016065;0.313379;192932;96136 +6640/11678;Bandersnatch Weierstrass form, affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes);0.291643;0.027965;0.319769;192936;96136 +6641/11678;Bandersnatch Weierstrass form, affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation);0.303323;0.035919;0.33933;193024;96392 +6642/11678;Bandersnatch Weierstrass form, affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation);0.301622;0.032173;0.333905;192804;96392 +6643/11678;Bandersnatch Weierstrass form, affine coordinates: Compressed representation (Compressed version is half the size);0.279382;0.039911;0.319417;192936;96132 +6644/11678;Bandersnatch Weierstrass form, affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation);0.285021;0.040143;0.325265;192936;96136 +6645/11678;Bandersnatch Weierstrass form, affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation);0.307275;0.023943;0.331326;193060;96136 +6646/11678;Bandersnatch Montgomery form and affine coordinates: value generation (random);0.304059;0.020003;0.324167;193068;96388 +6647/11678;Bandersnatch Montgomery form and affine coordinates: value generation (negate_with_one);0.300708;0.012028;0.31285;192708;96136 +6648/11678;Bandersnatch Montgomery form and affine coordinates: value generation (negate_with_zero);0.295442;0.019962;0.315513;192936;96136 +6649/11678;Bandersnatch Montgomery form and affine coordinates: value generation (negate_with_random);0.29116;0.039885;0.331148;192936;96140 +6650/11678;Bandersnatch Montgomery form and affine coordinates: value generation (double_with_random);0.306581;0.023889;0.330635;193064;96244 +6651/11678;Bandersnatch Montgomery form and affine coordinates: value generation (negate generates a valid point);0.299448;0.023955;0.323503;193060;96132 +6652/11678;Bandersnatch Montgomery form and affine coordinates: value generation (addition generates a valid point);0.309793;0.024139;0.334034;193060;96392 +6653/11678;Bandersnatch Montgomery form and affine coordinates: value generation (double generates a valid point);0.299756;0.02398;0.323839;193064;96136 +6654/11678;Bandersnatch Montgomery form and affine coordinates: value generation (scalar multiplication generates a valid point);0.381467;0.024092;0.405675;193000;96156 +6655/11678;Bandersnatch Montgomery form and affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.289564;0.032173;0.321864;193064;96136 +6656/11678;Bandersnatch Montgomery form and affine coordinates: value generation (check bytes on random with to_bytes);0.304705;0.020046;0.324863;192936;96136 +6657/11678;Bandersnatch Montgomery form and affine coordinates: value generation (double_with_one);0.295953;0.023996;0.320068;192936;96108 +6658/11678;Bandersnatch Montgomery form and affine coordinates: value generation (double_with_zero);0.292278;0.024022;0.316401;193188;96136 +6659/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (check_bytes_random);0.305207;0.024095;0.329404;192932;96136 +6660/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (check_bytes_zero);0.292384;0.032042;0.324556;193064;96136 +6661/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (check_bytes_one);0.280613;0.03207;0.312783;193192;96392 +6662/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (check_bytes_random_double);0.321844;0.004023;0.325965;192940;96140 +6663/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (check_bytes_random_sum);0.302508;0.031843;0.334475;193060;96140 +6664/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (check_bytes_random_multiplication);0.3775;0.028111;0.405708;192932;96096 +6665/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (zero_scalar_nullifier_one);0.271517;0.043921;0.315539;193060;96136 +6666/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (zero_scalar_nullifier_zero);0.287349;0.031927;0.319413;193064;96136 +6667/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (zero_scalar_nullifier_random);0.307887;0.019992;0.327987;193188;96392 +6668/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (multiply_by_one_does_nothing);0.308795;0.016041;0.324939;193060;96132 +6669/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_of_opposite);0.291284;0.031921;0.323312;193192;96392 +6670/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_of_opposite_using_scalar);0.307661;0.023973;0.331721;192900;96392 +6671/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_of_zero_is_zero);0.294809;0.023903;0.318812;193064;96136 +6672/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.301352;0.016072;0.317522;192932;96136 +6673/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.295283;0.019951;0.315337;193064;96136 +6674/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_equality);0.300782;0.028073;0.328967;192940;96132 +6675/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (zero is the identity);0.305977;0.016104;0.322186;193064;96136 +6676/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (distributivity);0.506876;0.047893;0.554873;192940;96136 +6677/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.441469;0.028093;0.469663;192936;96136 +6678/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_existential_property);0.28125;0.040178;0.32154;192932;96136 +6679/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.432144;0.040013;0.472257;193188;96388 +6680/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (multiplication_properties_on_base_field_element);0.76133;0.024042;0.785476;192932;96136 +6681/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (double);0.307194;0.019947;0.327241;193188;96392 +6682/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (additive_associativity_with_scalar);0.532955;0.012021;0.545087;193188;96136 +6683/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (inverse on scalar);0.604751;0.024029;0.628875;192940;96136 +6684/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (additive_associativity);0.303266;0.035913;0.339281;192936;96136 +6685/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (additive_commutativity);0.300578;0.032061;0.332811;192936;96036 +6686/11678;Bandersnatch Montgomery form and affine coordinates: Group properties (Generator is of prime order);0.306582;0.015926;0.322612;193064;96392 +6687/11678;Bandersnatch Montgomery form and affine coordinates: equality (zero);0.289341;0.02813;0.317612;192940;96136 +6688/11678;Bandersnatch Montgomery form and affine coordinates: equality (one);0.284533;0.03206;0.316703;192936;96132 +6689/11678;Bandersnatch Montgomery form and affine coordinates: equality (random_same_objects);0.297786;0.024144;0.322034;193192;96140 +6690/11678;Bandersnatch Edwards form, affine coordinates: value generation (random);0.308046;0.024003;0.332152;193060;96392 +6691/11678;Bandersnatch Edwards form, affine coordinates: value generation (negate_with_one);0.282996;0.031886;0.31499;192932;96136 +6692/11678;Bandersnatch Edwards form, affine coordinates: value generation (negate_with_zero);0.300961;0.016051;0.317136;192932;96136 +6693/11678;Bandersnatch Edwards form, affine coordinates: value generation (negate_with_random);0.30039;0.028036;0.328547;192940;96096 +6694/11678;Bandersnatch Edwards form, affine coordinates: value generation (double_with_random);0.294966;0.031888;0.326964;193192;96392 +6695/11678;Bandersnatch Edwards form, affine coordinates: value generation (negate generates a valid point);0.316748;0.016037;0.332899;193064;96100 +6696/11678;Bandersnatch Edwards form, affine coordinates: value generation (addition generates a valid point);0.313357;0.024104;0.337568;193064;96136 +6697/11678;Bandersnatch Edwards form, affine coordinates: value generation (double generates a valid point);0.285489;0.040209;0.32582;193188;96320 +6698/11678;Bandersnatch Edwards form, affine coordinates: value generation (scalar multiplication generates a valid point);0.408403;0.024023;0.432526;193032;96396 +6699/11678;Bandersnatch Edwards form, affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions);0.305287;0.020084;0.325473;193060;96136 +6700/11678;Bandersnatch Edwards form, affine coordinates: value generation (check bytes on random with to_bytes);0.319866;0.011994;0.331981;193064;96136 +6701/11678;Bandersnatch Edwards form, affine coordinates: value generation (double_with_one);0.295034;0.027908;0.323087;192936;96164 +6702/11678;Bandersnatch Edwards form, affine coordinates: value generation (double_with_zero);0.290785;0.0239;0.314803;193064;96348 +6703/11678;Bandersnatch Edwards form, affine coordinates: Group properties (check_bytes_random);0.305652;0.016086;0.321852;193192;96132 +6704/11678;Bandersnatch Edwards form, affine coordinates: Group properties (check_bytes_zero);0.295889;0.019992;0.315981;193068;96392 +6705/11678;Bandersnatch Edwards form, affine coordinates: Group properties (check_bytes_one);0.292489;0.032053;0.324664;192932;96136 +6706/11678;Bandersnatch Edwards form, affine coordinates: Group properties (check_bytes_random_double);0.296442;0.032047;0.328599;193060;96388 +6707/11678;Bandersnatch Edwards form, affine coordinates: Group properties (check_bytes_random_sum);0.311266;0.027934;0.339312;193064;96364 +6708/11678;Bandersnatch Edwards form, affine coordinates: Group properties (check_bytes_random_multiplication);0.403894;0.031991;0.435984;193064;96212 +6709/11678;Bandersnatch Edwards form, affine coordinates: Group properties (zero_scalar_nullifier_one);0.30511;0.016058;0.321277;193196;96136 +6710/11678;Bandersnatch Edwards form, affine coordinates: Group properties (zero_scalar_nullifier_zero);0.297138;0.024092;0.321334;193192;96316 +6711/11678;Bandersnatch Edwards form, affine coordinates: Group properties (zero_scalar_nullifier_random);0.302629;0.023891;0.326621;193188;96136 +6712/11678;Bandersnatch Edwards form, affine coordinates: Group properties (multiply_by_one_does_nothing);0.311651;0.019977;0.331711;192904;96392 +6713/11678;Bandersnatch Edwards form, affine coordinates: Group properties (opposite_of_opposite);0.308782;0.02005;0.328984;192996;96172 +6714/11678;Bandersnatch Edwards form, affine coordinates: Group properties (opposite_of_opposite_using_scalar);0.286791;0.039832;0.326748;193064;96136 +6715/11678;Bandersnatch Edwards form, affine coordinates: Group properties (opposite_of_zero_is_zero);0.288833;0.024069;0.313001;193060;96136 +6716/11678;Bandersnatch Edwards form, affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero);0.304705;0.012027;0.316832;192940;96136 +6717/11678;Bandersnatch Edwards form, affine coordinates: Group properties (opposite_of_opposite_of_one_is_one);0.295609;0.019973;0.315698;192940;96144 +6718/11678;Bandersnatch Edwards form, affine coordinates: Group properties (opposite_equality);0.301007;0.02408;0.32519;193060;96136 +6719/11678;Bandersnatch Edwards form, affine coordinates: Group properties (zero is the identity);0.306645;0.015929;0.322685;193188;96392 +6720/11678;Bandersnatch Edwards form, affine coordinates: Group properties (distributivity);0.651534;0.003997;0.655632;193064;96392 +6721/11678;Bandersnatch Edwards form, affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec);0.510729;0.02793;0.538776;193196;96316 +6722/11678;Bandersnatch Edwards form, affine coordinates: Group properties (opposite_existential_property);0.296032;0.032003;0.328143;193192;96392 +6723/11678;Bandersnatch Edwards form, affine coordinates: Group properties (mul_by_order_of_base_field_equals_element);0.520072;0.020002;0.540164;192832;96040 +6724/11678;Bandersnatch Edwards form, affine coordinates: Group properties (multiplication_properties_on_base_field_element);0.943406;0.023984;0.967505;192804;96136 +6725/11678;Bandersnatch Edwards form, affine coordinates: Group properties (double);0.30059;0.028055;0.328794;193064;96224 +6726/11678;Bandersnatch Edwards form, affine coordinates: Group properties (additive_associativity_with_scalar);0.637842;0.020057;0.658009;193188;96392 +6727/11678;Bandersnatch Edwards form, affine coordinates: Group properties (inverse on scalar);0.733531;0.02405;0.757721;193068;96136 +6728/11678;Bandersnatch Edwards form, affine coordinates: Group properties (additive_associativity);0.317741;0.024132;0.341978;193068;96388 +6729/11678;Bandersnatch Edwards form, affine coordinates: Group properties (additive_commutativity);0.311396;0.019961;0.331457;193068;96136 +6730/11678;Bandersnatch Edwards form, affine coordinates: Group properties (Generator is of prime order);0.292814;0.020055;0.312948;192844;96392 +6731/11678;Bandersnatch Edwards form, affine coordinates: Group properties of Edwards curve (unsafe_from_coordinates do not check the point is on the curve);0.282318;0.035786;0.318218;193064;96156 +6732/11678;Bandersnatch Edwards form, affine coordinates: Group properties of Edwards curve (Test check_bytes and of_bytes_[exn/opt] with a different number of bytes than expected);0.283518;0.031945;0.31557;193064;96396 +6733/11678;Bandersnatch Edwards form, affine coordinates: equality (zero);0.287895;0.023991;0.311995;193060;96388 +6734/11678;Bandersnatch Edwards form, affine coordinates: equality (one);0.28677;0.02788;0.314773;193060;96388 +6735/11678;Bandersnatch Edwards form, affine coordinates: equality (random_same_objects);0.300655;0.024052;0.324807;193188;96392 +6736/11678;BabyJubjub reduced twisted edwards form: Vectors (test random coordinates u, v do not give a point on the curve);0.295205;0.023935;0.319255;193064;96392 +6737/11678;BabyJubjub reduced twisted edwards form: value generation (random);0.295626;0.027964;0.323697;192936;96316 +6738/11678;BabyJubjub reduced twisted edwards form: value generation (negate_with_one);0.297692;0.020114;0.317972;192932;96220 +6739/11678;BabyJubjub reduced twisted edwards form: value generation (negate_with_zero);0.284487;0.036061;0.32065;193320;96392 +6740/11678;BabyJubjub reduced twisted edwards form: value generation (negate_with_random);0.296627;0.028059;0.324795;192932;96136 +6741/11678;BabyJubjub reduced twisted edwards form: value generation (double_with_random);0.29947;0.02795;0.327529;193192;96136 +6742/11678;BabyJubjub reduced twisted edwards form: value generation (negate generates a valid point);0.300997;0.024079;0.325179;192932;96136 +6743/11678;BabyJubjub reduced twisted edwards form: value generation (addition generates a valid point);0.29985;0.031984;0.331939;193064;96136 +6744/11678;BabyJubjub reduced twisted edwards form: value generation (double generates a valid point);0.309696;0.02011;0.329925;192948;96176 +6745/11678;BabyJubjub reduced twisted edwards form: value generation (scalar multiplication generates a valid point);0.397134;0.044126;0.441374;192936;96136 +6746/11678;BabyJubjub reduced twisted edwards form: value generation (of_bytes_exn and to_bytes are inverse functions);0.306503;0.019902;0.326508;193060;96320 +6747/11678;BabyJubjub reduced twisted edwards form: value generation (check bytes on random with to_bytes);0.292963;0.032105;0.325167;192940;96136 +6748/11678;BabyJubjub reduced twisted edwards form: value generation (double_with_one);0.287542;0.031949;0.319602;193060;96136 +6749/11678;BabyJubjub reduced twisted edwards form: value generation (double_with_zero);0.284937;0.028092;0.31315;192940;96324 +6750/11678;BabyJubjub reduced twisted edwards form: Group properties of Edwards curve (unsafe_from_coordinates do not check the point is on the curve);0.299071;0.019938;0.319111;193064;96392 +6751/11678;BabyJubjub reduced twisted edwards form: Group properties of Edwards curve (Test check_bytes and of_bytes_[exn/opt] with a different number of bytes than expected);0.288819;0.028079;0.317006;193060;96140 +6752/11678;BabyJubjub reduced twisted edwards form: Group properties (check_bytes_random);0.305586;0.016083;0.32177;192936;96132 +6753/11678;BabyJubjub reduced twisted edwards form: Group properties (check_bytes_zero);0.30928;0.012049;0.321435;193192;96392 +6754/11678;BabyJubjub reduced twisted edwards form: Group properties (check_bytes_one);0.297579;0.016085;0.313782;193004;96136 +6755/11678;BabyJubjub reduced twisted edwards form: Group properties (check_bytes_random_double);0.303335;0.027938;0.331382;192936;96136 +6756/11678;BabyJubjub reduced twisted edwards form: Group properties (check_bytes_random_sum);0.297475;0.036179;0.33376;193064;96136 +6757/11678;BabyJubjub reduced twisted edwards form: Group properties (check_bytes_random_multiplication);0.407122;0.027939;0.435165;193188;96388 +6758/11678;BabyJubjub reduced twisted edwards form: Group properties (zero_scalar_nullifier_one);0.295445;0.023955;0.31951;192936;96136 +6759/11678;BabyJubjub reduced twisted edwards form: Group properties (zero_scalar_nullifier_zero);0.308225;0.016011;0.324339;193064;96136 +6760/11678;BabyJubjub reduced twisted edwards form: Group properties (zero_scalar_nullifier_random);0.299938;0.023995;0.324035;192936;96136 +6761/11678;BabyJubjub reduced twisted edwards form: Group properties (multiply_by_one_does_nothing);0.285111;0.03614;0.321399;193188;96248 +6762/11678;BabyJubjub reduced twisted edwards form: Group properties (opposite_of_opposite);0.288892;0.036111;0.325115;193064;96136 +6763/11678;BabyJubjub reduced twisted edwards form: Group properties (opposite_of_opposite_using_scalar);0.294868;0.035862;0.330837;192884;96388 +6764/11678;BabyJubjub reduced twisted edwards form: Group properties (opposite_of_zero_is_zero);0.303431;0.019962;0.323556;193188;96304 +6765/11678;BabyJubjub reduced twisted edwards form: Group properties (opposite_of_opposite_of_zero_is_zero);0.284441;0.036055;0.320617;193064;96136 +6766/11678;BabyJubjub reduced twisted edwards form: Group properties (opposite_of_opposite_of_one_is_one);0.303084;0.019939;0.323159;192936;96140 +6767/11678;BabyJubjub reduced twisted edwards form: Group properties (opposite_equality);0.292026;0.028002;0.320151;192936;96136 +6768/11678;BabyJubjub reduced twisted edwards form: Group properties (zero is the identity);0.313331;0.016068;0.329505;192804;96136 +6769/11678;BabyJubjub reduced twisted edwards form: Group properties (distributivity);0.626292;0.027923;0.654343;193144;96396 +6770/11678;BabyJubjub reduced twisted edwards form: Group properties (opposite_of_scalar_is_opposite_of_ec);0.508803;0.028044;0.53697;193068;96328 +6771/11678;BabyJubjub reduced twisted edwards form: Group properties (opposite_existential_property);0.303917;0.019994;0.324013;193068;96136 +6772/11678;BabyJubjub reduced twisted edwards form: Group properties (mul_by_order_of_base_field_equals_element);0.527568;0.015986;0.543665;193068;96392 +6773/11678;BabyJubjub reduced twisted edwards form: Group properties (multiplication_properties_on_base_field_element);0.926213;0.03593;0.962251;192940;96136 +6774/11678;BabyJubjub reduced twisted edwards form: Group properties (double);0.307492;0.015973;0.323569;192940;96088 +6775/11678;BabyJubjub reduced twisted edwards form: Group properties (additive_associativity_with_scalar);0.62826;0.020008;0.648375;193068;96296 +6776/11678;BabyJubjub reduced twisted edwards form: Group properties (inverse on scalar);0.734703;0.015971;0.750777;193192;96392 +6777/11678;BabyJubjub reduced twisted edwards form: Group properties (additive_associativity);0.308451;0.032046;0.340603;193188;96392 +6778/11678;BabyJubjub reduced twisted edwards form: Group properties (additive_commutativity);0.288485;0.044074;0.332635;192852;96648 +6779/11678;BabyJubjub reduced twisted edwards form: Group properties (Generator is of prime order);0.282563;0.031838;0.314502;193060;96136 +6780/11678;BabyJubjub reduced twisted edwards form: Serialisation (of_bytes_exn and to_bytes are inverse functions);0.274998;0.039854;0.314981;192808;96392 +6781/11678;BabyJubjub reduced twisted edwards form: Serialisation (of_bytes_opt and to_bytes are inverse functions);0.283849;0.031983;0.315941;193060;96136 +6782/11678;BabyJubjub reduced twisted edwards form: equality (zero);0.280659;0.032075;0.312847;193060;96316 +6783/11678;BabyJubjub reduced twisted edwards form: equality (one);0.293699;0.020116;0.313917;193196;96392 +6784/11678;BabyJubjub reduced twisted edwards form: equality (random_same_objects);0.294601;0.035829;0.330549;192936;96136 +6785/11678;BabyJubjub: Vectors (test vectors addition);0.292659;0.028063;0.320824;193060;96392 +6786/11678;BabyJubjub: Vectors (test scalar multiplication);0.302479;0.015919;0.318501;193192;96312 +6787/11678;BabyJubjub: Vectors (test random coordinates u, v do not give a point on the curve);0.291678;0.027969;0.319829;192932;96104 +6788/11678;BabyJubjub: Vectors (test vectors doubling);0.291788;0.023982;0.31588;193188;96392 +6789/11678;BabyJubjub: value generation (random);0.296515;0.028048;0.324645;192932;96136 +6790/11678;BabyJubjub: value generation (negate_with_one);0.292929;0.028089;0.321132;192936;96136 +6791/11678;BabyJubjub: value generation (negate_with_zero);0.296276;0.024022;0.320405;193060;96136 +6792/11678;BabyJubjub: value generation (negate_with_random);0.309059;0.020068;0.32923;193060;96324 +6793/11678;BabyJubjub: value generation (double_with_random);0.280399;0.044062;0.324577;192932;96132 +6794/11678;BabyJubjub: value generation (negate generates a valid point);0.290429;0.035806;0.326344;192932;96136 +6795/11678;BabyJubjub: value generation (addition generates a valid point);0.312123;0.024009;0.336239;193188;96320 +6796/11678;BabyJubjub: value generation (double generates a valid point);0.316461;0.016023;0.332634;192940;96088 +6797/11678;BabyJubjub: value generation (scalar multiplication generates a valid point);0.410781;0.023929;0.434815;193064;96316 +6798/11678;BabyJubjub: value generation (of_bytes_exn and to_bytes are inverse functions);0.294633;0.035833;0.330565;193068;96328 +6799/11678;BabyJubjub: value generation (check bytes on random with to_bytes);0.301774;0.024141;0.326038;193192;96316 +6800/11678;BabyJubjub: value generation (double_with_one);0.294367;0.027845;0.322396;192804;96132 +6801/11678;BabyJubjub: value generation (double_with_zero);0.292464;0.028044;0.320613;192936;96136 +6802/11678;BabyJubjub: Group properties (check_bytes_random);0.308899;0.016046;0.325059;192932;96136 +6803/11678;BabyJubjub: Group properties (check_bytes_zero);0.302789;0.011952;0.314857;193064;96272 +6804/11678;BabyJubjub: Group properties (check_bytes_one);0.291027;0.02392;0.315056;193068;96184 +6805/11678;BabyJubjub: Group properties (check_bytes_random_double);0.293673;0.032183;0.325969;192936;96136 +6806/11678;BabyJubjub: Group properties (check_bytes_random_sum);0.30472;0.028066;0.332881;193188;96392 +6807/11678;BabyJubjub: Group properties (check_bytes_random_multiplication);0.399989;0.031999;0.432095;193064;96320 +6808/11678;BabyJubjub: Group properties (zero_scalar_nullifier_one);0.278432;0.035798;0.314346;192732;96392 +6809/11678;BabyJubjub: Group properties (zero_scalar_nullifier_zero);0.290654;0.023889;0.314656;192936;96136 +6810/11678;BabyJubjub: Group properties (zero_scalar_nullifier_random);0.291782;0.035973;0.327864;193064;96140 +6811/11678;BabyJubjub: Group properties (multiply_by_one_does_nothing);0.305367;0.020089;0.325563;192936;96136 +6812/11678;BabyJubjub: Group properties (opposite_of_opposite);0.30949;0.020096;0.329691;193068;96392 +6813/11678;BabyJubjub: Group properties (opposite_of_opposite_using_scalar);0.301936;0.02818;0.330223;193192;96320 +6814/11678;BabyJubjub: Group properties (opposite_of_zero_is_zero);0.302503;0.015921;0.318522;192936;96136 +6815/11678;BabyJubjub: Group properties (opposite_of_opposite_of_zero_is_zero);0.287792;0.027979;0.315877;192932;96132 +6816/11678;BabyJubjub: Group properties (opposite_of_opposite_of_one_is_one);0.28869;0.024057;0.312865;192940;96136 +6817/11678;BabyJubjub: Group properties (opposite_equality);0.301162;0.016061;0.317343;192940;96296 +6818/11678;BabyJubjub: Group properties (zero is the identity);0.301253;0.028116;0.329488;192936;96136 +6819/11678;BabyJubjub: Group properties (distributivity);0.628755;0.024028;0.652883;193064;96136 +6820/11678;BabyJubjub: Group properties (opposite_of_scalar_is_opposite_of_ec);0.515359;0.019975;0.535453;192936;96392 +6821/11678;BabyJubjub: Group properties (opposite_existential_property);0.308207;0.020013;0.328331;193060;96136 +6822/11678;BabyJubjub: Group properties (mul_by_order_of_base_field_equals_element);0.521512;0.016046;0.537664;192936;96136 +6823/11678;BabyJubjub: Group properties (multiplication_properties_on_base_field_element);0.940792;0.03603;0.976923;193320;96392 +6824/11678;BabyJubjub: Group properties (double);0.299396;0.031935;0.331432;193192;96392 +6825/11678;BabyJubjub: Group properties (additive_associativity_with_scalar);0.615085;0.023964;0.639166;193076;96388 +6826/11678;BabyJubjub: Group properties (inverse on scalar);0.699316;0.043957;0.743379;192936;96052 +6827/11678;BabyJubjub: Group properties (additive_associativity);0.3188;0.019925;0.338879;193008;96200 +6828/11678;BabyJubjub: Group properties (additive_commutativity);0.307215;0.027928;0.335248;192932;96220 +6829/11678;BabyJubjub: Group properties (Generator is of prime order);0.27108;0.043851;0.315037;193064;96392 +6830/11678;BabyJubjub: Serialisation (of_bytes_exn and to_bytes are inverse functions);0.281018;0.03613;0.317239;193128;96392 +6831/11678;BabyJubjub: Serialisation (of_bytes_opt and to_bytes are inverse functions);0.283043;0.031892;0.315044;193316;96324 +6832/11678;BabyJubjub: Group properties of Edwards curve (unsafe_from_coordinates do not check the point is on the curve);0.292455;0.024037;0.316599;192932;96136 +6833/11678;BabyJubjub: Group properties of Edwards curve (Test check_bytes and of_bytes_[exn/opt] with a different number of bytes than expected);0.268746;0.048133;0.317055;193068;96368 +6834/11678;BabyJubjub: equality (zero);0.28089;0.036114;0.317113;192932;96136 +6835/11678;BabyJubjub: equality (one);0.289628;0.028158;0.317892;193060;96392 +6836/11678;BabyJubjub: equality (random_same_objects);0.303177;0.023935;0.32722;192932;96136 +6837/11678;seq: basic (vanilla);0.299212;0.015958;0.315271;192936;96136 +6838/11678;seq: basic (seq_e);0.279149;0.03589;0.315147;193192;96348 +6839/11678;seq: basic (seq_s);0.290398;0.027846;0.318365;193064;96392 +6840/11678;seq: basic (seq_es);0.290626;0.027868;0.318657;193192;96232 +6841/11678;list-basic-lwt: init (init);0.307775;0.015988;0.323862;193064;96392 +6842/11678;list-basic-lwt: init (init_e);0.297447;0.016078;0.313628;193068;96136 +6843/11678;list-basic-lwt: init (init_s);0.280685;0.036088;0.316876;193188;96392 +6844/11678;list-basic-lwt: init (init_es);0.284426;0.032048;0.316575;193064;96136 +6845/11678;list-basic-lwt: init (init_p);0.284313;0.032035;0.316495;193060;96176 +6846/11678;list-basic-lwt: init (init_ep);0.288564;0.028054;0.316724;193196;96136 +6847/11678;list-basic-lwt: concat_map_* (concat_map);0.279687;0.035959;0.315724;193000;96260 +6848/11678;list-basic-lwt: concat_map_* (concat_map_e);0.299891;0.019992;0.319988;193188;96392 +6849/11678;list-basic-lwt: concat_map_* (concat_map_s);0.30863;0.012024;0.320764;193068;96392 +6850/11678;list-basic-lwt: concat_map_* (concat_map_es);0.299224;0.023937;0.32328;193064;96316 +6851/11678;list-basic-lwt: fold (fold_left-map);0.295298;0.027933;0.323345;193068;96136 +6852/11678;list-basic-lwt: fold (fold_left_map_e);0.293532;0.020104;0.313741;193060;96132 +6853/11678;list-basic-lwt: fold (fold_left_map_s);0.303744;0.011989;0.315841;192936;96136 +6854/11678;list-basic-lwt: fold (fold_left_map_es);0.290228;0.031805;0.322135;193064;96392 +6855/11678;list-basic: is_empty (is_empty);0.284722;0.028071;0.312929;193064;96132 +6856/11678;list-basic: nth (nth);0.296706;0.016038;0.312854;192932;96136 +6857/11678;list-basic: nth (hd);0.287268;0.027928;0.315314;192936;96136 +6858/11678;list-basic: nth (tl);0.305345;0.01607;0.321526;192940;96136 +6859/11678;list-basic: last (last);0.296787;0.020053;0.316942;192940;96108 +6860/11678;list-basic: last (last_opt);0.288958;0.036119;0.325183;192936;96136 +6861/11678;list-basic: filter_* (filter_some);0.287449;0.027946;0.315505;192932;96200 +6862/11678;list-basic: filter_* (filter_ok);0.282542;0.039794;0.322444;193064;96320 +6863/11678;list-basic: filter_* (filter_error);0.29673;0.020049;0.316898;193064;96392 +6864/11678;list-basic: combine_* (combine-error);0.289258;0.028122;0.317488;193188;96392 +6865/11678;list-basic: combine_* (combine-ok);0.308094;0.012003;0.320202;193192;96392 +6866/11678;list-basic: combine_* (combine_drop);0.291076;0.023924;0.315109;193060;96392 +6867/11678;list-basic: combine_* (combine_with_leftovers);0.2964;0.024032;0.320534;193188;96136 +6868/11678;list-basic: partition_* (partition-result);0.295154;0.023931;0.319286;192940;96136 +6869/11678;list-basic: shuffle (small);0.28929;0.032143;0.321562;192932;96136 +6870/11678;list-basic: shuffle (shuffle preserves value sets);0.290527;0.031838;0.32247;193060;96136 +6871/11678;list-basic: shuffle (determinism(eq));0.284703;0.032079;0.316892;193192;96392 +6872/11678;list-basic: shuffle (determinism(neq));0.291886;0.019992;0.311984;192940;96320 +6873/11678;list-basic: product (empty and singleton);0.297345;0.024109;0.321571;193068;96648 +6874/11678;list-basic: product (big);0.289666;0.028161;0.317935;193064;96392 +6875/11678;list-basic: *2 (iter2);0.285209;0.04017;0.325477;193064;96388 +6876/11678;list-basic: *2 (map2);0.300879;0.016046;0.317037;193064;96136 +6877/11678;list-basic: *2 (rev_map2);0.280098;0.036012;0.316214;193060;96136 +6878/11678;list-basic: *2 (fold_left2);0.286137;0.027818;0.314059;193064;96392 +6879/11678;list-basic: *2 (fold_right2);0.300655;0.016034;0.316816;193064;96064 +6880/11678;list-basic: *2 (for_all2);0.286588;0.031843;0.318533;193064;96396 +6881/11678;list-basic: *2 (exists2);0.299139;0.015954;0.315216;193068;96392 +6882/11678;hashtbl: hashtbl-lwt (add_remove);0.30459;0.016031;0.320718;193064;96136 +6883/11678;hashtbl: hashtbl-lwt (add_add);0.280612;0.036078;0.316795;193064;96392 +6884/11678;hashtbl: hashtbl-lwt (length);0.288109;0.036013;0.324238;193316;96392 +6885/11678;hashtbl: hashtbl-lwt (self_clean);0.305425;0.008037;0.313611;193060;96200 +6886/11678;hashtbl: hashtbl-lwt (order);0.301232;0.012049;0.313387;192936;96136 +6887/11678;FuzzRef: Set (Set.iter);0.326182;0.027844;0.354141;209064;112192 +6888/11678;FuzzRef: Set (Set.fold);0.327628;0.031963;0.359701;213036;116284 +6889/11678;FuzzRef: Option (Option.map);0.303253;0.00798;0.311322;192940;96136 +6890/11678;FuzzRef: Option (Option.iter);0.284311;0.032035;0.31645;193064;96392 +6891/11678;FuzzRef: Option (Option.filter);0.293718;0.020117;0.31396;192940;96132 +6892/11678;FuzzRef: Option (Option.filter_map);0.296624;0.020042;0.316768;193060;96136 +6893/11678;FuzzRef: Option (Option.filter_ok);0.280154;0.032017;0.31229;193064;96124 +6894/11678;FuzzRef: Option (Option.filter_error);0.290263;0.023857;0.314233;193064;96388 +6895/11678;FuzzRef: Option (Option.filter_left);0.279089;0.035882;0.315085;193060;96136 +6896/11678;FuzzRef: Option (Option.filter_right);0.293127;0.020077;0.313313;192936;96132 +6897/11678;FuzzRef: Map (Map.iter);0.334871;0.043852;0.378827;211496;114660 +6898/11678;FuzzRef: Map (Map.fold);0.325397;0.024103;0.349608;209060;112384 +6899/11678;FuzzRef: List (List.init);0.295032;0.019934;0.315091;193060;96136 +6900/11678;FuzzRef: List (List.find);0.312727;0.040093;0.352907;208084;111680 +6901/11678;FuzzRef: List (List.find_map);0.317486;0.024112;0.341723;210348;113468 +6902/11678;FuzzRef: List (List.filter);0.329549;0.024113;0.353764;208164;111420 +6903/11678;FuzzRef: List (List.filteri);0.409233;0.028084;0.437439;242544;145724 +6904/11678;FuzzRef: List (List.rev_filter);0.328355;0.032034;0.36051;211876;115008 +6905/11678;FuzzRef: List (List.rev_filteri);0.337693;0.02412;0.36192;211492;114840 +6906/11678;FuzzRef: List (List.filter_left);0.3202;0.03202;0.352337;212392;115516 +6907/11678;FuzzRef: List (List.filter_right);0.309229;0.052207;0.361535;213032;116020 +6908/11678;FuzzRef: List (List.filter_ok);0.339617;0.023972;0.363703;215848;119096 +6909/11678;FuzzRef: List (List.filter_error);0.325336;0.012049;0.337487;199336;102716 +6910/11678;FuzzRef: List (List.partition);0.316079;0.028007;0.344202;199460;102708 +6911/11678;FuzzRef: List (List.partition_map);0.339898;0.019994;0.359999;208976;112448 +6912/11678;FuzzRef: List (List.partition_either);0.337144;0.024081;0.361336;219688;122688 +6913/11678;FuzzRef: List (List.iter);0.319184;0.035908;0.355201;206760;109888 +6914/11678;FuzzRef: List (List.iteri);0.333255;0.028105;0.361476;210344;113472 +6915/11678;FuzzRef: List (List.map);0.350915;0.031901;0.382952;215592;118840 +6916/11678;FuzzRef: List (List.mapi);0.392541;0.024033;0.416681;237296;140340 +6917/11678;FuzzRef: List (List.rev_map);0.301832;0.028171;0.330103;194472;97852 +6918/11678;FuzzRef: List (List.rev_mapi);0.343652;0.027971;0.371751;211752;114744 +6919/11678;FuzzRef: List (List.filter_map);0.334441;0.02787;0.36243;207528;110652 +6920/11678;FuzzRef: List (List.concat_map);6.4215;0.156036;6.57777;1567984;1473788 +6921/11678;FuzzRef: List (List.fold_left);0.338659;0.032253;0.37104;212396;115520 +6922/11678;FuzzRef: List (List.fold_left_map);0.358857;0.023923;0.382893;221736;124732 +6923/11678;FuzzRef: List (List.fold_right);0.337593;0.016075;0.353779;209960;112952 +6924/11678;FuzzRef: List (List.map2);0.301524;0.040203;0.341826;210476;113468 +6925/11678;FuzzRef: List (List.rev_map2);0.326337;0.023878;0.350409;213028;116292 +6926/11678;FuzzRef: List (List.iter2);0.332527;0.03205;0.364696;215208;118332 +6927/11678;FuzzRef: List (List.fold_left2);0.335901;0.035989;0.371993;223272;126528 +6928/11678;FuzzRef: List (List.fold_right2);0.319016;0.035889;0.35502;210092;113212 +6929/11678;FuzzRef: List (List.exists);0.333543;0.024111;0.357754;216740;119872 +6930/11678;FuzzRef: List (List.for_all);0.324306;0.036034;0.360497;210852;114184 +6931/11678;FuzzRef: List (List.exists2);0.314926;0.027904;0.342936;209064;112144 +6932/11678;FuzzRef: List (List.for_all2);0.348705;0.02004;0.368863;220840;123964 +6933/11678;FuzzRef: List (List.remove_assoc);0.32765;0.015982;0.343737;203048;106040 +6934/11678;FuzzRef: List (List.combine);0.306938;0.043848;0.350893;210724;113980 +6935/11678;FuzzRef: List (List.rev_combine);0.352718;0.02004;0.372862;220456;123708 +6936/11678;FuzzRef: List (List.compare);0.332673;0.016032;0.34884;211116;114232 +6937/11678;FuzzRef: List (List.equal);0.315358;0.031935;0.347426;210344;113468 +6938/11678;Lazy structs tests: Lazy_vector (of_list creates the data structure correctly);0.297295;0.03214;0.329537;198312;101180 +6939/11678;Lazy structs tests: Lazy_vector (create constructs correctly);0.31364;0.016084;0.329844;193448;96572 +6940/11678;Lazy structs tests: Lazy_vector (grow works);0.365972;0.02413;0.390214;225448;128576 +6941/11678;Lazy structs tests: Lazy_vector (cons works);0.339107;0.027926;0.367145;209828;112956 +6942/11678;Lazy structs tests: Lazy_vector (drop works);0.383363;0.015973;0.399439;221736;124984 +6943/11678;Lazy structs tests: Lazy_vector (concat works lazily);0.294106;0.02782;0.322038;193060;96132 +6944/11678;Lazy structs tests: Lazy_vector (check size overflow);0.27664;0.040092;0.316844;192808;96132 +6945/11678;Chunked_byte_vector: Chunked_byte_vector (Mutable CBV/Chunk: num_pages edge case);0.288187;0.024015;0.312307;192936;96132 +6946/11678;Chunked_byte_vector: Chunked_byte_vector (Mutable CBV/create works);0.270184;0.043706;0.314038;193060;96132 +6947/11678;Chunked_byte_vector: Chunked_byte_vector (Mutable CBV/store_byte and load_byte work);0.298739;0.035848;0.334711;197672;100928 +6948/11678;Chunked_byte_vector: Chunked_byte_vector (Mutable CBV/grow works);0.307172;0.019946;0.327251;194348;97340 +6949/11678;Chunked_byte_vector: Chunked_byte_vector (Mutable CBV/can write after grow);0.286821;0.031869;0.318812;193192;96392 +6950/11678;Chunked_byte_vector: Chunked_byte_vector (Mutable CBV/load_bytes without offset);0.291629;0.023969;0.315701;193064;96136 +6951/11678;Chunked_byte_vector: Chunked_byte_vector (Mutable CBV/from_bytes to_bytes roundtrip);0.28959;0.036198;0.325895;193064;96136 +6952/11678;Chunked_byte_vector: Chunked_byte_vector (Mutable CBV/load_bytes roundtrip);0.296534;0.020036;0.316677;192932;96392 +6953/11678;Chunked_byte_vector: Chunked_byte_vector (Immutable CBV/Chunk: num_pages edge case);0.282538;0.039794;0.322444;193060;96136 +6954/11678;Chunked_byte_vector: Chunked_byte_vector (Immutable CBV/create works);0.298885;0.01594;0.314953;193324;96388 +6955/11678;Chunked_byte_vector: Chunked_byte_vector (Immutable CBV/store_byte and load_byte work);0.300112;0.02801;0.328222;196776;99904 +6956/11678;Chunked_byte_vector: Chunked_byte_vector (Immutable CBV/grow works);0.29273;0.02406;0.316899;193064;96320 +6957/11678;Chunked_byte_vector: Chunked_byte_vector (Immutable CBV/can write after grow);0.290891;0.023908;0.314923;193188;96392 +6958/11678;Chunked_byte_vector: Chunked_byte_vector (Immutable CBV/load_bytes without offset);0.293862;0.028178;0.322145;192932;96136 +6959/11678;Chunked_byte_vector: Chunked_byte_vector (Immutable CBV/from_bytes to_bytes roundtrip);0.296795;0.020053;0.316953;192936;96132 +6960/11678;Chunked_byte_vector: Chunked_byte_vector (Immutable CBV/load_bytes roundtrip);0.29929;0.023943;0.323335;192936;96132 +6961/11678;tezos-layer2-store: indexed-store-pbt (indexed file store (parallel));1.80406;0.239476;2.04664;491832;402700 +6962/11678;tezos-layer2-store: indexed-store-pbt (indexed file store (sequential));2.57803;0.275789;2.85725;593216;520476 +6963/11678;tezos-layer2-store: indexed-store-pbt (indexable removable store (parallel));2.77203;0.30756;3.08226;535816;476552 +6964/11678;tezos-layer2-store: indexed-store-pbt (indexable removable store (sequential));2.24264;0.239854;2.48561;523244;465780 +6965/11678;tezos-layer2-store: indexed-store-pbt (indexable store (parallel));3.11602;0.332001;3.45035;720640;653184 +6966/11678;tezos-layer2-store: indexed-store-pbt (indexable store (sequential));2.71708;0.335639;3.05541;620880;555460 +6967/11678;tezos-layer2-store: indexed-store-pbt (singleton store (sequential));0.933177;0.182664;1.125;274900;184732 +6968/11678;tezos-layer2-store: indexed-store-unit (load);0.281787;0.040255;0.322163;190540;93908 +6969/11678;hacl-test: tests (Testing Ed25519);0.290189;0.023851;0.314209;190160;93392 +6970/11678;hacl-test: tests (Testing P256);0.288999;0.032111;0.321231;190156;93392 +6971/11678;hacl-test: tests (Testing Curve25519);0.287697;0.035962;0.323767;190364;93396 +6972/11678;hacl-test: tests (Testing SHA2_256);0.302644;0.01991;0.322654;190112;93392 +6973/11678;hacl-test: tests (Testing SHA2_512);0.280127;0.036016;0.316245;190240;93396 +6974/11678;hacl-test: tests (Testing SHA3_256);0.267845;0.05197;0.31992;190364;93688 +6975/11678;hacl-test: tests (Testing SHA3_512);0.29355;0.024127;0.317783;190540;93652 +6976/11678;hacl-test: tests (Testing Keccak);0.292837;0.024068;0.31701;190112;93396 +6977/11678;hacl-test: tests (Testing HMAC_SHA2_256);0.297421;0.020096;0.317643;190280;93284 +6978/11678;hacl-test: tests (Testing HMAC_SHA2_512);0.295423;0.023953;0.319481;190108;93228 +6979/11678;hacl-test: tests (Testing Blake2b);0.29345;0.024119;0.317677;190284;93392 +6980/11678;hacl-test: tests (Testing NaCl.Secretbox);0.287123;0.031902;0.3192;190112;93256 +6981/11678;hacl-test: tests (Testing NaCl.Box);0.302544;0.019904;0.322572;190280;93648 +6982/11678;tezos-crypto-signature-pk: P256_Pros (P256_pk_of_bytes);0.299199;0.039893;0.339199;189332;92476 +6983/11678;tezos-crypto-shaX-props: SHA256_Props (SHA256_incremental_one);0.315514;0.039938;0.355563;191892;94932 +6984/11678;tezos-crypto-shaX-props: SHA256_Props (SHA256_incremental_list);1.40034;0.108025;1.50849;826788;730568 +6985/11678;tezos-crypto-shaX-props: SHA512_Props (SHA512_incremental_one);0.331324;0.031934;0.363365;190356;93392 +6986/11678;tezos-crypto-shaX-props: SHA512_Props (SHA512_incremental_list);1.62236;0.139859;1.76234;1022652;926920 +6987/11678;tezos-crypto: hash (hmac_sha256);0.306848;0.01594;0.322896;190496;93648 +6988/11678;tezos-crypto: hash (hmac_sha512);0.273457;0.040214;0.313787;190364;93356 +6989/11678;tezos-crypto: hash (sha256);0.291547;0.03195;0.323597;190368;93648 +6990/11678;tezos-crypto: hash (sha512);0.27634;0.040049;0.316494;190236;93396 +6991/11678;tezos-crypto: hash (sha3_256);0.290286;0.035788;0.326376;190156;93228 +6992/11678;tezos-crypto: hash (sha3_512);0.297685;0.020113;0.317903;190368;93652 +6993/11678;tezos-crypto: hash (keccak_256);0.285438;0.032162;0.317715;190024;93184 +6994/11678;tezos-crypto: hash (sha256_seq);0.305887;0.024149;0.330151;190492;93984 +6995/11678;tezos-crypto: blake2b (0);0.287477;0.031941;0.319523;190236;93392 +6996/11678;tezos-crypto: blake2b (1);0.294286;0.023861;0.31831;190284;93232 +6997/11678;tezos-crypto: blake2b (2);0.291282;0.031921;0.323309;190372;93648 +6998/11678;tezos-crypto: secretbox (secretbox);0.290646;0.023888;0.314683;189880;93296 +6999/11678;tezos-crypto: box (box);0.291526;0.027954;0.319581;190540;93648 +7000/11678;tezos-crypto: ed25519 (keypair);0.292465;0.024038;0.316621;190112;93396 +7001/11678;tezos-crypto: ed25519 (sign);0.299178;0.019945;0.31924;190368;93648 +7002/11678;tezos-crypto: ed25519 (public);0.29662;0.028058;0.324833;190112;93396 +7003/11678;tezos-crypto: ed25519 (ed25519-speccheck);0.30308;0.015951;0.319137;190112;93132 +7004/11678;tezos-crypto: p256 (export);0.284141;0.036017;0.320271;190112;93392 +7005/11678;tezos-crypto: p256 (write_key);0.294587;0.027866;0.322558;190364;93484 +7006/11678;tezos-crypto: p256 (keypair);0.308176;0.012006;0.320338;189916;93284 +7007/11678;tezos-crypto: p256 (sign);0.294212;0.031806;0.326149;190412;93648 +7008/11678;tezos-crypto: p256 (test_vectors);0.359899;0.023993;0.384;190240;93392 +7009/11678;splitted: splitted (unregistered(binary));0.289349;0.028131;0.31759;190800;93908 +7010/11678;splitted: splitted (unregistered(json));0.29313;0.024092;0.317327;190412;93656 +7011/11678;splitted: splitted (registered);0.299371;0.023949;0.323425;190928;93904 +7012/11678;error-registration: extract-info (extract-infos);0.295999;0.035999;0.332101;188432;91608 +7013/11678;lib_dac_node: Data_streamer.ml (Simple pub sub);0.289294;0.028125;0.317532;190496;93648 +7014/11678;lib_dac_node: Data_streamer.ml (Test order of subscription);0.296648;0.024052;0.320809;188432;91560 +7015/11678;lib_dac_node: Data_streamer.ml (Test closing subscriber stream);0.295196;0.031913;0.327221;189336;92460 +7016/11678;lib_dac: Dac_plugin.ml (Encode and decode to JSON leads to the same Dac_plugin.raw_hash);0.305009;0.020066;0.325177;188432;91688 +7017/11678;lib_dac: Dac_plugin.ml (Encode and decode to binary leads to the same Dac_plugin.raw_hash);0.29405;0.028196;0.322353;188308;91608 +7018/11678;lib_dac: Dac_clic_helpers.Parsed_rpc (Test `{ipaddr}:{port}` is valid);0.304092;0.024007;0.328204;188944;92192 +7019/11678;lib_dac: Dac_clic_helpers.Parsed_rpc (Test `{ipaddr}` defaults port to 80);0.295963;0.027996;0.324063;189208;92456 +7020/11678;lib_dac: Dac_clic_helpers.Parsed_rpc (Test invalid ipaddr fails.);0.301196;0.032127;0.333448;188304;91612 +7021/11678;lib_dac: Dac_clic_helpers.Parsed_rpc (Test empty rpc fails);0.296989;0.028093;0.325204;189072;92368 +7022/11678;lib_dac: Dac_clic_helpers.Parsed_rpc (Test `http://{endpoint}:{port}` is valid);0.293182;0.032129;0.325419;189204;92460 +7023/11678;lib_dac: Dac_clic_helpers.Parsed_rpc (Test `https://{endpoint}:{port}` is valid);0.304327;0.024025;0.328457;189204;92352 +7024/11678;lib_dac: Dac_clic_helpers.Parsed_rpc (Test `http://{endpoint}` defaults port to 80);0.283628;0.039947;0.323748;189328;92480 +7025/11678;lib_dac: Dac_clic_helpers.Parsed_rpc (Test `https://{endpoint}` defaults port to 443);0.297068;0.036129;0.333302;189336;92460 +7026/11678;lib_dac: Dac_clic_helpers.Parsed_rpc (Test `http://{ipaddr}:{port}` is valid);0.300893;0.024071;0.325074;188304;91688 +7027/11678;lib_dac: Certificate_repr.ml (Verify Certificate_repr.version is equal to 0);0.301613;0.02815;0.329865;188564;91696 +7028/11678;lib_dac: Certificate_repr.ml (Simple Binary encode decode);0.291973;0.031997;0.324078;188564;91692 +7029/11678;lib_dac: Certificate_repr.ml (Simple JSON encode decode);0.294229;0.031808;0.326181;189200;92344 +7030/11678;lib_dac: Certificate_repr.ml (Simple JSON decode);0.298245;0.027836;0.32622;189328;92452 +7031/11678;lib_dac: Certificate_repr.ml (Simple JSON encode);0.294922;0.031883;0.326919;189200;92460 +7032/11678;DAL cryptobox: Unit tests (find_trusted_setup_files);0.304423;0.020027;0.325061;189200;92528 +7033/11678;DAL cryptobox: Unit tests (find_trusted_setup_files_failure);0.28744;0.043914;0.331455;189200;92372 +7034/11678;DAL cryptobox: PBT (erasure code);0.91139;0.027981;0.939541;199788;103328 +7035/11678;DAL cryptobox: PBT (erasure code with slot conversion);0.906596;0.015975;0.922693;203156;106468 +7036/11678;DAL cryptobox: PBT (erasure code shard index out of range);0.883864;0.035994;0.919957;203412;106708 +7037/11678;DAL cryptobox: PBT (erasure code not enough shards);0.893445;0.020032;0.913597;203540;106712 +7038/11678;DAL cryptobox: PBT (erasure code shard invalid shard length);0.923421;0.051967;0.975489;205076;108240 +7039/11678;DAL cryptobox: PBT (page proofs);0.962909;0.023972;0.986993;198600;101844 +7040/11678;DAL cryptobox: PBT (page proofs invalid page);0.938533;0.023962;0.962602;197580;100820 +7041/11678;DAL cryptobox: PBT (shard proofs);1.8678;0.039995;1.90791;198616;101788 +7042/11678;DAL cryptobox: PBT (invalid shard proof);2.69362;0.028016;2.72176;200992;104144 +7043/11678;DAL cryptobox: PBT (commitment proof);0.919309;0.023981;0.943381;198052;101328 +7044/11678;DAL cryptobox: PBT (invalid commitment proof);0.90434;0.036013;0.940469;198436;101548 +7045/11678;DAL cryptobox: PBT (polynomial-slot conversions);0.915758;0.031991;0.947858;202128;105264 +7046/11678;DAL cryptobox: PBT (FFT domain selection);0.322776;0.035864;0.358749;192544;95696 +7047/11678;DAL cryptobox: PBT (shard proofs loading);0.863218;0.035967;0.89928;195744;99088 +7048/11678;DAL cryptobox: PBT (shard proofs loading invalid hash);0.865161;0.027908;0.894588;192152;95416 +7049/11678;DAL cryptobox: PBT (DAL initialisation twice failure);0.914708;0.031954;0.946761;192408;95436 +7050/11678;DAL cryptobox: PBT (wrong slot size);0.866436;0.031942;0.898491;197284;100564 +7051/11678;DAL cryptobox: PBT (page_length_mismatch);0.860923;0.036038;0.897067;200224;103636 +7052/11678;DAL cryptobox: PBT (shard_length_mismatch);0.87292;0.024025;0.897044;198092;101328 +7053/11678;DAL cryptobox: PBT (prove page out of bound);0.852043;0.040002;0.892151;198172;101340 +7054/11678;DAL cryptobox: PBT (verify page out of bound);0.86651;0.027951;0.894568;197404;100564 +7055/11678;DAL cryptobox: PBT (verify shard out of bound);0.883583;0.01999;0.903694;197664;100816 +7056/11678;DAL cryptobox: PBT (commit);0.911916;0.027997;0.94002;196764;99792 +7057/11678;DAL cryptobox: PBT (commit failure);0.872732;0.02402;0.896864;197408;100556 +7058/11678;DAL cryptobox: PBT (encoded share_size);0.858835;0.031956;0.890886;198300;101584 +7059/11678;tezos-crypto-lwt: crypto_box (Check PoW);0.28713;0.031903;0.319136;190240;93396 +7060/11678;tezos-crypto: context_hash (Version.of_int input validation);0.300896;0.024071;0.325072;189072;92368 +7061/11678;tezos-crypto: timelock legacy (timelock legacy: raw scenario short);0.30441;0.044059;0.348595;189208;92492 +7062/11678;tezos-crypto: timelock legacy (timelock legacy: raw scenario);0.370015;0.023871;0.394179;189328;92668 +7063/11678;tezos-crypto: timelock legacy (timelock legacy: raw scenario long);0.482557;0.031904;0.51457;188760;92120 +7064/11678;tezos-crypto: timelock legacy (timelock legacy: high level scenario);0.338879;0.019934;0.35896;189204;92468 +7065/11678;tezos-crypto: timelock legacy (timelock legacy: bench);1.26383;0.043994;1.30807;189328;92700 +7066/11678;tezos-crypto: timelock legacy (timelock legacy: negative test);0.298318;0.047731;0.34619;189080;92368 +7067/11678;tezos-crypto: timelock legacy (timelock legacy: samplertest);0.312795;0.028071;0.340973;189072;92412 +7068/11678;tezos-crypto: timelock (raw scenario - precomputed 1000);0.283087;0.051832;0.335033;189460;92460 +7069/11678;tezos-crypto: timelock (raw scenario - precomputed 30_000);0.468863;0.020036;0.489014;189208;92456 +7070/11678;tezos-crypto: timelock (raw scenario - short);0.287104;0.0319;0.319105;189984;93208 +7071/11678;tezos-crypto: timelock (raw scenario - long);0.833099;0.024031;0.857231;190628;93648 +7072/11678;tezos-crypto: timelock (high level scenario - short);0.309468;0.024114;0.333685;188820;92020 +7073/11678;tezos-crypto: timelock (high level scenario - long);0.325537;0.024113;0.349798;189204;92120 +7074/11678;tezos-crypto: timelock (bench);2.11678;0.032011;2.14888;191008;94260 +7075/11678;tezos-crypto: timelock (negative test - high level);0.348571;0.012019;0.360691;188816;91948 +7076/11678;tezos-crypto: timelock (negative test - low level);0.306749;0.023902;0.330766;188688;91868 +7077/11678;tezos-crypto: timelock (sampler test);0.284723;0.036091;0.320917;190236;93396 +7078/11678;tezos-crypto: timelock (test wesolowski);0.284988;0.032111;0.317212;190108;93392 +7079/11678;tezos-crypto: ed25519-encodings (b58check.roundtrip);0.30968;0.012065;0.321851;189072;92204 +7080/11678;tezos-crypto: ed25519-encodings (b58check.invalid);0.297673;0.028158;0.325936;189332;92484 +7081/11678;tezos-crypto: ed25519-encodings (b58 pkh encodings);0.304692;0.016036;0.320833;189332;92460 +7082/11678;tezos-crypto: ed25519-encodings (b58 key encodings);0.300778;0.024062;0.32494;189076;92368 +7083/11678;tezos-crypto: secp256k1-encodings (b58check.roundtrip);0.28858;0.04008;0.328773;189204;92456 +7084/11678;tezos-crypto: secp256k1-encodings (b58check.invalid);0.28871;0.036088;0.324902;188692;91868 +7085/11678;tezos-crypto: secp256k1-encodings (b58 pkh encodings);0.299848;0.023987;0.323951;189080;92200 +7086/11678;tezos-crypto: secp256k1-encodings (b58 key encodings);0.293234;0.032135;0.325473;189072;92328 +7087/11678;tezos-crypto: p256-encodings (b58check.roundtrip);0.278836;0.0478;0.326742;189332;92456 +7088/11678;tezos-crypto: p256-encodings (b58check.invalid);0.295707;0.023976;0.319796;190496;93648 +7089/11678;tezos-crypto: p256-encodings (b58 pkh encodings);0.298425;0.027853;0.326384;189332;92456 +7090/11678;tezos-crypto: p256-encodings (b58 key encodings);0.303942;0.035993;0.340041;188824;91868 +7091/11678;tezos-crypto: bls12_381-encodings (b58check.roundtrip);0.303895;0.019993;0.323998;189080;92316 +7092/11678;tezos-crypto: bls12_381-encodings (b58check.invalid);0.294891;0.027895;0.322883;189028;92364 +7093/11678;tezos-crypto: bls12_381-encodings (b58 pkh encodings);0.295724;0.023977;0.319814;189076;92372 +7094/11678;tezos-crypto: bls12_381-encodings (b58 key encodings);0.312234;0.024018;0.336355;188692;91868 +7095/11678;tezos-crypto: signature (size);0.259816;0.05596;0.315877;190112;93392 +7096/11678;tezos-crypto: signature (test_of_bytes_without_validation);0.300033;0.024002;0.324153;188948;92200 +7097/11678;tezos-crypto: signature (secp256k1-keccak256 scheme implementation integrity);0.301464;0.028136;0.329703;189456;91692 +7098/11678;tezos-crypto: merkle (compute);0.294409;0.027849;0.322365;190372;93396 +7099/11678;tezos-crypto: merkle (compute_examples);0.295727;0.023977;0.319829;190112;93440 +7100/11678;tezos-crypto: merkle (path);0.288543;0.044083;0.332721;190880;93908 +7101/11678;tezos-crypto: merkle (path_examples);0.295952;0.023996;0.320058;190496;93644 +7102/11678;tezos-crypto: deterministic_nonce (hash_matches_ed25519);0.298864;0.023909;0.322894;189076;92204 +7103/11678;tezos-crypto: deterministic_nonce (hash_matches_p256);0.308983;0.020063;0.329157;189200;92456 +7104/11678;tezos-crypto: deterministic_nonce (hash_matches_secp256k1);0.307653;0.023972;0.331739;188436;91608 +7105/11678;tezos-crypto: crypto_box (Neuterize Secret roundtrip);0.30226;0.027839;0.330206;188948;92204 +7106/11678;tezos-crypto: crypto_box (Public Key Hash roundtrip);0.27915;0.051842;0.33111;189200;92368 +7107/11678;tezos-crypto: crypto_box (HACL* box (noalloc));0.297794;0.024145;0.322042;190112;93228 +7108/11678;tezos-crypto: crypto_box (HACL* box);0.294671;0.01991;0.314693;190364;93596 +7109/11678;tezos-crypto: crypto_box (Check PoW);0.29102;0.027906;0.319107;190408;93652 +7110/11678;tezos-crypto: blake2b-encodings (hash hex/dehex);0.307561;0.023965;0.331634;188308;91608 +7111/11678;tezos-crypto: blake2b-encodings (hash print/parse);0.296661;0.028062;0.324834;189204;92372 +7112/11678;tezos-crypto: base58 (safe decoding);0.301267;0.016067;0.317455;190540;93652 +7113/11678;tezos-crypto: base58 (safe encoding/decoding);0.29604;0.036004;0.33216;191644;94924 +7114/11678;tezos-crypto: base58 (raw encoding/decoding);0.288377;0.036047;0.324529;191260;94160 +7115/11678;tezos-crypto-prop-signature: bls12_381 (Aggregate_signature_Bls12_381_sign_check);0.808658;0.028022;0.83678;195092;98088 +7116/11678;tezos-crypto-prop-signature: Ed25519 (Signature_Ed25519_sign_check);0.312485;0.024037;0.336634;191892;95228 +7117/11678;tezos-crypto-prop-signature: Secp256k1 (Signature_Secp256k1_sign_check);0.312097;0.020006;0.332216;190868;93136 +7118/11678;tezos-crypto-prop-signature: P256 (Signature_P256_sign_check);0.344255;0.032023;0.37639;192276;95436 +7119/11678;tezos-crypto-prop-signature: Bls (Signature_Bls_sign_check);0.418384;0.035861;0.454353;193172;96060 +7120/11678;test_merkle_proof: sample32_v1 (sample);0.272467;0.044075;0.316644;190112;93228 +7121/11678;test_merkle_proof: random32_v1 (tree_proof_encoding);0.71702;0.036051;0.753199;259696;162984 +7122/11678;test_merkle_proof: random32_v1 (stream_proof_encoding);0.311465;0.023958;0.335543;190484;93644 +7123/11678;test_merkle_proof: sample2_v1 (sample);0.300558;0.024044;0.32472;189984;93228 +7124/11678;test_merkle_proof: random2_v1 (tree_proof_encoding);0.310315;0.027848;0.338346;189328;92620 +7125/11678;test_merkle_proof: random2_v1 (stream_proof_encoding);0.300437;0.036052;0.336613;189584;92628 +7126/11678;test_merkle_proof: sample32_v2 (sample);0.287188;0.039887;0.327208;190924;94164 +7127/11678;test_merkle_proof: random32_v2 (tree_proof_encoding);0.726478;0.043908;0.770492;242116;145360 +7128/11678;test_merkle_proof: random32_v2 (stream_proof_encoding);0.286308;0.055671;0.342114;191380;94416 +7129/11678;test_merkle_proof: sample2_v2 (sample);0.295201;0.023935;0.319258;189984;93392 +7130/11678;test_merkle_proof: random2_v2 (tree_proof_encoding);0.303759;0.023981;0.327857;189584;92632 +7131/11678;test_merkle_proof: random2_v2 (stream_proof_encoding);0.304852;0.028078;0.33305;190232;93376 +7132/11678;tezos-context: context (disk:is_empty);0.288374;0.032041;0.320538;190620;93944 +7133/11678;tezos-context: context (disk:simple);0.295599;0.019972;0.315671;190620;93972 +7134/11678;tezos-context: context (disk:list);0.299729;0.019981;0.319832;190756;93968 +7135/11678;tezos-context: context (disk:continuation);0.28776;0.031973;0.319851;190880;94244 +7136/11678;tezos-context: context (disk:fork);0.288652;0.036081;0.324841;190672;93980 +7137/11678;tezos-context: context (disk:replay);0.301812;0.016096;0.31801;190496;93940 +7138/11678;tezos-context: context (disk:fold_keys_sorted);0.301568;0.020104;0.321782;191008;94380 +7139/11678;tezos-context: context (disk:fold_keys_undefined);0.299061;0.023924;0.323103;189204;92608 +7140/11678;tezos-context: context (disk:fold);0.295744;0.027975;0.323831;190268;93936 +7141/11678;tezos-context: context (disk:trees);0.277351;0.040195;0.317651;190668;93996 +7142/11678;tezos-context: context (disk:raw);0.29227;0.032029;0.324408;190756;93976 +7143/11678;tezos-context: context (disk:encoding);0.280055;0.036007;0.316169;190624;94000 +7144/11678;tezos-context: context (disk:get_hash_version);0.295668;0.023973;0.319759;190628;93936 +7145/11678;tezos-context: context (disk:set_hash_version_tzresult);0.297854;0.0322;0.330163;189332;92620 +7146/11678;tezos-context: context (disk:to_memory_tree);0.293437;0.024118;0.31766;190792;93984 +7147/11678;tezos-context: context (disk:proof exn);0.310583;0.011945;0.322629;190796;94016 +7148/11678;tezos-context: context (memory:is_empty);0.291946;0.027994;0.320051;190112;93420 +7149/11678;tezos-context: context (memory:simple);0.297392;0.020094;0.317615;189988;93416 +7150/11678;tezos-context: context (memory:list);0.302583;0.019906;0.322598;190372;93484 +7151/11678;tezos-context: context (memory:continuation);0.278593;0.035819;0.314519;190236;93388 +7152/11678;tezos-context: context (memory:fork);0.293426;0.020097;0.313624;190240;93464 +7153/11678;tezos-context: context (memory:replay);0.292824;0.03209;0.32502;190500;93684 +7154/11678;tezos-context: context (memory:fold_keys_sorted);0.303302;0.027935;0.331344;189076;92380 +7155/11678;tezos-context: context (memory:fold_keys_undefined);0.304484;0.028044;0.33271;188564;92032 +7156/11678;tezos-context: context (memory:fold);0.280618;0.036079;0.316839;190544;93908 +7157/11678;tezos-context: context (memory:trees);0.292006;0.028;0.320118;190112;93400 +7158/11678;tezos-context: context (memory:raw);0.287752;0.031972;0.319913;190240;93384 +7159/11678;tezos-context: context (memory:encoding);0.297608;0.020108;0.31783;190412;93736 +7160/11678;tezos-context: context (memory:get_hash_version);0.294865;0.031877;0.326846;189080;92396 +7161/11678;tezos-context: context (memory:set_hash_version_tzresult);0.307607;0.015979;0.323766;189200;92556 +7162/11678;tezos-context: context (memory:to_memory_tree);0.282302;0.03976;0.322195;190116;93432 +7163/11678;tezos-context: context (memory:proof exn);0.286766;0.02788;0.314745;190284;93476 +7164/11678;tezos-context-memory: hash (large-dir-100);0.277272;0.040184;0.317625;191260;94440 +7165/11678;tezos-context-memory: hash (large-dir-200);0.302721;0.019915;0.32275;191132;94524 +7166/11678;tezos-context-memory: hash (large-dir-255);0.281468;0.04423;0.32582;191048;94288 +7167/11678;tezos-context-memory: hash (large-dir-256);0.300263;0.020017;0.32038;191392;94492 +7168/11678;tezos-context-memory: hash (large-dir-257);0.304612;0.024048;0.32877;190792;93956 +7169/11678;tezos-context-memory: hash (large-dir-300);0.292136;0.032014;0.32426;191176;94236 +7170/11678;tezos-context-memory: hash (large-dir-1000);0.297259;0.028119;0.325491;191904;94960 +7171/11678;tezos-context-memory: hash (large-dir-10000);0.328975;0.024071;0.353159;195996;99096 +7172/11678;tezos-mockup-commands: mockup_wallet (When no bootstrap accounts file is provided, then the wallet is populated with the default bootstrap accounts);0.300482;0.032051;0.332632;188692;91980 +7173/11678;tezos-mockup-commands: mockup_wallet (When a valid bootstrap accounts file is provided, then the wallet is populated with its content);0.294644;0.031853;0.326597;189204;92476 +7174/11678;PBKDF Tests: PBKDF2 tests (Test Case 11);0.296223;0.032024;0.328352;190492;93652 +7175/11678;PBKDF Tests: PBKDF2 tests (Test Case 13);0.295071;0.031899;0.327073;190220;93492 +7176/11678;bip39: basic (vectors);0.351259;0.023949;0.375309;190412;93396 +7177/11678;Tezos_clic: dispatch (basic);0.290415;0.027848;0.31841;190108;93340 +7178/11678;Tezos_clic: dispatch (advanced);0.28895;0.028092;0.317144;190160;93392 +7179/11678;Tezos_clic: auto-completion-parameters (param: when no arg given, suggests all options);0.309486;0.020096;0.329687;189208;92460 +7180/11678;Tezos_clic: auto-completion-parameters (param: when given single char arg, suggests options starting with this char);0.288082;0.03601;0.324202;188560;91600 +7181/11678;Tezos_clic: auto-completion-parameters (param: when given arg matches exactly one option, suggests that option);0.289232;0.036154;0.325483;188432;91692 +7182/11678;Tezos_clic: auto-completion-parameters (param: when given prev arg matches first word, suggests the next words);0.310562;0.015926;0.326683;189328;92456 +7183/11678;Tezos_clic: auto-completion-parameters (param: when given prev arg matches first word and arg matches unique next word, suggests that word);0.283092;0.039872;0.323067;189204;92460 +7184/11678;Tezos_clic: auto-completion-parameters (prefix: when no arg given, suggests all options);0.297239;0.0241;0.32144;188948;92204 +7185/11678;Tezos_clic: auto-completion-parameters (prefix: when given single char arg, suggests options starting with this char);0.30047;0.028043;0.328625;188944;92204 +7186/11678;Tezos_clic: auto-completion-parameters (prefix: when given arg matches exactly one option, suggests that option);0.29998;0.027998;0.328076;189076;92368 +7187/11678;Tezos_clic: auto-completion-parameters (prefix: when given prev arg matches first word, suggests the next words);0.295749;0.031972;0.327835;188432;91608 +7188/11678;Tezos_clic: auto-completion-parameters (prefix: when given prev arg matches first word and arg matches unique next word, suggests that word);0.318279;0.007956;0.326343;189076;92204 +7189/11678;Tezos_clic: auto-completion-parameters (prefix: when given prev arg matches a unique first word, suggests the next word);0.303141;0.023932;0.32718;189328;92460 +7190/11678;Tezos_clic: auto-completion-parameters (seq: when no arg given, suggests all options);0.311545;0.01997;0.331619;189072;92372 +7191/11678;Tezos_clic: auto-completion-parameters (seq: when arg given, suggests all matching options);0.294495;0.031837;0.326447;188432;91692 +7192/11678;Tezos_clic: auto-completion-parameters (seq: when prev arg is from a sequence and no arg given, suggests all options in seq);0.300812;0.024065;0.325047;188944;92256 +7193/11678;Tezos_clic: auto-completion-parameters (seq: when prev args are from a sequence and no arg given, suggests all options in seq);0.30971;0.020111;0.32992;188184;91604 +7194/11678;Tezos_clic: auto-completion-parameters (non-terminal-seq: fails when given an empty suffix);0.2907;0.031857;0.322663;189204;92456 +7195/11678;Tezos_clic: auto-completion-parameters (non-terminal-seq: when no arg given, suggests all options in seq and its suffix);0.30105;0.024084;0.325222;189080;92556 +7196/11678;Tezos_clic: auto-completion-parameters (non-terminal-seq: when arg given, suggests all matching options);0.298181;0.031806;0.330094;188432;91692 +7197/11678;Tezos_clic: auto-completion-parameters (non-terminal-seq: when prev arg is from a sequence and no arg given, suggests all options in seq and its suffix);0.279276;0.039896;0.319279;190112;93332 +7198/11678;Tezos_clic: auto-completion-parameters (non-terminal-seq: when prev args are from a sequence and no arg given, suggests all options in seq and its suffix);0.309449;0.012056;0.321617;190152;93388 +7199/11678;Tezos_clic: auto-completion-parameters (non-terminal-seq: when first non-terminal-seq and its suffix are matched and no arg given, suggests all options in the next seq and its suffix);0.293058;0.028101;0.321274;190368;93652 +7200/11678;Tezos_clic: auto-completion-parameters (non-terminal-seq: when first non-terminal-seq and its suffix are matched and args given, suggests all matching options in the next seq and its suffix);0.292997;0.024081;0.317233;190112;93380 +7201/11678;BLS Signature: Common features to both instanciations (Size in bytes of sk);0.286801;0.03585;0.322756;189076;92200 +7202/11678;BLS Signature: Common features to both instanciations (sk_of_bytes_opt and sk_to_bytes are inverse functions);0.303263;0.019951;0.323324;189584;92460 +7203/11678;BLS Signature: Common features to both instanciations (sk_of_bytes_exn and sk_to_bytes are inverse functions);0.292329;0.032036;0.324462;189072;92368 +7204/11678;BLS Signature: Common features to both instanciations (sk_of_bytes_opt valid values);0.299281;0.023942;0.32334;189200;92460 +7205/11678;BLS Signature: Common features to both instanciations (sk_of_bytes_exn does not accept more than 32 bytes);0.283633;0.039948;0.3237;188432;91604 +7206/11678;BLS Signature: Common features to both instanciations (sk_of_bytes_opt does not accept more than 32 bytes);0.306026;0.023846;0.329978;188564;91608 +7207/11678;BLS Signature: Common features to both instanciations (sk_of_bytes_opt does not accept values higher than Fr modules but still on 32 bytes);0.321671;0.008041;0.329815;189464;92464 +7208/11678;BLS Signature: Common features to both instanciations (sk_of_bytes_exn does not accept values higher than Fr modules but still on 32 bytes);0.305532;0.02412;0.329762;189328;92456 +7209/11678;BLS Signature: Common features to both instanciations (sk_of_bytes_exn valid values);0.304832;0.020054;0.325004;188564;91612 +7210/11678;BLS Signature: Common features to both instanciations (generate_sk raises Invalid_argument is ikm is smaller than 32 bytes);0.28015;0.044023;0.324266;189124;92488 +7211/11678;BLS Signature: MinPk Size in bytes (pk);0.314322;0.007957;0.322396;190284;93652 +7212/11678;BLS Signature: MinPk Size in bytes (signature);0.295643;0.019975;0.31572;190288;93396 +7213/11678;BLS Signature: MinPk Auxiliary functions (unsafe_pk_of_bytes does no check on the input);0.297095;0.032118;0.329332;188948;92204 +7214/11678;BLS Signature: MinPk Auxiliary functions (pk_of_bytes_exn accepts points in the subgroup and in compressed form);0.289769;0.036221;0.326089;189328;92464 +7215/11678;BLS Signature: MinPk Auxiliary functions (pk_of_bytes_opt accepts points in the subgroup and in compressed form);0.308095;0.024007;0.332263;188432;91600 +7216/11678;BLS Signature: MinPk Auxiliary functions (pk_of_bytes_exn does not accept points in the subgroup and in uncompressed form);0.292584;0.032064;0.324757;189328;92364 +7217/11678;BLS Signature: MinPk Auxiliary functions (pk_of_bytes_opt does not accept points in the subgroup and in uncompressed form);0.302969;0.019932;0.323007;189204;92204 +7218/11678;BLS Signature: MinPk Auxiliary functions (unsafe_pk_of_bytes copies the input);0.313254;0.016064;0.329429;188564;91688 +7219/11678;BLS Signature: MinPk Auxiliary functions (pk_of_bytes_exn copies the input);0.302659;0.023894;0.326658;189336;92460 +7220/11678;BLS Signature: MinPk Auxiliary functions (pk_of_bytes_opt copies the input);0.307481;0.019966;0.327553;188436;91692 +7221/11678;BLS Signature: MinPk Auxiliary functions (unsafe_pk_of_bytes accepts points not in the subgroup);0.305819;0.016095;0.32203;189204;92388 +7222/11678;BLS Signature: MinPk Auxiliary functions (pk_of_bytes_exn does check the input);0.291936;0.031993;0.324026;189076;92368 +7223/11678;BLS Signature: MinPk Auxiliary functions (pk_of_bytes_opt and pk_to_bytes are inverse functions on valid inputs);0.308131;0.020008;0.328258;188952;92208 +7224/11678;BLS Signature: MinPk Auxiliary functions (unsafe_pk_of_bytes and pk_to_bytes are inverse functions on valid inputs);0.305545;0.020101;0.325753;188312;91612 +7225/11678;BLS Signature: MinPk Auxiliary functions (pk_of_bytes_exn and pk_to_bytes are inverse functions on valid inputs);0.309993;0.020129;0.330241;189076;92204 +7226/11678;BLS Signature: MinPk Auxiliary functions (unsafe_pk_of_bytes and pk_to_bytes are inverse functions on any valid input);0.290249;0.031808;0.322162;189328;92460 +7227/11678;BLS Signature: MinPk Auxiliary functions (pk_of_bytes_exn does verify the input represents a point in the subgroup);0.279263;0.043884;0.323248;189204;92372 +7228/11678;BLS Signature: MinPk Auxiliary functions (pk_of_bytes_opt does verify the input represents a point in the subgroup);0.292215;0.032023;0.324341;188304;91612 +7229/11678;BLS Signature: MinPk Auxiliary functions (pk_of_bytes_opt does check the input);0.300464;0.028043;0.328622;189076;92204 +7230/11678;BLS Signature: MinPk Auxiliary functions (unsafe_signature_of_bytes does no check on the input);0.296349;0.032037;0.328487;189080;92368 +7231/11678;BLS Signature: MinPk Auxiliary functions (signature_of_bytes_exn accepts points in the subgroup and in compressed form);0.295347;0.03592;0.331373;189332;92460 +7232/11678;BLS Signature: MinPk Auxiliary functions (signature_of_bytes_opt accepts points in the subgroup and in compressed form);0.299172;0.031911;0.331177;189076;92204 +7233/11678;BLS Signature: MinPk Auxiliary functions (signature_of_bytes_exn does not accept points in the subgroup and in uncompressed form);0.300372;0.024029;0.324505;188816;91864 +7234/11678;BLS Signature: MinPk Auxiliary functions (signature_of_bytes_opt does not accept points in the subgroup and in uncompressed form);0.316176;0.016008;0.332291;188692;91688 +7235/11678;BLS Signature: MinPk Auxiliary functions (unsafe_signature_of_bytes copies the input);0.298656;0.027874;0.326644;189204;92456 +7236/11678;BLS Signature: MinPk Auxiliary functions (signature_of_bytes_exn copies the input);0.306323;0.027847;0.334277;189072;92204 +7237/11678;BLS Signature: MinPk Auxiliary functions (signature_of_bytes_opt copies the input);0.313709;0.024131;0.337945;189328;92460 +7238/11678;BLS Signature: MinPk Auxiliary functions (unsafe_signature_of_bytes accepts points not in the subgroup);0.297387;0.024112;0.321604;188440;91692 +7239/11678;BLS Signature: MinPk Auxiliary functions (signature_of_bytes_exn does check the input);0.28968;0.03621;0.325995;189208;92456 +7240/11678;BLS Signature: MinPk Auxiliary functions (signature_of_bytes_opt and signature_to_bytes are inverse functions on valid inputs);0.304081;0.024006;0.328191;188436;91544 +7241/11678;BLS Signature: MinPk Auxiliary functions (unsafe_signature_of_bytes and signature_to_bytes are inverse functions on valid inputs);0.302445;0.027856;0.330429;188984;92716 +7242/11678;BLS Signature: MinPk Auxiliary functions (signature_of_bytes_exn and signature_to_bytes are inverse functions on valid inputs);0.30729;0.019953;0.327361;189332;92460 +7243/11678;BLS Signature: MinPk Auxiliary functions (unsafe_signature_of_bytes and signature_to_bytes are inverse functions on any valid input);0.298597;0.023887;0.322642;189328;92532 +7244/11678;BLS Signature: MinPk Auxiliary functions (signature_of_bytes_exn does verify the input represents a point in the subgroup);0.306889;0.015942;0.322939;188820;91948 +7245/11678;BLS Signature: MinPk Auxiliary functions (signature_of_bytes_opt does verify the input represents a point in the subgroup);0.288051;0.032005;0.320164;188436;91648 +7246/11678;BLS Signature: MinPk Auxiliary functions (signature_of_bytes_opt does check the input);0.292428;0.040058;0.332588;189200;92460 +7247/11678;BLS Signature: MinPk Properties and test vectors for Basic (Sign and verify same message with correct keys);0.408735;0.02805;0.436891;189204;92208 +7248/11678;BLS Signature: MinPk Properties and test vectors for Basic (Sign and verify different message with correct keys);0.399926;0.035993;0.43602;188560;91688 +7249/11678;BLS Signature: MinPk Properties and test vectors for Basic (Sign and verify same message with different keys);0.407795;0.031983;0.439895;188952;92204 +7250/11678;BLS Signature: MinPk Properties and test vectors for Basic (Sign and verify different message with different keys);0.417227;0.02407;0.4414;189076;92268 +7251/11678;BLS Signature: MinPk Properties and test vectors for Basic (Test full sign and verify with different ikm sizes);0.410409;0.023907;0.434437;188692;91864 +7252/11678;BLS Signature: MinPk Properties and test vectors for Basic (Sign and verify with a pk not in the prime subgroup);0.291955;0.035994;0.328052;188692;91872 +7253/11678;BLS Signature: MinPk Properties and test vectors for Basic (Test vectors from bls_sigs_ref);0.42641;0.027895;0.456853;189588;92880 +7254/11678;BLS Signature: MinPk Properties and test vectors for Message augmentation (Sign and verify same message with correct keys);0.409746;0.036154;0.446023;188564;91876 +7255/11678;BLS Signature: MinPk Properties and test vectors for Message augmentation (Sign and verify different message with correct keys);0.405706;0.036152;0.441975;188560;91868 +7256/11678;BLS Signature: MinPk Properties and test vectors for Message augmentation (Sign and verify same message with different keys);0.437626;0.012044;0.449775;189204;92460 +7257/11678;BLS Signature: MinPk Properties and test vectors for Message augmentation (Sign and verify different message with different keys);0.428334;0.028021;0.456532;189204;92368 +7258/11678;BLS Signature: MinPk Properties and test vectors for Message augmentation (Test full sign and verify with different ikm sizes);0.423136;0.023951;0.44721;189208;92464 +7259/11678;BLS Signature: MinPk Properties and test vectors for Message augmentation (Sign and verify with a pk not in the prime subgroup);0.285673;0.040235;0.32602;189080;92640 +7260/11678;BLS Signature: MinPk Properties and test vectors for Message augmentation (Test vectors from bls_sigs_ref);0.464808;0.020034;0.487729;189460;93132 +7261/11678;BLS Signature: MinPk Properties and test vectors for Proof of possession (Sign and verify same message with correct keys);0.404338;0.03603;0.440537;188992;92276 +7262/11678;BLS Signature: MinPk Properties and test vectors for Proof of possession (Sign and verify different message with correct keys);0.411058;0.023945;0.435109;189204;92364 +7263/11678;BLS Signature: MinPk Properties and test vectors for Proof of possession (Sign and verify same message with different keys);0.42928;0.020059;0.449495;189076;92244 +7264/11678;BLS Signature: MinPk Properties and test vectors for Proof of possession (Sign and verify different message with different keys);0.420424;0.024024;0.444586;189204;92244 +7265/11678;BLS Signature: MinPk Properties and test vectors for Proof of possession (Test full sign and verify with different ikm sizes);0.422545;0.019931;0.442586;188564;91864 +7266/11678;BLS Signature: MinPk Properties and test vectors for Proof of possession (Sign and verify with a pk not in the prime subgroup);0.310717;0.019917;0.330734;189204;92364 +7267/11678;BLS Signature: MinPk Properties and test vectors for Proof of possession (Test vectors from bls_sigs_ref);0.43164;0.02398;0.458367;189312;92980 +7268/11678;BLS Signature: MinPk Proof of possession proof/verify properties and test vectors (Pop G2 from file);0.44837;0.03571;0.48631;189332;92624 +7269/11678;BLS Signature: MinPk Proof of possession proof/verify properties and test vectors (Prove and verify with correct keys);0.307642;0.027967;0.33572;188564;91692 +7270/11678;BLS Signature: MinPk Proof of possession proof/verify properties and test vectors (Prove and verify with different pk for verify);0.307557;0.027959;0.335625;189328;92460 +7271/11678;BLS Signature: MinPk Proof of possession proof/verify properties and test vectors (Verify random proof);0.293602;0.032175;0.325891;189204;92456 +7272/11678;BLS Signature: MinSig Size in bytes (pk);0.294261;0.023859;0.318239;190028;93224 +7273/11678;BLS Signature: MinSig Size in bytes (signature);0.293026;0.028098;0.321238;190288;93396 +7274/11678;BLS Signature: MinSig Auxiliary functions (unsafe_pk_of_bytes does no check on the input);0.297579;0.024128;0.321822;189460;92460 +7275/11678;BLS Signature: MinSig Auxiliary functions (pk_of_bytes_exn accepts points in the subgroup and in compressed form);0.290893;0.035863;0.326857;188948;92364 +7276/11678;BLS Signature: MinSig Auxiliary functions (pk_of_bytes_opt accepts points in the subgroup and in compressed form);0.310093;0.019877;0.330084;189072;92368 +7277/11678;BLS Signature: MinSig Auxiliary functions (pk_of_bytes_exn does not accept points in the subgroup and in uncompressed form);0.298631;0.027872;0.326611;188568;91816 +7278/11678;BLS Signature: MinSig Auxiliary functions (pk_of_bytes_opt does not accept points in the subgroup and in uncompressed form);0.3059;0.02415;0.33016;188440;91692 +7279/11678;BLS Signature: MinSig Auxiliary functions (unsafe_pk_of_bytes copies the input);0.298656;0.027874;0.326663;189080;92372 +7280/11678;BLS Signature: MinSig Auxiliary functions (pk_of_bytes_exn copies the input);0.311853;0.015992;0.32801;189204;92340 +7281/11678;BLS Signature: MinSig Auxiliary functions (pk_of_bytes_opt copies the input);0.284644;0.044099;0.328847;188568;91868 +7282/11678;BLS Signature: MinSig Auxiliary functions (unsafe_pk_of_bytes accepts points not in the subgroup);0.305897;0.020124;0.32612;188436;91692 +7283/11678;BLS Signature: MinSig Auxiliary functions (pk_of_bytes_exn does check the input);0.297205;0.024097;0.321403;188944;92204 +7284/11678;BLS Signature: MinSig Auxiliary functions (pk_of_bytes_opt and pk_to_bytes are inverse functions on valid inputs);0.303811;0.03198;0.335955;188436;91692 +7285/11678;BLS Signature: MinSig Auxiliary functions (unsafe_pk_of_bytes and pk_to_bytes are inverse functions on valid inputs);0.300721;0.032076;0.332913;188436;91612 +7286/11678;BLS Signature: MinSig Auxiliary functions (pk_of_bytes_exn and pk_to_bytes are inverse functions on valid inputs);0.309853;0.02012;0.33009;188436;91692 +7287/11678;BLS Signature: MinSig Auxiliary functions (unsafe_pk_of_bytes and pk_to_bytes are inverse functions on any valid input);0.297181;0.024095;0.321378;189072;92208 +7288/11678;BLS Signature: MinSig Auxiliary functions (pk_of_bytes_exn does verify the input represents a point in the subgroup);0.286858;0.035857;0.32282;189080;92460 +7289/11678;BLS Signature: MinSig Auxiliary functions (pk_of_bytes_opt does verify the input represents a point in the subgroup);0.294722;0.035844;0.330686;189332;92452 +7290/11678;BLS Signature: MinSig Auxiliary functions (pk_of_bytes_opt does check the input);0.295484;0.027951;0.323534;189076;92204 +7291/11678;BLS Signature: MinSig Auxiliary functions (unsafe_signature_of_bytes does no check on the input);0.305255;0.024099;0.329481;188440;91608 +7292/11678;BLS Signature: MinSig Auxiliary functions (signature_of_bytes_exn accepts points in the subgroup and in compressed form);0.285347;0.040189;0.325634;189200;92296 +7293/11678;BLS Signature: MinSig Auxiliary functions (signature_of_bytes_opt accepts points in the subgroup and in compressed form);0.296672;0.032072;0.328855;188948;92200 +7294/11678;BLS Signature: MinSig Auxiliary functions (signature_of_bytes_exn does not accept points in the subgroup and in uncompressed form);0.300254;0.02402;0.324377;188560;91692 +7295/11678;BLS Signature: MinSig Auxiliary functions (signature_of_bytes_opt does not accept points in the subgroup and in uncompressed form);0.308667;0.016034;0.324811;188436;91688 +7296/11678;BLS Signature: MinSig Auxiliary functions (unsafe_signature_of_bytes copies the input);0.286347;0.035793;0.322285;189328;92372 +7297/11678;BLS Signature: MinSig Auxiliary functions (signature_of_bytes_exn copies the input);0.310867;0.019927;0.330909;189072;92372 +7298/11678;BLS Signature: MinSig Auxiliary functions (signature_of_bytes_opt copies the input);0.324282;0.01201;0.336398;189076;92200 +7299/11678;BLS Signature: MinSig Auxiliary functions (unsafe_signature_of_bytes accepts points not in the subgroup);0.301124;0.020074;0.321306;188948;92204 +7300/11678;BLS Signature: MinSig Auxiliary functions (signature_of_bytes_exn does check the input);0.295333;0.023945;0.319382;189204;92372 +7301/11678;BLS Signature: MinSig Auxiliary functions (signature_of_bytes_opt and signature_to_bytes are inverse functions on valid inputs);0.299097;0.027915;0.327124;188912;92456 +7302/11678;BLS Signature: MinSig Auxiliary functions (unsafe_signature_of_bytes and signature_to_bytes are inverse functions on valid inputs);0.298222;0.027834;0.32619;189332;92460 +7303/11678;BLS Signature: MinSig Auxiliary functions (signature_of_bytes_exn and signature_to_bytes are inverse functions on valid inputs);0.280002;0.048;0.328112;188560;91612 +7304/11678;BLS Signature: MinSig Auxiliary functions (unsafe_signature_of_bytes and signature_to_bytes are inverse functions on any valid input);0.305046;0.020068;0.325227;188564;91692 +7305/11678;BLS Signature: MinSig Auxiliary functions (signature_of_bytes_exn does verify the input represents a point in the subgroup);0.310756;0.01992;0.33081;188304;91540 +7306/11678;BLS Signature: MinSig Auxiliary functions (signature_of_bytes_opt does verify the input represents a point in the subgroup);0.290919;0.031881;0.322906;188564;91612 +7307/11678;BLS Signature: MinSig Auxiliary functions (signature_of_bytes_opt does check the input);0.298589;0.027868;0.326561;188308;91612 +7308/11678;BLS Signature: MinSig Properties and test vectors for Basic (Sign and verify same message with correct keys);0.387846;0.035985;0.423915;189168;92516 +7309/11678;BLS Signature: MinSig Properties and test vectors for Basic (Sign and verify different message with correct keys);0.387419;0.035946;0.423462;189072;92204 +7310/11678;BLS Signature: MinSig Properties and test vectors for Basic (Sign and verify same message with different keys);0.407049;0.023944;0.431177;189200;92404 +7311/11678;BLS Signature: MinSig Properties and test vectors for Basic (Sign and verify different message with different keys);0.394167;0.035833;0.430096;188948;92368 +7312/11678;BLS Signature: MinSig Properties and test vectors for Basic (Test full sign and verify with different ikm sizes);0.401094;0.024065;0.425263;188568;91864 +7313/11678;BLS Signature: MinSig Properties and test vectors for Basic (Sign and verify with a pk not in the prime subgroup);0.30532;0.028121;0.33353;189144;92420 +7314/11678;BLS Signature: MinSig Properties and test vectors for Basic (Test vectors from bls_sigs_ref);0.353789;0.031801;0.388073;189460;92888 +7315/11678;BLS Signature: MinSig Properties and test vectors for Message augmentation (Sign and verify same message with correct keys);0.382819;0.055827;0.438757;189208;92436 +7316/11678;BLS Signature: MinSig Properties and test vectors for Message augmentation (Sign and verify different message with correct keys);0.421122;0.020053;0.44128;188944;92224 +7317/11678;BLS Signature: MinSig Properties and test vectors for Message augmentation (Sign and verify same message with different keys);0.40918;0.032092;0.441386;188560;91864 +7318/11678;BLS Signature: MinSig Properties and test vectors for Message augmentation (Sign and verify different message with different keys);0.429629;0.024091;0.453889;188692;91836 +7319/11678;BLS Signature: MinSig Properties and test vectors for Message augmentation (Test full sign and verify with different ikm sizes);0.406194;0.031858;0.438166;188564;91864 +7320/11678;BLS Signature: MinSig Properties and test vectors for Message augmentation (Sign and verify with a pk not in the prime subgroup);0.303464;0.019964;0.323534;189204;92204 +7321/11678;BLS Signature: MinSig Properties and test vectors for Message augmentation (Test vectors from bls_sigs_ref);0.41312;0.032087;0.447587;189332;92884 +7322/11678;BLS Signature: MinSig Properties and test vectors for Proof of possession (Sign and verify same message with correct keys);0.381461;0.036138;0.4177;189204;92460 +7323/11678;BLS Signature: MinSig Properties and test vectors for Proof of possession (Sign and verify different message with correct keys);0.377196;0.040127;0.417437;189076;92376 +7324/11678;BLS Signature: MinSig Properties and test vectors for Proof of possession (Sign and verify same message with different keys);0.407433;0.027961;0.435536;188648;91932 +7325/11678;BLS Signature: MinSig Properties and test vectors for Proof of possession (Sign and verify different message with different keys);0.423458;0.011984;0.435542;189072;92376 +7326/11678;BLS Signature: MinSig Properties and test vectors for Proof of possession (Test full sign and verify with different ikm sizes);0.39462;0.023916;0.418653;188692;91608 +7327/11678;BLS Signature: MinSig Properties and test vectors for Proof of possession (Sign and verify with a pk not in the prime subgroup);0.299355;0.027939;0.327399;189200;92460 +7328/11678;BLS Signature: MinSig Properties and test vectors for Proof of possession (Test vectors from bls_sigs_ref);0.363698;0.028287;0.394616;189072;92376 +7329/11678;BLS Signature: MinSig Proof of possession proof/verify properties and test vectors (Pop G2 from file);0.425867;0.02388;0.451853;189156;92556 +7330/11678;BLS Signature: MinSig Proof of possession proof/verify properties and test vectors (Prove and verify with correct keys);0.311126;0.027921;0.339147;189208;92460 +7331/11678;BLS Signature: MinSig Proof of possession proof/verify properties and test vectors (Prove and verify with different pk for verify);0.30514;0.028105;0.333373;188688;91612 +7332/11678;BLS Signature: MinSig Proof of possession proof/verify properties and test vectors (Verify random proof);0.302973;0.023918;0.327013;188560;91608 +7333/11678;BLS Aggregated Signature: minPk Properties for Basic (Verify signatures with the same message);0.315768;0.015988;0.331863;189072;92372 +7334/11678;BLS Aggregated Signature: minPk Properties for Basic (Sign and verify corret signature with correct pks and msgs);0.351159;0.023942;0.375195;189076;92332 +7335/11678;BLS Aggregated Signature: minPk Properties for Basic (Sign and verify corret signature with correct pks and some incorrect msgs);0.34398;0.023998;0.368151;189200;92596 +7336/11678;BLS Aggregated Signature: minPk Properties for Basic (Sign and verify corret signature with some incorrect pks and correct msgs);0.349107;0.020063;0.369287;189332;92456 +7337/11678;BLS Aggregated Signature: minPk Properties for Message augmentation (Verify signatures with the same message is allowed);0.31414;0.015905;0.330163;189200;92460 +7338/11678;BLS Aggregated Signature: minPk Properties for Message augmentation (Sign and verify corret signature with correct pks and msgs);0.35093;0.023927;0.374963;188568;91864 +7339/11678;BLS Aggregated Signature: minPk Properties for Message augmentation (Sign and verify corret signature with correct pks and some incorrect msgs);0.345061;0.028086;0.37325;189076;92368 +7340/11678;BLS Aggregated Signature: minPk Properties for Message augmentation (Sign and verify corret signature with some incorrect pks and correct msgs);0.351045;0.023934;0.375172;188936;92516 +7341/11678;BLS Aggregated Signature: minPk Properties for Proof of possession (Sign and verify correct signature with correct pks, pops and msg);0.413122;0.016043;0.429273;188688;91868 +7342/11678;BLS Aggregated Signature: minPk Properties for Proof of possession (Sign and verify incorrect signature with correct pks, pops and msg);0.427238;0.023957;0.451304;189076;92208 +7343/11678;BLS Aggregated Signature: minPk Properties for Proof of possession (Sign and verify correct signature with correct pks, pops and incorrect msg);0.409519;0.028104;0.437733;188564;91868 +7344/11678;BLS Aggregated Signature: minPk Properties for Proof of possession (Sign and verify correct signature with some incorrect pks and correct pops and msg);0.397737;0.012052;0.409895;188692;91864 +7345/11678;BLS Aggregated Signature: minPk Properties for Proof of possession (Sign and verify correct signature with some incorrect pks and pops and correct msg);0.385281;0.02408;0.409467;188564;91608 +7346/11678;BLS Aggregated Signature: minPk Properties for Proof of possession (Sign and verify correct signature with correct pks and some incorrect pops and correct msg);0.387512;0.019974;0.407576;190048;93312 +7347/11678;BLS Aggregated Signature: minSig Properties for Basic (Verify signatures with the same message);0.304046;0.020003;0.324154;189024;92648 +7348/11678;BLS Aggregated Signature: minSig Properties for Basic (Sign and verify corret signature with correct pks and msgs);0.343929;0.019995;0.364008;188956;92332 +7349/11678;BLS Aggregated Signature: minSig Properties for Basic (Sign and verify corret signature with correct pks and some incorrect msgs);0.331526;0.023965;0.355592;188688;91868 +7350/11678;BLS Aggregated Signature: minSig Properties for Basic (Sign and verify corret signature with some incorrect pks and correct msgs);0.342911;0.023924;0.366935;188948;92200 +7351/11678;BLS Aggregated Signature: minSig Properties for Message augmentation (Verify signatures with the same message is allowed);0.312026;0.024002;0.336139;189204;92460 +7352/11678;BLS Aggregated Signature: minSig Properties for Message augmentation (Sign and verify corret signature with correct pks and msgs);0.334446;0.031852;0.366401;188560;91864 +7353/11678;BLS Aggregated Signature: minSig Properties for Message augmentation (Sign and verify corret signature with correct pks and some incorrect msgs);0.343106;0.027927;0.371142;188564;91692 +7354/11678;BLS Aggregated Signature: minSig Properties for Message augmentation (Sign and verify corret signature with some incorrect pks and correct msgs);0.341123;0.028092;0.369364;189076;92400 +7355/11678;BLS Aggregated Signature: minSig Properties for Proof of possession (Sign and verify correct signature with correct pks, pops and msg);0.387094;0.023943;0.411138;189076;92364 +7356/11678;BLS Aggregated Signature: minSig Properties for Proof of possession (Sign and verify incorrect signature with correct pks, pops and msg);0.389195;0.03611;0.425407;189076;92364 +7357/11678;BLS Aggregated Signature: minSig Properties for Proof of possession (Sign and verify correct signature with correct pks, pops and incorrect msg);0.380182;0.032015;0.412319;189184;92596 +7358/11678;BLS Aggregated Signature: minSig Properties for Proof of possession (Sign and verify correct signature with some incorrect pks and correct pops and msg);0.368732;0.024047;0.392909;190488;93636 +7359/11678;BLS Aggregated Signature: minSig Properties for Proof of possession (Sign and verify correct signature with some incorrect pks and pops and correct msg);0.356948;0.028074;0.385189;190108;93300 +7360/11678;BLS Aggregated Signature: minSig Properties for Proof of possession (Sign and verify correct signature with correct pks and some incorrect pops and correct msg);0.364611;0.028047;0.392758;190108;93396 +7361/11678;PlonK: Domains (test_generator);0.311124;0.023932;0.335179;190368;93396 +7362/11678;PlonK: Domains (build_domain);0.276132;0.044021;0.320242;190336;93516 +7363/11678;PlonK: Domains (build_domain_power_of_two);0.280455;0.036058;0.31662;190156;93392 +7364/11678;PlonK: Domains (to_domain_array);0.294827;0.023904;0.318831;190156;93392 +7365/11678;PlonK: Coefficients (equal);0.290885;0.023908;0.314893;190412;93392 +7366/11678;PlonK: Coefficients (copy);0.291404;0.027942;0.319458;190364;93644 +7367/11678;PlonK: Coefficients (shift);0.296977;0.020066;0.317146;190368;93484 +7368/11678;PlonK: Coefficients (split poly);0.296934;0.020063;0.317106;190152;93392 +7369/11678;PlonK: Coefficients (split poly2);0.294536;0.027861;0.3225;190496;93652 +7370/11678;PlonK: Coefficients (degree of zero is infinity);0.288632;0.036079;0.324807;189072;92204 +7371/11678;PlonK: Coefficients (degree of constant is one);0.29759;0.016085;0.313788;190112;93388 +7372/11678;PlonK: Coefficients (degree int test vectors);0.300034;0.024002;0.32415;190108;93388 +7373/11678;PlonK: Coefficients (evaluation at any point of the zero polynomial);0.317624;0.012061;0.329789;189208;92460 +7374/11678;PlonK: Coefficients (evaluation at any point of a random constant polynomial);0.306161;0.015904;0.322173;189076;92280 +7375/11678;PlonK: Coefficients (evaluation at zero of a random constant polynomial);0.29946;0.031942;0.331544;189204;92500 +7376/11678;PlonK: Coefficients (evaluation at zero of the zero polynomial);0.298442;0.027854;0.326409;189072;92328 +7377/11678;PlonK: Coefficients (evaluation at any point of the polynomial X);0.303076;0.019939;0.323109;189076;92240 +7378/11678;PlonK: Coefficients (of_coeff_to_dense_vectors);0.29952;0.023961;0.323587;190240;93392 +7379/11678;PlonK: Coefficients (test properties nullifier 0 * P = P * 0 = 0);0.308746;0.020048;0.3289;189204;92460 +7380/11678;PlonK: Coefficients (test properties commutativity p * q = p * q);0.294057;0.028197;0.322367;189200;92460 +7381/11678;PlonK: Coefficients (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q);0.297058;0.0281;0.325264;188692;91864 +7382/11678;PlonK: Coefficients (test interpolation with only roots);0.303062;0.023925;0.327092;189076;92372 +7383/11678;PlonK: Coefficients (test evaluation with zero polynomial);0.288497;0.040069;0.328671;189204;92204 +7384/11678;PlonK: Coefficients (test evaluation with smaller polynomial);0.379187;0.02794;0.407246;191252;94172 +7385/11678;PlonK: Coefficients (test multiply constant by scalar zero is zero);0.306177;0.023857;0.330208;189332;92456 +7386/11678;PlonK: Coefficients (test multiply degree one by scalar zero is zero);0.297741;0.028164;0.326013;188564;91616 +7387/11678;PlonK: Coefficients (test property opposite twice);0.304542;0.024042;0.328715;189076;92360 +7388/11678;PlonK: Coefficients (test property opposite of constant);0.29554;0.027956;0.323597;189328;92464 +7389/11678;PlonK: Coefficients (test property opposite of zero);0.287344;0.035918;0.323412;188944;92072 +7390/11678;PlonK: Polynomial_c (build_erase);0.293205;0.024099;0.317412;190372;93396 +7391/11678;PlonK: Polynomial_c (vectors_fft);0.304606;0.016031;0.320758;190624;93648 +7392/11678;PlonK: Polynomial_c (big_vectors_fft);0.304363;0.024028;0.328536;190412;93508 +7393/11678;PlonK: Polynomial_c (ifft_random);1.95378;0.024021;1.97794;219012;122296 +7394/11678;PlonK: Polynomial_c (get_sparse_coefficients);0.363941;0.031994;0.396038;243120;146388 +7395/11678;PlonK: Polynomial_c (copy);0.284026;0.032002;0.316195;190236;93336 +7396/11678;PlonK: Polynomial_c (get_zero);0.283077;0.031896;0.315075;190116;93392 +7397/11678;PlonK: Polynomial_c (get_one);0.293473;0.028141;0.321727;190244;93396 +7398/11678;PlonK: Polynomial_c (get_random);0.301356;0.016072;0.317533;190364;93648 +7399/11678;PlonK: Polynomial_c (one);0.298311;0.019887;0.318316;190112;93392 +7400/11678;PlonK: Polynomial_c (degree);0.295109;0.027915;0.323134;190368;93396 +7401/11678;PlonK: Polynomial_c (add);0.307624;0.019975;0.327706;190364;93392 +7402/11678;PlonK: Polynomial_c (add_inplace);0.304255;0.02402;0.328396;190368;93396 +7403/11678;PlonK: Polynomial_c (sub);0.298429;0.027853;0.326388;190368;93388 +7404/11678;PlonK: Polynomial_c (sub_inplace);0.292084;0.03601;0.328202;190492;93396 +7405/11678;PlonK: Polynomial_c (mul);0.299939;0.027994;0.328039;190500;93652 +7406/11678;PlonK: Polynomial_c (opposite);0.285605;0.036203;0.321923;190240;93392 +7407/11678;PlonK: Polynomial_c (opposite_inplace);0.298562;0.019904;0.318575;190876;94160 +7408/11678;PlonK: Polynomial_c (mul_by_scalar);0.310776;0.015937;0.326817;190368;93648 +7409/11678;PlonK: Polynomial_c (mul_by_scalar_inplace);0.274764;0.043803;0.318685;190372;93392 +7410/11678;PlonK: Polynomial_c (is_zero);0.292194;0.024015;0.316322;190116;93392 +7411/11678;PlonK: Polynomial_c (evaluate);0.289143;0.036142;0.32539;190116;93396 +7412/11678;PlonK: Polynomial_c (division_x_z);0.350161;0.031832;0.382116;192928;96212 +7413/11678;PlonK: Polynomial_c (division_xn_minus_one);0.348745;0.028059;0.376909;192288;95436 +7414/11678;PlonK: Polynomial_c (division_xn_minus_one_limit_case);0.299714;0.031969;0.331799;188948;92204 +7415/11678;PlonK: Polynomial_c (division_xn_minus_one_lt_2n);0.304419;0.024033;0.328556;189460;92460 +7416/11678;PlonK: Polynomial_c (division_xn_plus_one);0.327852;0.04398;0.371938;192720;95956 +7417/11678;PlonK: Polynomial_c (division_xn_plus_one_lt_2n);0.295495;0.031945;0.327549;189076;92308 +7418/11678;PlonK: Polynomial_c (division_xn_plus_c);0.349044;0.028084;0.377229;192800;95952 +7419/11678;PlonK: Polynomial_c (division_xn_plus_c_lt_2n);0.29249;0.032053;0.324644;190364;93652 +7420/11678;PlonK: Polynomial_c (test_linear);0.299926;0.023994;0.324024;190368;93396 +7421/11678;PlonK: Polynomial_c (test_linear_with_powers);0.288854;0.032094;0.321027;190536;93648 +7422/11678;PlonK: Polynomial_c (test_linear_with_powers_equal_length);0.296832;0.040112;0.337056;189072;92204 +7423/11678;PlonK: Polynomial_c (fft_evaluate);0.290392;0.027845;0.318343;190112;93388 +7424/11678;PlonK: Polynomial_c (fft_interpolate);0.285515;0.036192;0.321826;190368;93392 +7425/11678;PlonK: Polynomial_c (fft_pfa_evaluate);2.84321;0.039988;2.88326;216476;119668 +7426/11678;PlonK: Polynomial_c (fft_pfa_interpolate);0.275296;0.043887;0.319295;190620;93652 +7427/11678;PlonK: Polynomial_c (fft_dft_evaluate);1.37575;0.023995;1.39985;198428;101848 +7428/11678;PlonK: Polynomial_c (fft_dft_interpolate);0.441664;0.01606;0.457833;191264;94672 +7429/11678;PlonK: Polynomial_c (of_dense);0.283532;0.03594;0.319573;190492;93652 +7430/11678;PlonK: Polynomial_c (of_carray does not copy the carray);0.337007;0.020059;0.357175;196624;99796 +7431/11678;PlonK: Evaluations_c (test_of_array_zero);0.282852;0.03187;0.314826;190112;93252 +7432/11678;PlonK: Evaluations_c (test_of_array_const);0.290391;0.023867;0.314371;190240;93392 +7433/11678;PlonK: Evaluations_c (test_of_array);0.302817;0.019922;0.322846;190112;93392 +7434/11678;PlonK: Evaluations_c (test_zero);0.295124;0.01994;0.315214;190024;93340 +7435/11678;PlonK: Evaluations_c (test_is_zero);0.295163;0.023932;0.319228;190112;93396 +7436/11678;PlonK: Evaluations_c (test_copy);0.279529;0.043926;0.323558;190028;93228 +7437/11678;PlonK: Evaluations_c (test_copy_inplace);0.278506;0.039786;0.318397;190236;93392 +7438/11678;PlonK: Evaluations_c (test_mul_by_scalar);0.28091;0.04013;0.321143;190368;93644 +7439/11678;PlonK: Evaluations_c (test_mul_zero);0.30073;0.016038;0.316891;190240;93396 +7440/11678;PlonK: Evaluations_c (test_mul_one);0.304536;0.020035;0.324676;190496;93644 +7441/11678;PlonK: Evaluations_c (test_mul_commutativity);0.289643;0.036205;0.325964;190492;93648 +7442/11678;PlonK: Evaluations_c (test_mul_diff_size);0.304524;0.028048;0.332681;193184;96468 +7443/11678;PlonK: Evaluations_c (test_mul_diff_size_composition_gx);0.32001;0.028;0.348121;193552;96720 +7444/11678;PlonK: Evaluations_c (test_mul);0.403197;0.01996;0.423258;202548;105712 +7445/11678;PlonK: Evaluations_c (test_linear_zero);0.299434;0.023954;0.323521;190108;93388 +7446/11678;PlonK: Evaluations_c (test_linear_zero_const);0.285304;0.028128;0.31353;190024;93228 +7447/11678;PlonK: Evaluations_c (test_linear_zero_composition_gx);0.294795;0.035853;0.330761;189328;92460 +7448/11678;PlonK: Evaluations_c (test_linear_diff_size);0.291339;0.031927;0.323376;191564;94672 +7449/11678;PlonK: Evaluations_c (test_linear);0.288587;0.032065;0.320783;191908;95180 +7450/11678;PlonK: Evaluations_c (test_add);0.288939;0.028091;0.317151;190888;94236 +7451/11678;PlonK: Evaluations_c (test_add_zero);0.302492;0.01592;0.318512;191012;94156 +7452/11678;PlonK: Evaluations_c (test_linear_with_powers_equal_length);0.306435;0.027857;0.334402;190868;94164 +7453/11678;PlonK: Evaluations_c (test_linear_with_powers);0.287307;0.035913;0.323329;192164;95288 +7454/11678;PlonK: Evaluations_c (test_linear_with_powers_zeros);0.294189;0.031804;0.326109;190228;93392 +7455/11678;PlonK: Srs (get_set);0.28849;0.028047;0.316655;190240;93392 +7456/11678;PlonK: Srs (pippenger);0.288208;0.032023;0.32033;190112;93396 +7457/11678;PlonK: Srs (pippenger test vectors);0.294911;0.023911;0.31895;190108;93392 +7458/11678;PlonK: Srs (add and extract srs from pippenger ctxt);0.289811;0.032201;0.322131;188432;91688 +7459/11678;PlonK: Srs (load_from_file);0.304425;0.020027;0.325874;190280;93556 +7460/11678;PlonK: Srs (load_from_file_vector);0.297941;0.020131;0.318205;190152;93388 +7461/11678;PlonK: PBT (add_commutative);0.311724;0.023978;0.335828;193732;96976 +7462/11678;PlonK: PBT (mul_commutative);0.43377;0.012049;0.445937;193944;97084 +7463/11678;PlonK: PBT (mul_distibute_add);0.546995;0.023956;0.571086;194092;97372 +7464/11678;PlonK: PBT (add_identity);0.291301;0.031923;0.323336;192332;95184 +7465/11678;PlonK: PBT (sub_identity);0.302442;0.031836;0.334412;193548;96692 +7466/11678;PlonK: PBT (mul_identity);0.285412;0.044218;0.32974;193104;96148 +7467/11678;PlonK: PBT (add_absorbing);0.320894;0.016044;0.337043;194332;97488 +7468/11678;Rescue: Consistency with MEC (vectors);0.296169;0.024013;0.32029;190152;93392 +7469/11678;Rescue: State (get and set);0.294517;0.023879;0.3185;190364;93484 +7470/11678;Poseidon: State (get and set);0.29068;0.027873;0.318667;190536;93900 +7471/11678;Poseidon: Batch size consistency (Poseidon128 with random batch sizes);0.291367;0.035922;0.327409;188948;92204 +7472/11678;Poseidon: Batch size consistency (Random instance of Poseidon);0.296033;0.032003;0.328157;189204;92460 +7473/11678;Poseidon: Test vectors (Poseidon252 (Dusk));0.298902;0.027897;0.326915;190624;93648 +7474/11678;Poseidon: Test vectors (Poseidon128 (consistency with MEC));0.29257;0.032062;0.324742;189204;92460 +7475/11678;The mode of operation Jive: Exceptions (input size does not correspond to parameters);0.293391;0.032152;0.325648;189328;92456 +7476/11678;The mode of operation Jive: Exceptions (b does not divide the state size);0.29569;0.02797;0.323762;188568;91692 +7477/11678;The mode of operation Jive: Anemoi (b = 2, state_size = 2);0.301678;0.024134;0.325931;189072;92132 +7478/11678;The mode of operation Jive: Anemoi (b = 2, state_size = 4);0.296874;0.028082;0.325062;189076;92460 +7479/11678;The mode of operation Jive: Anemoi (b = 2, state_size = 6);0.311108;0.019942;0.331151;189332;92460 +7480/11678;Griffin: Test vectors (from reference implementation: Griffin 3);0.295745;0.031972;0.327819;189332;92456 +7481/11678;Griffin: Test vectors (from reference implementation: Griffin 4);0.296657;0.028062;0.324836;189072;92372 +7482/11678;Griffin: State (get and set);0.275746;0.039963;0.315834;190492;93648 +7483/11678;The permutation Anemoi and the mode of operation Jive: From reference implementation (Tests vectors from reference implementation);0.304644;0.020042;0.324802;189464;92464 +7484/11678;The permutation Anemoi and the mode of operation Jive: Generic instantiations (l = 1 <==> jive128_1);0.304173;0.028015;0.332316;189076;92372 +7485/11678;The permutation Anemoi and the mode of operation Jive: Generic instantiations (l = 2 -> tests vectors from reference implementation);0.311937;0.011997;0.32407;188436;91608 +7486/11678;The permutation Anemoi and the mode of operation Jive: Generic instantiations (l = 4 -> tests vectors from reference implementation);0.300004;0.02;0.320108;189072;92204 +7487/11678;The permutation Anemoi and the mode of operation Jive: Generic instantiations (l = 3 -> tests vectors from reference implementation);0.296208;0.036025;0.332338;189200;92460 +7488/11678;The permutation Anemoi and the mode of operation Jive: Additional functions (State initialisation and get state);0.310468;0.011941;0.322524;188692;91868 +7489/11678;The permutation Anemoi and the mode of operation Jive: Additional functions (Constant generation);0.296753;0.036091;0.332956;188568;91864 +7490/11678;The permutation Anemoi and the mode of operation Jive: Additional functions (Compute number of rounds);0.298739;0.031865;0.330705;188944;92200 +7491/11678;tezos-benchmark: sparse_vec (refl);0.31065;0.01593;0.326684;190112;93392 +7492/11678;tezos-benchmark: sparse_vec (neq1);0.29752;0.016082;0.313698;190364;93484 +7493/11678;tezos-benchmark: sparse_vec (of_list1);0.272579;0.044093;0.316774;190620;93648 +7494/11678;tezos-benchmark: sparse_vec (of_list2);0.296887;0.020059;0.317045;190240;93392 +7495/11678;tezos-benchmark: sparse_vec (of_list3);0.303356;0.015966;0.319436;190112;93392 +7496/11678;tezos-benchmark: sparse_vec (smul);0.292946;0.02809;0.321143;190240;93396 +7497/11678;tezos-benchmark: sparse_vec (add1);0.286776;0.031864;0.318748;190492;93648 +7498/11678;tezos-benchmark: sparse_vec (add2);0.285505;0.032169;0.317796;190372;93656 +7499/11678;tezos-benchmark: sparse_vec (add3);0.279312;0.035911;0.315326;190364;93652 +7500/11678;tezos-benchmark: sparse_vec (sub1);0.276673;0.040097;0.316881;189984;93484 +7501/11678;tezos-benchmark: sparse_vec (sub2);0.276296;0.044047;0.320454;190240;93228 +7502/11678;tezos-benchmark: sparse_vec (swap);0.29498;0.027903;0.322996;190112;93392 +7503/11678;tezos-benchmark: sparse_vec (eval1);0.291893;0.023991;0.316065;190108;93396 +7504/11678;tezos-benchmark: sparse_vec (eval2);0.291252;0.027928;0.31928;190156;93464 +7505/11678;tezos-benchmark: probe (probing bench);0.882499;0.043925;0.926527;196332;98944 +7506/11678;tezos-benchmark: model (synthesize);0.288233;0.028022;0.316353;190112;93392 +7507/11678;tezos-benchmark: measure (parse_config does not fail);0.300573;0.024045;0.324725;188304;91608 +7508/11678;tezos-benchmark: costlang (pp1);0.291287;0.023941;0.31535;190112;93364 +7509/11678;tezos-benchmark: costlang (pp2);0.300243;0.020016;0.32036;190152;93388 +7510/11678;tezos-benchmark: costlang (pp3);0.293065;0.024087;0.317248;190124;93648 +7511/11678;tezos-benchmark: costlang (eval1);0.305597;0.016084;0.321772;190084;93420 +7512/11678;tezos-benchmark: costlang (eval2);0.288745;0.036093;0.324949;190112;93392 +7513/11678;tezos-benchmark: costlang (eval_to_linear_comb);0.289128;0.028109;0.31735;190240;93396 +7514/11678;tezos-benchmark: costlang (eval_to_linear_comb_fail);0.296604;0.032065;0.328787;189200;92368 +7515/11678;tezos-benchmark: costlang (arg_names_1);0.29567;0.023973;0.31977;190236;93732 +7516/11678;tezos-benchmark: costlang (arg_names_2);0.273264;0.044204;0.31758;190368;93652 +7517/11678;tezos-benchmark: costlang (arg_names_3);0.29841;0.019894;0.318417;190108;93260 +7518/11678;tezos-benchmark: costlang (arg_names_4);0.293672;0.024137;0.317913;190156;93396 +7519/11678;tezos-benchmark: benchmark_helpers (raise exception when file is missing);0.310658;0.019913;0.330681;189204;92460 +7520/11678;lib_micheline_rewriting: Test Michelson rewriting;0.304031;0.028002;0.332157;189080;92200 +7521/11678;Base.unix.unix_error: encoding (json encoding roundtrip);0.293171;0.028112;0.321399;188948;92368 +7522/11678;Base.unix.unix_error: encoding (binary encoding roundtrip);0.291192;0.039889;0.331168;189000;92200 +7523/11678;Syslog: check formatting function;0.293072;0.024088;0.317258;189984;93392 +7524/11678;Syslog: send message through socket;0.276148;0.040021;0.316283;189992;93700 +7525/11678;Time: Protocol (Protocol.[add|diff] roundtrip);0.303598;0.019973;0.32368;190116;93228 +7526/11678;Time: Protocol (Protocol.[diff|add] roundtrip);0.28716;0.031906;0.319164;190108;93392 +7527/11678;Time: Protocol (Protocol.encoding roundtrips in binary);0.316988;0.01605;0.33315;188564;91860 +7528/11678;Time: Protocol (Protocol.encoding roundtrips in JSON);0.306565;0.023888;0.330555;189076;92204 +7529/11678;Time: Protocol (Protocol.[to|of]_notation roundtrip in RFC3339 range);0.300774;0.024061;0.324993;189204;92460 +7530/11678;Time: System (System.[to|of]_protocol roundtrip modulo option);0.293579;0.036194;0.329877;189072;92368 +7531/11678;Time: System (System.[of|to]_protocol roundtrip or outside RFC3339 range);0.300455;0.024036;0.324601;189204;92372 +7532/11678;Time: System (System.rfc_encoding roundtrips in binary modulo precision);0.29694;0.024076;0.321121;189328;92460 +7533/11678;Time: System (System.rfc_encoding roundtrips in JSON modulo precision);0.298744;0.027882;0.326758;188564;91868 +7534/11678;Time: System (System.encoding roundtrips in binary modulo precision);0.305155;0.01606;0.321327;189076;92372 +7535/11678;Time: System (System.encoding roundtrips in JSON modulo precision);0.309365;0.01607;0.325552;188688;91864 +7536/11678;Skip_list: skip list (Skip list: produce paths with `back_path` and check);0.292411;0.028039;0.320555;189204;92204 +7537/11678;Skip_list: skip list (Skip list: find cell with `find` and `check`);0.307756;0.019984;0.327821;189200;92716 +7538/11678;Skip_list: skip list (Skip list: `find` won't produce invalid value);0.301492;0.024119;0.325711;188568;91872 +7539/11678;Skip_list: skip list (Skip list: `back_path` won't produce invalid paths);0.303325;0.019955;0.32341;188952;92324 +7540/11678;Skip_list: skip list (Skip list: check if the back_path is minimal);0.302607;0.019908;0.32268;189128;92400 +7541/11678;Skip_list: skip list (Skip list: produce paths with `search` and check);0.292081;0.040011;0.332218;189200;92500 +7542/11678;Skip_list: skip list (Skip list: `search` won't produce invalid paths);0.287913;0.035989;0.324026;189208;92460 +7543/11678;Skip_list: skip list (Skip list: `search` may not produce minimal path);0.286908;0.035863;0.322882;189072;92372 +7544/11678;Sized: SizedSet (empty);0.295798;0.019986;0.315874;190512;93904 +7545/11678;Sized: SizedSet (singleton);0.284498;0.032056;0.316654;190624;93904 +7546/11678;Sized: SizedSet (equal);0.291321;0.027934;0.319378;190364;93652 +7547/11678;Sized: SizedSet (inequal);0.282939;0.035865;0.318908;190536;93648 +7548/11678;Sized: SizedSet (add);0.299233;0.019948;0.319286;190364;93648 +7549/11678;Sized: SizedSet (remove);0.295372;0.023949;0.319438;190112;93396 +7550/11678;Sized: SizedSet (union);0.279943;0.035992;0.316053;190364;93652 +7551/11678;Sized: SizedSet (inter);0.300799;0.020053;0.320963;190496;93644 +7552/11678;Sized: SizedSet (diff);0.284352;0.036044;0.320498;190620;93908 +7553/11678;Sized: SizedSet (map);0.302196;0.019881;0.322199;190408;93652 +7554/11678;Sized: SizedSet (filter);0.303863;0.01999;0.323976;190876;93908 +7555/11678;Sized: SizedSet (filter_map);0.293108;0.032121;0.325349;190748;93908 +7556/11678;Sized: SizedSet (partition);0.295795;0.02798;0.323884;190368;93908 +7557/11678;Sized: SizedSet (split);0.28124;0.036159;0.317549;189976;93444 +7558/11678;Sized: SizedSet (add_seq);0.29566;0.023972;0.319741;190620;93396 +7559/11678;Sized: SizedSet (of_seq);0.291033;0.027907;0.31906;190280;93388 +7560/11678;Sized: SizedMap (empty);0.280002;0.04;0.320176;190108;93388 +7561/11678;Sized: SizedMap (singleton);0.283073;0.035882;0.319072;190624;93648 +7562/11678;Sized: SizedMap (equal);0.296503;0.028047;0.324655;190368;93392 +7563/11678;Sized: SizedMap (inequal);0.296606;0.024049;0.320776;190244;93648 +7564/11678;Sized: SizedMap (add);0.279569;0.035944;0.315627;190364;93396 +7565/11678;Sized: SizedMap (update);0.301759;0.02414;0.326005;190620;93648 +7566/11678;Sized: SizedMap (remove);0.289358;0.03215;0.321617;190368;93652 +7567/11678;Sized: SizedMap (merge);0.301079;0.024086;0.325288;191264;94420 +7568/11678;Sized: SizedMap (union);0.285062;0.036134;0.321303;190624;93908 +7569/11678;Sized: SizedMap (map);0.29294;0.032103;0.325149;190624;93912 +7570/11678;Sized: SizedMap (mapi);0.286356;0.035794;0.322317;191008;94164 +7571/11678;Sized: SizedMap (filter);0.276085;0.040012;0.316209;191004;94160 +7572/11678;Sized: SizedMap (filter_map);0.295048;0.02791;0.323038;190844;94164 +7573/11678;Sized: SizedMap (partition);0.298608;0.019907;0.318627;190880;93908 +7574/11678;Sized: SizedMap (split);0.293642;0.024134;0.317883;190624;93648 +7575/11678;Sized: SizedMap (add_seq);0.288388;0.028037;0.316529;190364;93648 +7576/11678;Protocol: environment-version-comparison (equal);0.31367;0.020107;0.333883;189076;92372 +7577/11678;Protocol: environment-version-comparison (less-than);0.305852;0.020121;0.326086;188824;92204 +7578/11678;Protocol: environment-version-comparison (greater-than);0.300739;0.028069;0.328911;188948;92200 +7579/11678;Base.P2p: P2p_addr (Base.P2p_addr.ip.to-string-from-string);0.299233;0.031918;0.331268;189328;92460 +7580/11678;Base.P2p: P2p_point (Base.P2p_point.addr_port_id.to-string-from-string);0.302976;0.027905;0.331054;189076;92268 +7581/11678;Base.P2p: P2p_point (Base.P2p_point.id.encode-decode roundtrip);0.296826;0.024067;0.321005;188568;91868 +7582/11678;Base.P2p: P2p_point (Base.P2p_point.Id.encoding eagerly fails on too big input);0.30342;0.023954;0.327476;188560;91864 +7583/11678;Base.P2p: P2p_point.domain (domain_to_string_from_string_ok);0.301945;0.028181;0.331707;188560;91916 +7584/11678;Base.P2p: P2p_point.domain (domain_to_string_from_string_ko);0.28781;0.035976;0.324062;188436;91608 +7585/11678;Bounded: Int32 (0 not in empty);0.276488;0.04007;0.316659;190112;93228 +7586/11678;Bounded: Int32 (123 not in empty);0.308867;0.016045;0.325023;190284;93644 +7587/11678;Bounded: Int32 (Int32.min_int not in empty);0.290361;0.03182;0.322285;190364;93648 +7588/11678;Bounded: Int32 (0 not in Small);0.279723;0.03996;0.319788;190372;93652 +7589/11678;Bounded: Int32 (1 in Small);0.292226;0.024018;0.316355;190412;93660 +7590/11678;Bounded: Int32 (2 in Small);0.295823;0.023985;0.319909;190116;93396 +7591/11678;Bounded: Int32 (4 not in Small);0.299113;0.027917;0.327148;190364;93656 +7592/11678;Bounded: Int32 (0 in full);0.300939;0.020062;0.321122;190112;93220 +7593/11678;Bounded: Int32 (123 in full);0.277408;0.040204;0.317718;190236;93400 +7594/11678;Bounded: Int32 (Int32.min_int in full);0.310819;0.015939;0.326886;190536;93644 +7595/11678;Bounded: Int32 (Int32.max_int in full);0.275216;0.039886;0.315214;190160;93296 +7596/11678;Bounded: Int32 (Uint8.bad instantiation lower value);0.29716;0.024094;0.321366;188692;91692 +7597/11678;Bounded: Int32 (Uint8.bad instantiation upper value);0.308553;0.020035;0.328705;189204;92368 +7598/11678;Bounded: Int32 (Uint16.tight bounds);0.297002;0.024081;0.321192;190364;93396 +7599/11678;Bounded: Round-trip property (Bounded: roundtrips in JSON);0.287832;0.035979;0.323915;189204;92456 +7600/11678;Bounded: Round-trip property (Bounded: roundtrips in binary);0.299406;0.023952;0.323474;188568;91860 +7601/11678;Released binaries: report consistent version;1.60502;0.287302;1.8906;201884;196924 +7602/11678;Experimental binaries: report consistent version;0.91725;0.151452;1.06752;197908;192636 +7603/11678;RPC force bootstrapped;1.17942;0.17948;1.36237;388056;558816 +7604/11678;CLI under connections cap;1.07442;0.128042;1.2074;388200;465812 +7605/11678;CLI above connections cap;0.41262;0.031943;0.45452;191052;176696 +7606/11678;CLI --net-addr collision message;1.46437;0.234723;1.70259;388196;609864 +7607/11678;Config init;0.545699;0.076213;0.621928;196712;187648 +7608/11678;Config init roundtrip;0.773005;0.152038;0.924699;196836;189632 +7609/11678;Config show;0.545033;0.084122;0.629021;196708;187480 +7610/11678;Config show roundtrip;1.30328;0.224432;1.52653;198944;194616 +7611/11678;Test the clients config validation;1.32183;0.208382;1.52916;197156;192368 +7612/11678;Import BLS secret key in aggregate wallet;0.535457;0.094693;0.630318;196704;187408 +7613/11678;Shows the address of a registered BLS account in aggregate wallet;0.543469;0.083573;0.627118;196708;186140 +7614/11678;Generates new tz4 keys in aggregate wallet;0.551692;0.071907;0.623392;196708;187172 +7615/11678;Lists known BLS aliases in the client's aggregate wallet;0.545313;0.088332;0.63379;196708;185900 +7616/11678;Import BLS secret key;0.55715;0.067959;0.624807;196708;187148 +7617/11678;Shows the address of a registered BLS account;0.558752;0.064192;0.623084;196712;187128 +7618/11678;Generates new tz4 keys;0.5057;0.120336;0.626172;196708;187724 +7619/11678;Add a duplicate address;1.19239;0.197608;1.38937;198048;193708 +7620/11678;Wallet: Import key mnemonic;1.6116;0.273158;1.88293;200740;195984 +7621/11678;Chain id;0.521947;0.107319;0.629374;196712;187200 +7622/11678;config init;0.483773;0.088599;0.572511;192412;178040 +7623/11678;config update;0.592604;0.112198;0.705086;193584;179932 +7624/11678;config update network;1.51603;0.319464;1.83394;388204;563752 +7625/11678;config reset;0.499364;0.072565;0.571933;192456;177756 +7626/11678;config reset consistency;0.88881;0.180862;1.06955;196644;182552 +7627/11678;config reset network;1.5299;0.268699;1.87171;388200;562512 +7628/11678;demo_counter;2.70242;0.528347;3.21745;388200;567896 +7629/11678;demo_noops;2.16375;0.414823;2.57545;388200;563992 +7630/11678;protocol injection and activation;4.38343;0.8118;12.7418;387960;1437956 +7631/11678;protocol activation (protocol already linked to the node);1.57662;0.251528;1.8213;388072;559584 +7632/11678;Test forge block;1.40661;0.243285;1.6491;388200;561612 +7633/11678;mode light no endpoint;0.401677;0.072358;0.474083;196708;185976 +7634/11678;mode light endpoint not in sources;0.418374;0.051906;0.47034;196712;186052 +7635/11678;light supported protocols are the same as the mockup protocols;0.54837;0.083765;0.632084;196712;185812 +7636/11678;(Mockup) Migration (transfer);1.83978;0.352056;2.18939;200988;196844 +7637/11678;(Mockup) List mockup protocols.;0.420517;0.048005;0.468402;197864;186748 +7638/11678;p2p-maintenance-disabled;3.02964;0.517874;18.0044;388504;1207872 +7639/11678;p2p-maintenance-init-expected_connections;11.7;2.03379;2.80894;388076;3752488 +7640/11678;p2p-swap;4.46246;0.778204;2.21181;388372;1933884 +7641/11678;p2p-swap-disable;10.7523;1.89477;14.2232;388376;4530636 +7642/11678;check ip greylisting;2.01759;0.348333;2.35363;388076;930000 +7643/11678;check --advertised-net-port=PORT option;1.79561;0.349707;2.15342;388200;836820 +7644/11678;check preservation of trusted known points and peers;1.84942;0.296724;2.14536;387940;560892 +7645/11678;check non-preservation of known points;2.05897;0.38489;2.44685;388072;562884 +7646/11678;peers with different chain name;1.77119;0.280361;2.03503;376980;814136 +7647/11678;p2p - set a trusted ring;3.7227;0.595445;21.1422;372216;1864168 +7648/11678;Test expected_peer_id;4.84487;0.777075;1.40945;388212;1946156 +7649/11678;Test [octez-admin-client p2p stat];5.65039;0.907903;1.62115;388208;2403468 +7650/11678;p2p-peer-discovery;2.58413;0.476498;2.98208;388324;1208500 +7651/11678;p2p-peer-discovery-disable;2.62291;0.508861;12.9952;388072;1208248 +7652/11678;proxy supported protocols are the same as the mockup protocols;0.534919;0.096219;0.630887;196708;185676 +7653/11678;Test TLS;1.03533;0.225252;1.26757;388196;472552 +7654/11678;snoop codegen;0.332572;0.047831;0.381675;191392;134176 +7655/11678;(Nairobi -> Alpha) constant migration;0.958111;0.156927;1.11311;197992;191588 +7656/11678;protocol migration at level 8;7.29138;1.4977;8.46242;388332;618000 +7657/11678;protocol migration at level 9;7.54828;1.35311;8.56101;388200;619332 +7658/11678;protocol migration at level 10;7.66296;1.43059;8.74576;388072;621992 +7659/11678;protocol migration at level 11;7.77149;1.51012;8.9273;388332;623204 +7660/11678;protocol migration at level 12;7.94408;1.4875;9.08065;388328;625128 +7661/11678;protocol migration at level 13;8.15655;1.50749;9.27804;388200;627656 +7662/11678;protocol migration at level 14;8.26287;1.48325;9.37498;388196;629460 +7663/11678;protocol migration at level 15;8.38041;1.5676;9.57067;388320;630988 +7664/11678;protocol migration at level 16;8.50083;1.62267;9.7205;388204;633684 +7665/11678;chain progress/endorsement of migration block from nairobi to alpha with baker daemons;2.65645;0.507738;10.5277;388200;757464 +7666/11678;baker forked migration blocks from nairobi to alpha;8.22642;1.55742;20.3869;372588;2104460 +7667/11678;manually forked migration blocks from nairobi to alpha;5.37205;0.858682;10.505;388076;1046840 +7668/11678;protocol migration with snapshots;30.1622;5.89764;33.8371;388148;1684696 +7669/11678;protocol activation;5.32119;1.01115;5.26848;387276;942264 +7670/11678;protocol table;3.45727;0.686111;4.08369;388076;938464 +7671/11678;metadata consistency;1.83244;0.356975;2.17448;388200;565940 +7672/11678;amendment: alpha -> injected_test (losers: nairobi);12.3031;2.28961;14.6695;388460;950312 +7673/11678;amendment: alpha -> demo_counter (losers: nairobi);10.9012;2.06493;12.6996;374372;603876 +7674/11678;Nairobi->Alpha: arith - testing to send inbox operation post migration.;4.324;0.902151;5.1176;388188;573340 +7675/11678;Nairobi->Alpha: arith - testing to send internal message with ticket post migration.;2.85945;0.641692;3.4476;388204;566584 +7676/11678;Nairobi->Alpha: arith - Test to cement a commitment made pre migration then publish a new commitment.;7.41966;1.3735;8.55063;388324;585992 +7677/11678;Nairobi->Alpha: arith - Test recover bond with cementation made pre-migration.;10.3062;2.04399;11.9191;388320;611588 +7678/11678;Nairobi->Alpha: arith - Refuting a pre-migration commitment.;10.9992;2.0398;12.6464;388200;590684 +7679/11678;Nairobi->Alpha: arith - Refuting a commitment pre-migration when the game started pre-migration.;11.0401;2.16427;12.8209;388200;597040 +7680/11678;Nairobi->Alpha: arith - node can read data after store migration;6.00989;1.21921;6.9299;388328;646596 +7681/11678;Nairobi->Alpha: arith - node can catch up on protocol migration;5.40329;1.07405;6.35005;388200;639304 +7682/11678;Nairobi->Alpha: arith - dead games are cleaned during migration;9.38814;1.91895;11.0546;388196;605356 +7683/11678;Nairobi->Alpha: wasm_2_0_0 - testing to send inbox operation post migration.;4.45761;0.754965;5.10821;388332;573304 +7684/11678;Nairobi->Alpha: wasm_2_0_0 - testing to send internal message with ticket post migration.;2.945;0.5774;3.46665;388200;567144 +7685/11678;Nairobi->Alpha: wasm_2_0_0 - Test to cement a commitment made pre migration then publish a new commitment.;7.57829;1.33684;8.67489;388204;585708 +7686/11678;Nairobi->Alpha: wasm_2_0_0 - Test recover bond with cementation made pre-migration.;10.5223;1.91552;11.9996;388196;612040 +7687/11678;Nairobi->Alpha: wasm_2_0_0 - Refuting a pre-migration commitment.;10.96;2.12261;12.7057;388328;589980 +7688/11678;Nairobi->Alpha: wasm_2_0_0 - Refuting a commitment pre-migration when the game started pre-migration.;10.9978;2.21476;12.8343;388200;597672 +7689/11678;Nairobi->Alpha: wasm_2_0_0 - node can read data after store migration;6.0842;1.1777;6.96212;388332;649544 +7690/11678;Nairobi->Alpha: wasm_2_0_0 - node can catch up on protocol migration;5.43484;1.02342;6.33118;388124;639904 +7691/11678;Nairobi->Alpha: wasm_2_0_0 - dead games are cleaned during migration;9.38688;1.97491;11.102;388196;604736 +7692/11678;Nairobi->Alpha: test plugin update;4.01966;0.444752;4.42461;373028;582784 +7693/11678;Mumbai->Nairobi: arith - testing to send inbox operation post migration.;4.40323;0.839521;5.12355;388328;572840 +7694/11678;Mumbai->Nairobi: arith - testing to send internal message with ticket post migration.;3.00084;0.526827;3.4747;388328;567452 +7695/11678;Mumbai->Nairobi: arith - Test to cement a commitment made pre migration then publish a new commitment.;7.42461;1.45553;8.62544;388324;586100 +7696/11678;Mumbai->Nairobi: arith - Test recover bond with cementation made pre-migration.;10.3001;2.14211;11.9984;388332;611096 +7697/11678;Mumbai->Nairobi: arith - Refuting a pre-migration commitment.;10.8358;2.28381;12.7403;388452;589872 +7698/11678;Mumbai->Nairobi: arith - Refuting a commitment pre-migration when the game started pre-migration.;11.1478;2.05795;12.8289;388328;597080 +7699/11678;Mumbai->Nairobi: arith - node can read data after store migration;6.06499;1.187;6.95537;388448;648032 +7700/11678;Mumbai->Nairobi: arith - node can catch up on protocol migration;5.38532;1.11078;6.36054;388184;639084 +7701/11678;Mumbai->Nairobi: arith - dead games are cleaned during migration;9.58444;1.78745;11.1057;388456;605004 +7702/11678;Mumbai->Nairobi: wasm_2_0_0 - testing to send inbox operation post migration.;4.3841;0.870603;5.14154;388328;573344 +7703/11678;Mumbai->Nairobi: wasm_2_0_0 - testing to send internal message with ticket post migration.;2.97065;0.539901;3.45837;388196;567220 +7704/11678;Mumbai->Nairobi: wasm_2_0_0 - Test to cement a commitment made pre migration then publish a new commitment.;7.4501;1.40196;8.60162;388328;585720 +7705/11678;Mumbai->Nairobi: wasm_2_0_0 - Test recover bond with cementation made pre-migration.;10.4085;2.02323;11.9994;388456;611736 +7706/11678;Mumbai->Nairobi: wasm_2_0_0 - Refuting a pre-migration commitment.;10.9974;2.07966;12.6868;388332;590640 +7707/11678;Mumbai->Nairobi: wasm_2_0_0 - Refuting a commitment pre-migration when the game started pre-migration.;11.0235;2.14406;12.8003;388456;597288 +7708/11678;Mumbai->Nairobi: wasm_2_0_0 - node can read data after store migration;6.05352;1.23754;6.96647;388328;649164 +7709/11678;Mumbai->Nairobi: wasm_2_0_0 - node can catch up on protocol migration;5.38579;1.1037;6.31118;388196;639708 +7710/11678;Mumbai->Nairobi: wasm_2_0_0 - dead games are cleaned during migration;9.52573;1.88238;11.1281;388332;605720 +7711/11678;Alpha: Test bad annotation;0.562023;0.080019;0.641687;197864;187524 +7712/11678;Mumbai: Test bad annotation;0.57181;0.067601;0.638796;197992;188056 +7713/11678;Nairobi: Test bad annotation;0.572087;0.075758;0.647228;197992;187724 +7714/11678;Alpha: Bad indentation contract is ill-typed;0.550957;0.084502;0.635144;197864;188032 +7715/11678;Mumbai: Bad indentation contract is ill-typed;0.562465;0.07235;0.634235;197856;188164 +7716/11678;Nairobi: Bad indentation contract is ill-typed;0.542269;0.095914;0.637345;197988;187960 +7717/11678;Alpha: Bad indentation contract hash is expected;0.561654;0.083213;0.642003;197864;186144 +7718/11678;Mumbai: Bad indentation contract hash is expected;0.551106;0.095954;0.644351;197864;186144 +7719/11678;Nairobi: Bad indentation contract hash is expected;0.553211;0.092087;0.642988;197988;185876 +7720/11678;Alpha: Formatted bad indentation contract is well-typed;0.705535;0.104181;0.807051;197732;187456 +7721/11678;Mumbai: Formatted bad indentation contract is well-typed;0.674672;0.127447;0.799392;197860;187224 +7722/11678;Nairobi: Formatted bad indentation contract is well-typed;0.685033;0.115912;0.798001;197988;186680 +7723/11678;Alpha: Formatted bad indentation contract hash is expected;0.68455;0.132044;0.813853;197856;187068 +7724/11678;Mumbai: Formatted bad indentation contract hash is expected;0.698807;0.103809;0.799622;197732;187420 +7725/11678;Nairobi: Formatted bad indentation contract hash is expected;0.685287;0.123108;0.805667;197992;187020 +7726/11678;Alpha: baker test;1.32441;0.270447;3.13341;388204;561880 +7727/11678;Mumbai: baker test;1.34255;0.291033;2.92997;388200;561772 +7728/11678;Nairobi: baker test;1.38339;0.225425;2.91752;388200;561788 +7729/11678;Alpha: baker stresstest;2.49764;0.478102;22.1772;388072;691404 +7730/11678;Mumbai: baker stresstest;2.58469;0.467393;21.8694;388204;666856 +7731/11678;Nairobi: baker stresstest;2.50262;0.439979;21.9576;388196;691656 +7732/11678;Alpha: baker stresstest with forced application;2.40899;0.582391;21.9348;388072;694436 +7733/11678;Mumbai: baker stresstest with forced application;2.53707;0.454111;21.8734;388076;669300 +7734/11678;Nairobi: baker stresstest with forced application;2.5347;0.498309;21.9749;388076;698236 +7735/11678;Alpha: No BLS baker test;2.65588;0.447545;3.10365;388200;570836 +7736/11678;Mumbai: No BLS baker test;2.52442;0.598024;3.12254;374376;556516 +7737/11678;Nairobi: No BLS baker test;2.6268;0.474026;3.10159;388200;570268 +7738/11678;Alpha: Baker in RPC-only mode;1.39082;0.246084;3.07884;388072;560916 +7739/11678;Mumbai: Baker in RPC-only mode;1.40529;0.259905;2.92651;388196;560604 +7740/11678;Nairobi: Baker in RPC-only mode;1.37829;0.25595;2.92237;388200;560660 +7741/11678;Alpha: Ignore node mempool;2.57975;0.506095;3.06727;388068;572424 +7742/11678;Mumbai: Ignore node mempool;2.62449;0.508873;3.11411;388200;573232 +7743/11678;Nairobi: Ignore node mempool;2.6019;0.494542;3.07834;388200;572892 +7744/11678;Alpha: external operations, missing operations (empty) file;1.47127;0.252983;1.70977;388200;563124 +7745/11678;Mumbai: external operations, missing operations (empty) file;1.51304;0.220752;1.71677;388204;562900 +7746/11678;Nairobi: external operations, missing operations (empty) file;1.41718;0.300036;1.70172;388196;562592 +7747/11678;Alpha: external operations, missing operations (empty) http;1.44188;0.269256;1.69592;388200;562588 +7748/11678;Mumbai: external operations, missing operations (empty) http;1.47338;0.261182;1.71609;388200;562588 +7749/11678;Nairobi: external operations, missing operations (empty) http;1.47476;0.23607;1.69474;374376;548616 +7750/11678;Alpha: external operations, missing operations (absent) file;1.38702;0.32824;1.69936;388204;562268 +7751/11678;Mumbai: external operations, missing operations (absent) file;1.45696;0.266364;1.70597;388200;562844 +7752/11678;Nairobi: external operations, missing operations (absent) file;1.49832;0.259053;1.73981;388200;562816 +7753/11678;Alpha: external operations, missing operations (absent) http;1.43786;0.306245;1.72965;388200;562340 +7754/11678;Mumbai: external operations, missing operations (absent) http;1.47651;0.251225;1.71098;374248;548640 +7755/11678;Nairobi: external operations, missing operations (absent) http;1.4546;0.275798;1.71464;388196;562464 +7756/11678;Alpha: external operations, singleton operation file;1.85285;0.31752;2.14985;388192;565468 +7757/11678;Mumbai: external operations, singleton operation file;1.87625;0.34024;2.19643;388452;565564 +7758/11678;Nairobi: external operations, singleton operation file;1.93458;0.265186;2.17885;388328;565672 +7759/11678;Alpha: external operations, singleton operation http;1.82052;0.365687;2.16647;388452;565732 +7760/11678;Mumbai: external operations, singleton operation http;1.7846;0.404285;2.16882;388328;565476 +7761/11678;Nairobi: external operations, singleton operation http;1.83061;0.372971;2.18324;388332;565860 +4/3917;Alpha: baking ordering;3.01697;0.62625;3.59706;388328;570316 +5/3917;Mumbai: baking ordering;2.99005;0.613948;3.55256;388328;569440 +6/3917;Nairobi: baking ordering;3.08423;0.594225;3.6371;388196;568468 +7/3917;Alpha: wrong branch operation dismissal;2.34031;0.42061;3.74971;374116;550676 +8/3917;Mumbai: wrong branch operation dismissal;2.36551;0.421283;3.77385;388072;564360 +9/3917;Nairobi: wrong branch operation dismissal;2.37373;0.426504;3.92407;388204;564864 +10/3917;Alpha: ensure we can still bake with a faulty operation;2.64615;0.477503;3.09352;388328;566648 +11/3917;Mumbai: ensure we can still bake with a faulty operation;2.63562;0.529047;3.12988;388192;566476 +12/3917;Nairobi: ensure we can still bake with a faulty operation;2.69761;0.419116;3.08503;388328;567160 +13/3917;Alpha: Baking minimal timestamp (false);1.25181;0.284031;1.53374;388200;561976 +14/3917;Nairobi: Baking minimal timestamp (false);1.32183;0.237192;1.55772;374248;547928 +15/3917;Alpha: Baking minimal timestamp (true);1.31817;0.267559;1.58137;388068;563324 +16/3917;Nairobi: Baking minimal timestamp (true);1.2869;0.255824;1.5387;388076;563988 +17/3917;Alpha: External operations are ordered (1 transfers, max 1 operations);3.08281;0.56175;3.62284;388196;607852 +18/3917;Mumbai: External operations are ordered (1 transfers, max 1 operations);3.00712;0.562292;3.5428;388324;607060 +19/3917;Nairobi: External operations are ordered (1 transfers, max 1 operations);2.96479;0.571047;3.51051;388064;607200 +20/3917;Alpha: External operations are ordered (2 transfers, max 1 operations);3.10547;0.681055;3.75175;388204;608488 +21/3917;Mumbai: External operations are ordered (2 transfers, max 1 operations);3.19597;0.546407;3.7156;388192;608504 +22/3917;Nairobi: External operations are ordered (2 transfers, max 1 operations);3.09491;0.65894;3.72653;388328;608708 +23/3917;Alpha: External operations are ordered (2 transfers, max 2 operations);3.16168;0.584666;3.71536;388200;608292 +24/3917;Mumbai: External operations are ordered (2 transfers, max 2 operations);3.22948;0.533393;3.73351;388332;595060 +25/3917;Nairobi: External operations are ordered (2 transfers, max 2 operations);3.12416;0.600977;3.69785;388200;608228 +26/3917;Alpha: External operations are ordered (3 transfers, max 1 operations);3.29853;0.592059;3.8551;388204;609216 +27/3917;Mumbai: External operations are ordered (3 transfers, max 1 operations);3.28128;0.604119;3.85018;388456;609228 +28/3917;Nairobi: External operations are ordered (3 transfers, max 1 operations);3.24521;0.664608;3.87486;388332;608904 +29/3917;Alpha: External operations are ordered (3 transfers, max 2 operations);3.27938;0.628597;3.86925;388200;609920 +30/3917;Mumbai: External operations are ordered (3 transfers, max 2 operations);3.34967;0.541473;3.85435;388076;609304 +31/3917;Nairobi: External operations are ordered (3 transfers, max 2 operations);3.24435;0.660546;3.86898;388456;609912 +32/3917;Alpha: External operations are ordered (3 transfers, max 3 operations);3.23763;0.656246;3.85868;388328;609440 +33/3917;Mumbai: External operations are ordered (3 transfers, max 3 operations);3.25821;0.660016;3.88572;388332;609692 +34/3917;Nairobi: External operations are ordered (3 transfers, max 3 operations);3.28763;0.630808;3.87924;388332;608824 +35/3917;Alpha: External operations are ordered (4 transfers, max 1 operations);3.38833;0.707395;4.05749;388328;611824 +36/3917;Mumbai: External operations are ordered (4 transfers, max 1 operations);3.36974;0.725398;4.05263;388452;610760 +37/3917;Nairobi: External operations are ordered (4 transfers, max 1 operations);3.3094;0.752968;4.01767;388316;610564 +38/3917;Alpha: External operations are ordered (4 transfers, max 2 operations);3.41964;0.630169;4.00847;388328;610316 +39/3917;Mumbai: External operations are ordered (4 transfers, max 2 operations);3.41258;0.66463;4.03522;388328;596368 +40/3917;Nairobi: External operations are ordered (4 transfers, max 2 operations);3.44906;0.6187;4.02821;388332;611056 +41/3917;Alpha: External operations are ordered (4 transfers, max 3 operations);3.41007;0.64013;4.01072;388200;609472 +42/3917;Mumbai: External operations are ordered (4 transfers, max 3 operations);3.38173;0.706258;4.04607;388456;609936 +43/3917;Nairobi: External operations are ordered (4 transfers, max 3 operations);3.39083;0.64736;3.99328;388324;609924 +44/3917;Alpha: External operations are ordered (4 transfers, max 4 operations);3.34318;0.715288;4.01945;388328;610908 +45/3917;Mumbai: External operations are ordered (4 transfers, max 4 operations);3.38817;0.714757;4.05602;388332;610700 +46/3917;Nairobi: External operations are ordered (4 transfers, max 4 operations);3.42521;0.645982;4.0331;388200;611108 +47/3917;Alpha: External operations are ordered (5 transfers, max 1 operations);3.56474;0.678052;4.20094;388204;611676 +48/3917;Mumbai: External operations are ordered (5 transfers, max 1 operations);3.44171;0.785345;4.17586;388324;611856 +49/3917;Nairobi: External operations are ordered (5 transfers, max 1 operations);3.4752;0.745682;4.17412;388456;610900 +50/3917;Alpha: External operations are ordered (5 transfers, max 2 operations);3.54378;0.745508;4.24644;388328;611276 +51/3917;Mumbai: External operations are ordered (5 transfers, max 2 operations);3.5727;0.672498;4.20262;388328;598760 +52/3917;Nairobi: External operations are ordered (5 transfers, max 2 operations);3.49483;0.763334;4.21161;388328;611956 +53/3917;Alpha: External operations are ordered (5 transfers, max 3 operations);3.4914;0.742503;4.19142;388332;611128 +54/3917;Mumbai: External operations are ordered (5 transfers, max 3 operations);3.54025;0.721281;4.21246;388328;611324 +55/3917;Nairobi: External operations are ordered (5 transfers, max 3 operations);3.55138;0.673864;4.17816;388204;611384 +56/3917;Alpha: External operations are ordered (5 transfers, max 4 operations);3.57547;0.679853;4.21376;388328;611080 +57/3917;Mumbai: External operations are ordered (5 transfers, max 4 operations);3.5417;0.709717;4.20574;388332;611292 +58/3917;Nairobi: External operations are ordered (5 transfers, max 4 operations);3.54402;0.682227;4.18441;388332;613044 +59/3917;Alpha: External operations are ordered (5 transfers, max 5 operations);3.5336;0.678933;4.1688;388328;611000 +60/3917;Mumbai: External operations are ordered (5 transfers, max 5 operations);3.53643;0.665845;4.15359;388460;611192 +61/3917;Nairobi: External operations are ordered (5 transfers, max 5 operations);3.52309;0.698514;4.17798;388328;611120 +62/3917;Alpha: node initialization (archive mode);2.6901;0.466032;3.09749;388196;576364 +63/3917;Mumbai: node initialization (archive mode);2.65809;0.49934;3.09568;388068;576864 +64/3917;Nairobi: node initialization (archive mode);2.59369;0.541092;3.07479;388196;576720 +65/3917;Alpha: node initialization (full mode);2.65606;0.511837;3.10073;388064;579772 +66/3917;Mumbai: node initialization (full mode);2.62168;0.536152;3.08902;388204;580568 +67/3917;Nairobi: node initialization (full mode);2.63738;0.537242;3.11306;388072;581068 +68/3917;Alpha: node initialization (rolling mode);2.62877;0.545032;3.11403;388200;575864 +69/3917;Mumbai: node initialization (rolling mode);2.6712;0.495916;3.10536;388200;575820 +70/3917;Nairobi: node initialization (rolling mode);2.63084;0.536068;3.10718;374380;563008 +71/3917;Alpha: RPC /chain//blocks//context/big_maps/?offset=[int]&length=[int];3.13118;0.586383;3.69381;388328;573584 +72/3917;Mumbai: RPC /chain//blocks//context/big_maps/?offset=[int]&length=[int];3.08362;0.642619;3.69926;388328;572412 +73/3917;Nairobi: RPC /chain//blocks//context/big_maps/?offset=[int]&length=[int];3.11815;0.619492;3.714;388324;573480 +74/3917;Alpha: Test EMPTY_BIG_MAP arity error;0.54766;0.088538;0.635861;197856;188160 +75/3917;Mumbai: Test EMPTY_BIG_MAP arity error;0.540929;0.104208;0.644795;197864;188840 +76/3917;Nairobi: Test EMPTY_BIG_MAP arity error;0.56215;0.084335;0.645809;197988;188264 +77/3917;Alpha: node synchronization (archive / archive);7.4797;1.4292;7.864;387176;934620 +78/3917;Mumbai: node synchronization (archive / archive);7.5314;1.47737;7.9159;387688;949392 +79/3917;Nairobi: node synchronization (archive / archive);7.53651;1.39161;7.91394;387308;949016 +80/3917;Alpha: node synchronization (archive / full);7.46775;1.44122;7.86645;387688;948328 +81/3917;Mumbai: node synchronization (archive / full);7.57846;1.45201;7.99696;388200;950516 +82/3917;Nairobi: node synchronization (archive / full);7.55381;1.39448;7.8933;386792;948380 +83/3917;Alpha: node synchronization (archive / rolling);7.43355;1.49396;7.93448;387664;948832 +84/3917;Mumbai: node synchronization (archive / rolling);7.52027;1.52505;7.95488;387816;935524 +85/3917;Nairobi: node synchronization (archive / rolling);7.50531;1.46014;7.9458;388204;935312 +86/3917;Alpha: node synchronization (full / archive);7.56352;1.59916;8.10163;387968;948928 +87/3917;Mumbai: node synchronization (full / archive);7.70695;1.52038;8.10754;388200;948924 +88/3917;Nairobi: node synchronization (full / archive);7.76192;1.45159;8.19759;388328;950384 +89/3917;Alpha: node synchronization (full / full);7.70221;1.46374;8.10857;387688;947976 +90/3917;Mumbai: node synchronization (full / full);7.64606;1.56339;8.11256;386920;948832 +91/3917;Nairobi: node synchronization (full / full);7.58664;1.49962;8.08158;388204;948820 +92/3917;Alpha: node synchronization (full / rolling);7.58471;1.48446;8.01612;387144;948172 +93/3917;Mumbai: node synchronization (full / rolling);7.61606;1.54116;8.0745;387564;948976 +94/3917;Nairobi: node synchronization (full / rolling);7.61587;1.45458;8.06362;388072;934608 +95/3917;Alpha: node synchronization (rolling_0 / archive);7.5283;1.48235;7.82645;388072;948728 +96/3917;Mumbai: node synchronization (rolling_0 / archive);7.51349;1.55992;7.8543;388200;950352 +97/3917;Nairobi: node synchronization (rolling_0 / archive);7.51875;1.50087;7.84876;387308;949256 +98/3917;Alpha: node synchronization (rolling_0 / rolling_0);7.56826;1.44017;7.83566;387172;948136 +99/3917;Mumbai: node synchronization (rolling_0 / rolling_0);7.50667;1.46763;7.77835;387432;948720 +100/3917;Nairobi: node synchronization (rolling_0 / rolling_0);7.51479;1.49036;7.82784;387464;949004 +101/3917;Alpha: node synchronization (rolling_0 / full);7.49324;1.50853;7.83817;388212;950388 +102/3917;Mumbai: node synchronization (rolling_0 / full);7.53808;1.55097;7.87702;388200;949232 +103/3917;Nairobi: node synchronization (rolling_0 / full);7.40598;1.61388;7.82262;388084;950272 +104/3917;Alpha: cache annotation consistency;3.00885;0.5599;3.54583;388200;569788 +105/3917;Mumbai: cache annotation consistency;3.05321;0.53193;3.55818;388332;569748 +106/3917;Nairobi: cache annotation consistency;3.04203;0.561668;3.57747;388200;569480 +107/3917;Alpha: cache consistency on singleprocess reorg;2.84913;0.463475;28.3607;388204;843188 +108/3917;Mumbai: cache consistency on singleprocess reorg;3.92665;0.453687;29.513;388076;846572 +109/3917;Nairobi: cache consistency on singleprocess reorg;3.02852;0.466061;29.3568;388072;856520 +110/3917;Alpha: Simulation of successful operation;1.57391;0.284725;1.84899;388324;565044 +111/3917;Mumbai: Simulation of successful operation;1.55536;0.307395;1.85286;388328;564920 +112/3917;Nairobi: Simulation of successful operation;1.55526;0.325584;1.87083;388332;565400 +113/3917;Alpha: Simulation of successful operation batch;1.55461;0.335045;1.87923;388332;564980 +114/3917;Mumbai: Simulation of successful operation batch;1.59042;0.319388;1.89879;374504;551872 +115/3917;Nairobi: Simulation of successful operation batch;1.59494;0.304837;1.87662;374380;549776 +116/3917;Alpha: Simulation of failing operation;1.59841;0.284837;1.86291;388328;563964 +117/3917;Mumbai: Simulation of failing operation;1.58042;0.293241;1.85782;388312;563272 +118/3917;Nairobi: Simulation of failing operation;1.56829;0.318385;1.86858;388328;564256 +119/3917;Alpha: Simulation of failing operation with force;1.57527;0.309438;1.8657;388200;563596 +120/3917;Mumbai: Simulation of failing operation with force;1.6089;0.299154;1.88538;374504;550096 +121/3917;Nairobi: Simulation of failing operation with force;1.56805;0.286695;1.84365;388328;564676 +122/3917;Alpha: Simulation of failing batch with force;1.57374;0.312608;1.87475;388328;565188 +123/3917;Mumbai: Simulation of failing batch with force;1.61618;0.269003;1.87211;388332;565008 +124/3917;Nairobi: Simulation of failing batch with force;1.5945;0.299755;1.88338;388328;565172 +125/3917;Alpha: Simulation of first failing operation in batch with force;1.55272;0.319822;1.86259;388204;564988 +126/3917;Mumbai: Simulation of first failing operation in batch with force;1.57712;0.297919;1.8636;388332;565568 +127/3917;Nairobi: Simulation of first failing operation in batch with force;1.64174;0.25004;1.88112;388192;565640 +128/3917;Alpha: Injecting of failing operation with force;1.58097;0.285855;1.85673;388328;564356 +129/3917;Mumbai: Injecting of failing operation with force;1.62318;0.261967;1.87576;388332;565420 +130/3917;Nairobi: Injecting of failing operation with force;1.52602;0.323931;1.84095;374500;551060 +131/3917;Alpha: Injecting of failing operations batch with force;1.60883;0.267539;1.86798;388324;564580 +132/3917;Mumbai: Injecting of failing operations batch with force;1.53886;0.333177;1.86178;374500;551616 +133/3917;Nairobi: Injecting of failing operations batch with force;1.59672;0.277019;1.86603;388328;566180 +134/3917;Alpha: Transfer to public key hash alias;2.38367;0.421628;2.63924;388200;657204 +135/3917;Mumbai: Transfer to public key hash alias;2.37612;0.417165;2.62873;388328;657708 +136/3917;Nairobi: Transfer to public key hash alias;2.36552;0.443272;2.64358;388328;657404 +137/3917;Alpha: Transfer from public key hash alias;2.76758;0.551824;3.29337;388332;568872 +138/3917;Mumbai: Transfer from public key hash alias;2.74336;0.555897;3.2708;388328;569748 +139/3917;Nairobi: Transfer from public key hash alias;2.73808;0.53237;3.24393;388200;569204 +140/3917;Alpha: Transfer from and to accounts;19.719;3.75602;15.3741;389352;1229872 +141/3917;Mumbai: Transfer from and to accounts;19.6933;3.7266;15.3204;389480;1229964 +142/3917;Nairobi: Transfer from and to accounts;19.5251;3.84712;15.3323;389352;1229652 +143/3917;Alpha: Batch transfers;13.3684;2.69421;7.64871;389356;1229752 +144/3917;Mumbai: Batch transfers;13.6128;2.50302;7.66882;389348;1227204 +145/3917;Nairobi: Batch transfers;13.6834;2.47268;7.7131;389480;1229340 +146/3917;Alpha: Set delegate forbidden on tz4;2.15987;0.382791;2.51492;388332;568424 +147/3917;Mumbai: Set delegate forbidden on tz4;2.13035;0.425621;2.52802;388332;569852 +148/3917;Nairobi: Set delegate forbidden on tz4;2.10067;0.417337;2.50044;388324;566332 +149/3917;Alpha: Test transfer with too low balance;4.78512;0.962155;4.70937;389092;848500 +150/3917;Mumbai: Test transfer with too low balance;4.88838;0.909531;4.7512;389092;850408 +151/3917;Nairobi: Test transfer with too low balance;4.91205;0.894081;4.76564;375276;835168 +152/3917;Alpha: Simple transfer from bootstrap5 to bootstrap1;3.26913;0.652712;3.89044;388200;574300 +153/3917;Mumbai: Simple transfer from bootstrap5 to bootstrap1;3.28779;0.688549;3.94167;388192;574892 +154/3917;Nairobi: Simple transfer from bootstrap5 to bootstrap1;3.27117;0.657737;3.89594;374376;560580 +155/3917;Alpha: Check consumed gas of origination dry run;8.61329;1.21285;10.2509;389356;776436 +156/3917;Mumbai: Check consumed gas of origination dry run;8.60609;1.25037;10.1874;389608;778424 +157/3917;Nairobi: Check consumed gas of origination dry run;8.51207;1.2935;10.283;389732;776924 +158/3917;Alpha: Test client signatures and on chain check;5.31653;1.01668;5.26136;389356;849792 +159/3917;Mumbai: Test client signatures and on chain check;5.22306;1.09376;5.2457;389352;851128 +160/3917;Nairobi: Test client signatures and on chain check;5.25251;1.03032;5.22903;389228;852240 +161/3917;Alpha: Test client message signatures;2.15976;0.478029;2.62912;387948;566208 +162/3917;Mumbai: Test client message signatures;2.1752;0.414592;2.58723;388072;562888 +163/3917;Nairobi: Test client message signatures;2.21012;0.400976;2.60991;387940;563452 +164/3917;Alpha: Test account activation;2.25938;0.436562;2.66783;388196;567628 +165/3917;Mumbai: Test account activation;2.29146;0.434413;2.69838;388328;567736 +166/3917;Nairobi: Test account activation;2.22915;0.446135;2.6511;388204;567868 +167/3917;Alpha: additional bootstrap accounts;1.6413;0.34974;1.99122;388196;563908 +168/3917;Mumbai: additional bootstrap accounts;1.6719;0.323329;1.99385;388456;562388 +169/3917;Nairobi: additional bootstrap accounts;1.68262;0.305429;1.98697;388204;563908 +170/3917;Alpha: test fa1.2, check contract implements FA1.2 interface [mini_scenarios/fa12_reference];0.962078;0.196537;1.15037;204388;192900 +171/3917;Mumbai: test fa1.2, check contract implements FA1.2 interface [mini_scenarios/fa12_reference];0.977025;0.180855;1.14949;204132;193188 +172/3917;Nairobi: test fa1.2, check contract implements FA1.2 interface [mini_scenarios/fa12_reference];0.965639;0.195179;1.15216;204640;193668 +173/3917;Alpha: test fa1.2, check contract implements FA1.2 interface [mini_scenarios/lqt_fa12.mligo];0.98358;0.176293;1.15219;200804;189796 +174/3917;Mumbai: test fa1.2, check contract implements FA1.2 interface [mini_scenarios/lqt_fa12.mligo];0.965073;0.191847;1.14917;200804;189980 +175/3917;Nairobi: test fa1.2, check contract implements FA1.2 interface [mini_scenarios/lqt_fa12.mligo];0.955614;0.195503;1.14348;201184;190492 +176/3917;Alpha: test fa1.2, check contract fail;0.698506;0.11995;0.815688;198628;187552 +177/3917;Mumbai: test fa1.2, check contract fail;0.693543;0.120034;0.810642;198496;187384 +178/3917;Nairobi: test fa1.2, check contract fail;0.710639;0.091832;0.801509;198760;189568 +179/3917;Alpha: test fa1.2, get balance offchain [mini_scenarios/fa12_reference];0.963563;0.197968;1.15785;204264;194836 +180/3917;Mumbai: test fa1.2, get balance offchain [mini_scenarios/fa12_reference];0.984303;0.171259;1.14798;204128;193196 +181/3917;Nairobi: test fa1.2, get balance offchain [mini_scenarios/fa12_reference];0.984465;0.18462;1.16065;204640;193400 +182/3917;Alpha: test fa1.2, get balance offchain [mini_scenarios/lqt_fa12.mligo];0.972827;0.168195;1.13333;200804;190384 +183/3917;Mumbai: test fa1.2, get balance offchain [mini_scenarios/lqt_fa12.mligo];0.989043;0.168547;1.1497;200804;190172 +184/3917;Nairobi: test fa1.2, get balance offchain [mini_scenarios/lqt_fa12.mligo];0.969392;0.17108;1.13344;201316;190088 +185/3917;Alpha: test fa1.2, get allowance offchain [mini_scenarios/fa12_reference];0.98835;0.175225;1.15505;204264;193504 +186/3917;Mumbai: test fa1.2, get allowance offchain [mini_scenarios/fa12_reference];0.972133;0.187727;1.15213;204136;192964 +187/3917;Nairobi: test fa1.2, get allowance offchain [mini_scenarios/fa12_reference];0.951022;0.208538;1.1517;204644;193508 +188/3917;Alpha: test fa1.2, get allowance offchain [mini_scenarios/lqt_fa12.mligo];0.962548;0.164611;1.12485;200804;192060 +189/3917;Mumbai: test fa1.2, get allowance offchain [mini_scenarios/lqt_fa12.mligo];0.920594;0.218451;1.13547;200804;191600 +190/3917;Nairobi: test fa1.2, get allowance offchain [mini_scenarios/lqt_fa12.mligo];0.98035;0.164871;1.14269;201320;191800 +191/3917;Alpha: test fa1.2, get total_supply offchain [mini_scenarios/fa12_reference];0.977929;0.176154;1.15111;204260;195216 +192/3917;Mumbai: test fa1.2, get total_supply offchain [mini_scenarios/fa12_reference];0.976299;0.17622;1.14935;204132;194996 +193/3917;Nairobi: test fa1.2, get total_supply offchain [mini_scenarios/fa12_reference];0.958273;0.197987;1.1528;204644;195460 +194/3917;Alpha: test fa1.2, get total_supply offchain [mini_scenarios/lqt_fa12.mligo];0.955589;0.182592;1.13581;200808;192008 +195/3917;Mumbai: test fa1.2, get total_supply offchain [mini_scenarios/lqt_fa12.mligo];0.945671;0.198881;1.14096;200932;191796 +196/3917;Nairobi: test fa1.2, get total_supply offchain [mini_scenarios/lqt_fa12.mligo];0.950564;0.183395;1.13131;201448;191880 +197/3917;Alpha: test fa1.2, get balance callback [mini_scenarios/fa12_reference];1.08885;0.22046;1.30536;204392;195288 +198/3917;Mumbai: test fa1.2, get balance callback [mini_scenarios/fa12_reference];1.09771;0.22339;1.31665;204132;194884 +199/3917;Nairobi: test fa1.2, get balance callback [mini_scenarios/fa12_reference];1.08965;0.216381;1.30186;204644;195284 +200/3917;Alpha: test fa1.2, get balance callback [mini_scenarios/lqt_fa12.mligo];1.09183;0.204717;1.29294;200808;193744 +201/3917;Mumbai: test fa1.2, get balance callback [mini_scenarios/lqt_fa12.mligo];1.06764;0.232937;1.29692;200804;193664 +202/3917;Nairobi: test fa1.2, get balance callback [mini_scenarios/lqt_fa12.mligo];1.14684;0.183247;1.32202;201312;191308 +203/3917;Alpha: test fa1.2, get allowance callback [mini_scenarios/fa12_reference];1.07401;0.248457;1.31808;204264;195316 +204/3917;Mumbai: test fa1.2, get allowance callback [mini_scenarios/fa12_reference];1.06626;0.23945;1.30169;204136;195164 +205/3917;Nairobi: test fa1.2, get allowance callback [mini_scenarios/fa12_reference];1.0868;0.216441;1.29869;204640;195400 +206/3917;Alpha: test fa1.2, get allowance callback [mini_scenarios/lqt_fa12.mligo];1.0802;0.22367;1.30001;200808;193088 +207/3917;Mumbai: test fa1.2, get allowance callback [mini_scenarios/lqt_fa12.mligo];1.10203;0.207743;1.30601;200672;193348 +208/3917;Nairobi: test fa1.2, get allowance callback [mini_scenarios/lqt_fa12.mligo];1.05434;0.245129;1.29573;201320;193740 +209/3917;Alpha: test fa1.2, get total_supply callback [mini_scenarios/fa12_reference];1.09115;0.225239;1.31332;204264;195480 +210/3917;Mumbai: test fa1.2, get total_supply callback [mini_scenarios/fa12_reference];1.09645;0.225082;1.3179;204132;194820 +211/3917;Nairobi: test fa1.2, get total_supply callback [mini_scenarios/fa12_reference];1.09048;0.227865;1.31474;204648;195216 +212/3917;Alpha: test fa1.2, get total_supply callback [mini_scenarios/lqt_fa12.mligo];1.09882;0.197153;1.29281;200808;192944 +213/3917;Mumbai: test fa1.2, get total_supply callback [mini_scenarios/lqt_fa12.mligo];1.11531;0.19216;1.30383;200808;193140 +214/3917;Nairobi: test fa1.2, get total_supply callback [mini_scenarios/lqt_fa12.mligo];1.0769;0.216025;1.29024;201312;192660 +215/3917;Alpha: test fa1.2, test incremental [mini_scenarios/fa12_reference];4.92983;1.07841;5.99786;219884;216832 +216/3917;Mumbai: test fa1.2, test incremental [mini_scenarios/fa12_reference];4.8761;1.09905;5.96563;219944;216252 +217/3917;Nairobi: test fa1.2, test incremental [mini_scenarios/fa12_reference];4.87146;1.12231;5.98454;219936;216560 +218/3917;Alpha: test fa1.2, test incremental [mini_scenarios/lqt_fa12.mligo];4.88052;1.07512;5.94009;217368;213396 +219/3917;Mumbai: test fa1.2, test incremental [mini_scenarios/lqt_fa12.mligo];4.82796;1.14662;5.96502;219816;215704 +220/3917;Nairobi: test fa1.2, test incremental [mini_scenarios/lqt_fa12.mligo];4.89063;1.07483;5.95567;219936;215896 +221/3917;Alpha: Test remember contract;1.16076;0.267621;1.42718;197732;192924 +222/3917;Mumbai: Test remember contract;1.17872;0.240002;1.41771;197924;193220 +223/3917;Nairobi: Test remember contract;1.18529;0.240876;1.42523;197984;193208 +224/3917;Alpha: Run view `add_v` with 10;0.687421;0.116455;0.802765;198888;189176 +225/3917;Mumbai: Run view `add_v` with 10;0.710984;0.115325;0.823023;198632;187532 +226/3917;Nairobi: Run view `add_v` with 10;0.667876;0.132098;0.798763;198760;189056 +227/3917;Alpha: Run view `mul_v` with 10;0.677686;0.130997;0.80743;198884;189840 +228/3917;Mumbai: Run view `mul_v` with 10;0.701111;0.100568;0.800603;198628;189180 +229/3917;Nairobi: Run view `mul_v` with 10;0.668079;0.136027;0.802952;198880;189200 +230/3917;Alpha: Run view `value` without input;0.667288;0.143644;0.809554;198888;189404 +231/3917;Mumbai: Run view `value` without input;0.69664;0.104193;0.800134;198632;189484 +232/3917;Nairobi: Run view `value` without input;0.710881;0.100221;0.809636;198628;189396 +233/3917;Alpha: Run view `v_entrypoint` with 10;0.704951;0.103962;0.808056;199140;189176 +234/3917;Mumbai: Run view `v_entrypoint` with 10;0.67764;0.124304;0.800178;198756;189408 +235/3917;Nairobi: Run view `v_entrypoint` with 10;0.682651;0.131515;0.808389;198756;187588 +236/3917;Alpha: Run view `my_external_view` with 10;0.713664;0.103909;0.815735;198880;189368 +237/3917;Mumbai: Run view `my_external_view` with 10;0.709007;0.099536;0.806463;198500;189204 +238/3917;Nairobi: Run view `my_external_view` with 10;0.68797;0.1166;0.803552;198888;189152 +239/3917;Alpha: Run view calling another contract;1.15543;0.275159;1.42802;198884;193008 +240/3917;Mumbai: Run view calling another contract;1.16181;0.271054;1.4303;198760;192940 +241/3917;Nairobi: Run view calling another contract;1.18198;0.256052;1.43498;198884;193476 +242/3917;Alpha: Run view on implicit account;0.552202;0.092686;0.643142;197860;187872 +243/3917;Mumbai: Run view on implicit account;0.555476;0.095012;0.647397;197988;185976 +244/3917;Nairobi: Run view on implicit account;0.55374;0.084104;0.636472;197992;188068 +245/3917;Alpha: Run view on non existing contract;0.544492;0.090866;0.634864;197988;187796 +246/3917;Mumbai: Run view on non existing contract;0.542991;0.09593;0.638241;197988;187880 +247/3917;Nairobi: Run view on non existing contract;0.562013;0.084497;0.646012;197988;188448 +248/3917;Alpha: Run on non existing view `unknown`;0.698397;0.10823;0.80575;199016;189676 +249/3917;Mumbai: Run on non existing view `unknown`;0.708044;0.104746;0.81195;198756;189484 +250/3917;Nairobi: Run on non existing view `unknown`;0.697252;0.112125;0.808279;198760;189620 +251/3917;Alpha: Run view `loop` with default gas limit;0.703793;0.120025;0.822052;199268;191144 +252/3917;Mumbai: Run view `loop` with default gas limit;0.723253;0.10404;0.826036;199144;190524 +253/3917;Nairobi: Run view `loop` with default gas limit;0.701066;0.135703;0.835137;199268;190996 +254/3917;Alpha: Run view `loop` with unlimited gas;0.696906;0.135395;0.830448;198884;190496 +255/3917;Mumbai: Run view `loop` with unlimited gas;0.674527;0.144434;0.817448;198760;191060 +256/3917;Nairobi: Run view `loop` with unlimited gas;0.75275;0.083432;0.833439;198884;188640 +257/3917;Alpha: Test client simulation;1.78;0.332347;2.10885;200992;196776 +258/3917;Mumbai: Test client simulation;1.75694;0.367826;2.1201;199960;195652 +259/3917;Nairobi: Test client simulation;1.74298;0.381456;2.11983;200220;195948 +260/3917;Alpha: Run `comparable_unit`;0.695877;0.107022;0.800633;197860;187412 +261/3917;Mumbai: Run `comparable_unit`;0.700001;0.116029;0.813432;197860;186952 +262/3917;Nairobi: Run `comparable_unit`;0.676375;0.131987;0.805811;198120;187284 +263/3917;Alpha: Run `comparable_options`;0.95917;0.167684;1.12296;197728;189208 +264/3917;Mumbai: Run `comparable_options`;0.946042;0.191577;1.1347;197864;189180 +265/3917;Nairobi: Run `comparable_options`;0.941784;0.163991;1.10493;197992;191244 +266/3917;Alpha: Run `comparable_or`;1.06343;0.204057;1.26617;197860;192204 +267/3917;Mumbai: Run `comparable_or`;1.08849;0.179743;1.26715;197988;192688 +268/3917;Nairobi: Run `comparable_or`;1.06172;0.199817;1.26058;197988;192388 +269/3917;Alpha: Run `comparable_pair`;2.63485;0.538619;3.16859;206236;202012 +270/3917;Mumbai: Run `comparable_pair`;2.5956;0.557316;3.15043;202916;198680 +271/3917;Nairobi: Run `comparable_pair`;2.53511;0.595658;3.12805;203040;198644 +272/3917;Alpha: Run `order_of_pairs`;0.68524;0.108456;0.792831;197736;189020 +273/3917;Mumbai: Run `order_of_pairs`;0.698601;0.096263;0.794231;197856;189668 +274/3917;Nairobi: Run `order_of_pairs`;0.660745;0.135117;0.795388;197988;188640 +275/3917;Alpha: Run `comparable_chain_id`;0.926153;0.192178;1.11551;197992;190968 +276/3917;Mumbai: Run `comparable_chain_id`;0.919741;0.183601;1.10223;197860;191368 +277/3917;Nairobi: Run `comparable_chain_id`;0.936412;0.164162;1.09975;197988;190928 +278/3917;Alpha: Run `comparable_signature`;1.19234;0.252163;1.44085;197732;191600 +279/3917;Mumbai: Run `comparable_signature`;1.21775;0.216662;1.43308;197860;193144 +280/3917;Nairobi: Run `comparable_signature`;1.18867;0.256535;1.44174;197988;191396 +281/3917;Alpha: Run `comparable_key`;0.769975;0.188222;0.957197;197860;189764 +282/3917;Mumbai: Run `comparable_key`;0.820571;0.140217;0.960216;197860;189768 +283/3917;Nairobi: Run `comparable_key`;0.810824;0.143585;0.953537;197992;189996 +284/3917;Alpha: Run `comparable_key_different_schemes`;1.94969;0.420762;2.3688;201252;197156 +285/3917;Mumbai: Run `comparable_key_different_schemes`;1.92834;0.447669;2.37431;201376;197576 +286/3917;Nairobi: Run `comparable_key_different_schemes`;1.93882;0.435849;2.37253;201380;197404 +287/3917;Alpha: update consensus key;12.5519;2.56379;14.7448;388200;616432 +288/3917;Mumbai: update consensus key;12.4091;2.37542;14.4191;374380;602544 +289/3917;Nairobi: update consensus key;12.2311;2.51602;14.4065;388200;628224 +290/3917;Alpha: Test set consensus key - baker is not delegate;3.42998;0.770466;4.13177;388332;582132 +291/3917;Mumbai: Test set consensus key - baker is not delegate;3.56828;0.627034;4.10986;388324;582000 +292/3917;Nairobi: Test set consensus key - baker is not delegate;3.48811;0.725719;4.13815;388196;582328 +293/3917;Alpha: Test set consensus key - baker is delegate;3.59636;0.639637;4.16033;388192;582092 +294/3917;Mumbai: Test set consensus key - baker is delegate;3.54763;0.674292;4.12827;388328;581860 +295/3917;Nairobi: Test set consensus key - baker is delegate;3.56524;0.666097;4.15742;388332;579388 +296/3917;Alpha: Test register with consensus key;5.27266;0.953768;6.07059;388452;599380 +297/3917;Mumbai: Test register with consensus key;3.98382;0.737723;4.62971;388332;583576 +298/3917;Nairobi: Test register with consensus key;3.85803;0.873067;4.64732;374504;569944 +299/3917;Alpha: Test revert to unique consensus key;6.91803;1.36285;8.04847;388320;606868 +300/3917;Mumbai: Test revert to unique consensus key;5.51299;1.05392;6.39773;388452;599632 +301/3917;Nairobi: Test revert to unique consensus key;5.5149;1.0281;6.39137;388328;599660 +302/3917;Alpha: Test drain delegate with (baker = delegate & consensus = destination);4.78579;0.836469;5.52766;388332;587108 +303/3917;Mumbai: Test drain delegate with (baker = delegate & consensus = destination);4.70662;0.904094;5.50785;388200;590164 +304/3917;Nairobi: Test drain delegate with (baker = delegate & consensus = destination);4.75061;0.855406;5.52223;388328;589636 +305/3917;Alpha: Test drain delegate with (baker = delegate & consensus <> destination);4.74183;0.867202;5.51746;388072;590784 +306/3917;Mumbai: Test drain delegate with (baker = delegate & consensus <> destination);4.7126;0.883349;5.49769;374376;577024 +307/3917;Nairobi: Test drain delegate with (baker = delegate & consensus <> destination);4.69984;0.90171;5.51091;388324;587604 +308/3917;Alpha: Test drain delegate with (baker <> delegate & consensus = destination);4.66565;0.928505;5.49823;388332;587772 +309/3917;Mumbai: Test drain delegate with (baker <> delegate & consensus = destination);4.69245;0.924338;5.5227;388328;587976 +310/3917;Nairobi: Test drain delegate with (baker <> delegate & consensus = destination);4.71542;0.892517;5.51753;388200;587508 +311/3917;Alpha: Test drain delegate with (baker <> delegate & consensus <> destination);4.69954;0.919199;5.52582;388072;587948 +312/3917;Mumbai: Test drain delegate with (baker <> delegate & consensus <> destination);4.71069;0.940685;5.54885;388328;587816 +313/3917;Nairobi: Test drain delegate with (baker <> delegate & consensus <> destination);4.70191;0.913651;5.52265;388212;586844 +314/3917;Alpha: contract baker;2.30501;0.492752;2.77916;374508;553384 +315/3917;Mumbai: contract baker;2.39642;0.408106;2.78299;388328;567384 +316/3917;Nairobi: contract baker;2.33988;0.472695;2.79296;388204;567128 +317/3917;Alpha: Test sending big_map to self;0.698427;0.124099;0.819168;198628;188668 +318/3917;Mumbai: Test sending big_map to self;0.685072;0.148031;0.829759;198628;188340 +319/3917;Nairobi: Test sending big_map to self;0.698404;0.115788;0.810498;198760;188708 +320/3917;Alpha: test create_contract_rootname;0.823614;0.164678;0.985336;198888;188664 +321/3917;Mumbai: test create_contract_rootname;0.828129;0.15421;0.978816;198760;188700 +322/3917;Nairobi: test create_contract_rootname;0.793199;0.175755;0.965376;198632;188668 +323/3917;Alpha: test create_contract_rootname_alt;0.829987;0.152282;0.979023;198884;188640 +324/3917;Mumbai: test create_contract_rootname_alt;0.826923;0.151791;0.975255;198756;188448 +325/3917;Nairobi: test create_contract_rootname_alt;0.796024;0.175417;0.967525;198660;188796 +326/3917;Alpha: simple entrypoints;2.96109;0.67633;3.63111;206220;202244 +327/3917;Mumbai: simple entrypoints;3.0385;0.608883;3.64144;208536;204448 +328/3917;Nairobi: simple entrypoints;3.02559;0.609418;3.62904;206364;202248 +329/3917;Alpha: Test contract hash function: keccak;4.74498;1.11235;5.84968;217240;212456 +330/3917;Mumbai: Test contract hash function: keccak;4.80438;1.04998;5.84644;217236;212992 +331/3917;Nairobi: Test contract hash function: keccak;4.86177;0.99644;5.84976;217116;212816 +332/3917;Alpha: Test contract hash function: sha3;4.77145;1.02407;5.78824;217000;212848 +333/3917;Mumbai: Test contract hash function: sha3;4.85865;0.997421;5.84783;217244;212928 +334/3917;Nairobi: Test contract hash function: sha3;4.8339;0.979854;5.80428;217108;213180 +335/3917;Alpha: Test `get contract hash with origination for`;0.807456;0.154985;0.959478;198628;188204 +336/3917;Mumbai: Test `get contract hash with origination for`;0.801031;0.167937;0.965994;198500;188400 +337/3917;Nairobi: Test `get contract hash with origination for`;0.828271;0.140051;0.964933;198616;188160 +338/3917;Alpha: Test add/approve/transfer/remove liquidity;2.01558;0.403231;2.41305;202392;198496 +339/3917;Mumbai: Test add/approve/transfer/remove liquidity;1.98589;0.454659;2.43466;202392;198364 +340/3917;Nairobi: Test add/approve/transfer/remove liquidity;2.03358;0.398988;2.42807;202392;198348 +341/3917;Alpha: Test trades;1.94998;0.47337;2.4206;201252;199060 +342/3917;Mumbai: Test trades;1.98727;0.447084;2.4316;200016;197692 +343/3917;Nairobi: Test trades;2.0109;0.421807;2.42792;202352;198124 +344/3917;Alpha: Contract-related non-regressions, Issue 262;0.692887;0.128929;0.815366;198624;187556 +345/3917;Mumbai: Contract-related non-regressions, Issue 262;0.708764;0.116496;0.818525;198632;187428 +346/3917;Nairobi: Contract-related non-regressions, Issue 262;0.689018;0.131316;0.814534;198888;187520 +347/3917;Alpha: Contract-related non-regressions, Issue 843;1.2073;0.253157;1.45464;198632;191580 +348/3917;Mumbai: Contract-related non-regressions, Issue 843;1.23423;0.243875;1.47494;198632;191712 +349/3917;Nairobi: Contract-related non-regressions, Issue 843;1.24873;0.228594;1.47348;198624;191764 +350/3917;Alpha: Contract onchain opcodes: test_store_input;1.11856;0.215303;1.33057;199016;190696 +351/3917;Mumbai: Contract onchain opcodes: test_store_input;1.09983;0.220312;1.31631;198628;190732 +352/3917;Nairobi: Contract onchain opcodes: test_store_input;1.13641;0.182729;1.31358;198760;190664 +353/3917;Alpha: Contract onchain opcodes: test_transfer_amount;0.837796;0.142806;0.977982;198752;188892 +354/3917;Mumbai: Contract onchain opcodes: test_transfer_amount;0.849204;0.138978;0.985055;198504;188148 +355/3917;Nairobi: Contract onchain opcodes: test_transfer_amount;0.875295;0.123351;0.996352;198760;188844 +356/3917;Alpha: Contract onchain opcodes: test_now;1.10278;0.200316;1.29653;198756;190720 +357/3917;Mumbai: Contract onchain opcodes: test_now;1.07282;0.22438;1.29161;198624;190608 +358/3917;Nairobi: Contract onchain opcodes: test_now;1.07276;0.232169;1.29849;198632;190756 +359/3917;Alpha: Contract onchain opcodes: test_transfer_tokens;1.80735;0.319002;2.11675;200596;196372 +360/3917;Mumbai: Contract onchain opcodes: test_transfer_tokens;1.80081;0.35651;2.14666;200600;196004 +361/3917;Nairobi: Contract onchain opcodes: test_transfer_tokens;1.75586;0.389073;2.13525;200724;196388 +362/3917;Alpha: Contract onchain opcodes: test_self;0.853073;0.147597;0.997671;198756;188180 +363/3917;Mumbai: Contract onchain opcodes: test_self;0.849891;0.152257;0.998698;198628;188888 +364/3917;Nairobi: Contract onchain opcodes: test_self;0.842636;0.147875;0.987221;198632;188784 +365/3917;Alpha: Contract onchain opcodes: test_contract_fails;0.711525;0.111371;0.814696;198760;187368 +366/3917;Mumbai: Contract onchain opcodes: test_contract_fails;0.686055;0.152323;0.830596;198756;187464 +367/3917;Nairobi: Contract onchain opcodes: test_contract_fails;0.718648;0.111089;0.82504;198888;187588 +368/3917;Alpha: Contract onchain opcodes: test_source;1.2754;0.227852;1.49477;198760;192188 +369/3917;Mumbai: Contract onchain opcodes: test_source;1.21236;0.283326;1.48757;198628;191952 +370/3917;Nairobi: Contract onchain opcodes: test_source;1.24918;0.242479;1.48354;198752;192160 +371/3917;Alpha: Contract onchain opcodes: test_sender;1.22747;0.250844;1.47055;198760;191628 +372/3917;Mumbai: Contract onchain opcodes: test_sender;1.23637;0.251699;1.47884;198504;192116 +373/3917;Nairobi: Contract onchain opcodes: test_sender;1.28207;0.223867;1.49817;198760;192124 +374/3917;Alpha: Contract onchain opcodes: test_slice;1.45155;0.227904;1.66824;199656;194808 +375/3917;Mumbai: Contract onchain opcodes: test_slice;1.39347;0.304031;1.68748;199392;194360 +376/3917;Nairobi: Contract onchain opcodes: test_slice;1.42305;0.263728;1.67444;199524;194480 +377/3917;Alpha: Contract onchain opcodes: test_split_string;1.14203;0.192667;1.33134;199016;190908 +378/3917;Mumbai: Contract onchain opcodes: test_split_string;1.11975;0.199189;1.31637;198632;190820 +379/3917;Nairobi: Contract onchain opcodes: test_split_string;1.13585;0.195466;1.32762;198884;190504 +380/3917;Alpha: Contract onchain opcodes: test_split_bytes;1.08219;0.239566;1.31922;198888;191420 +381/3917;Mumbai: Contract onchain opcodes: test_split_bytes;1.08385;0.238913;1.31883;198628;191104 +382/3917;Nairobi: Contract onchain opcodes: test_split_bytes;1.14475;0.183939;1.32592;198888;191064 +383/3917;Alpha: Contract onchain opcodes: test_set_delegate;1.19799;0.283379;1.47446;198884;191904 +384/3917;Mumbai: Contract onchain opcodes: test_set_delegate;1.23402;0.246575;1.47247;198756;192112 +385/3917;Nairobi: Contract onchain opcodes: test_set_delegate;1.22202;0.267692;1.48078;198880;192248 +386/3917;Alpha: Contract onchain opcodes: test_trace_origination_compare_big_type;0.566334;0.11245;0.672902;198888;187544 +387/3917;Mumbai: Contract onchain opcodes: test_trace_origination_compare_big_type;0.563008;0.108117;0.664202;198884;187584 +388/3917;Nairobi: Contract onchain opcodes: test_trace_origination_compare_big_type;0.569839;0.095733;0.660143;198756;187384 +389/3917;Alpha: Contract onchain opcodes: test_trace_origination_compare_big_type2;0.534498;0.143612;0.672253;198884;187548 +390/3917;Mumbai: Contract onchain opcodes: test_trace_origination_compare_big_type2;0.58821;0.092089;0.674833;198756;187344 +391/3917;Nairobi: Contract onchain opcodes: test_trace_origination_compare_big_type2;0.584175;0.084448;0.663142;198752;187276 +392/3917;Alpha: Contract onchain opcodes: test_level;1.78853;0.356073;2.14098;200176;196816 +393/3917;Mumbai: Contract onchain opcodes: test_level;1.8075;0.343015;2.13714;200212;196936 +394/3917;Nairobi: Contract onchain opcodes: test_level;1.75994;0.374654;2.12707;200344;196180 +395/3917;Alpha: Contract onchain opcodes: test_big_map_origination;1.14166;0.192418;1.33023;198632;190676 +396/3917;Mumbai: Contract onchain opcodes: test_big_map_origination;1.09607;0.220672;1.31311;198628;190832 +397/3917;Nairobi: Contract onchain opcodes: test_big_map_origination;1.10949;0.212888;1.31532;198884;190864 +398/3917;Alpha: Contract onchain opcodes: ticket_user_forge;0.977394;0.186126;1.15726;198756;189448 +399/3917;Mumbai: Contract onchain opcodes: ticket_user_forge;0.969913;0.190629;1.15436;198500;189400 +400/3917;Nairobi: Contract onchain opcodes: ticket_user_forge;1.02062;0.147569;1.16439;198628;189460 +401/3917;Alpha: Contract onchain opcodes: ticket_user_big_forge;1.13803;0.200124;1.33976;198760;190896 +402/3917;Mumbai: Contract onchain opcodes: ticket_user_big_forge;1.14237;0.188087;1.32635;198628;190860 +403/3917;Nairobi: Contract onchain opcodes: ticket_user_big_forge;1.11459;0.217162;1.32721;198628;190788 +404/3917;Alpha: Contract onchain opcodes: ticket_read;1.00298;0.180135;1.17381;198756;190160 +405/3917;Mumbai: Contract onchain opcodes: ticket_read;1.00294;0.174595;1.16781;198624;190012 +406/3917;Nairobi: Contract onchain opcodes: ticket_read;0.993527;0.168514;1.15538;198760;189896 +407/3917;Alpha: Contract onchain opcodes: bad_ticket;0.845425;0.156417;0.995257;198760;188920 +408/3917;Mumbai: Contract onchain opcodes: bad_ticket;0.852377;0.152459;0.999166;198496;188660 +409/3917;Nairobi: Contract onchain opcodes: bad_ticket;0.822366;0.183687;0.999476;198760;188504 +410/3917;Alpha: Contract onchain opcodes: ticket_utxo;1.00962;0.176836;1.17799;198884;191032 +411/3917;Mumbai: Contract onchain opcodes: ticket_utxo;1.00701;0.191866;1.18871;198884;191208 +412/3917;Nairobi: Contract onchain opcodes: ticket_utxo;0.980999;0.203837;1.17543;198888;191308 +413/3917;Alpha: Contract onchain opcodes: ticket_split;0.992052;0.180557;1.16068;198860;190492 +414/3917;Mumbai: Contract onchain opcodes: ticket_split;0.998139;0.184716;1.16843;198628;189496 +415/3917;Nairobi: Contract onchain opcodes: ticket_split;1.01194;0.179363;1.17775;198880;190064 +416/3917;Alpha: Contract onchain opcodes: ticket_join;1.40761;0.268575;1.65804;198888;193396 +417/3917;Mumbai: Contract onchain opcodes: ticket_join;1.45822;0.244286;1.68251;198632;193556 +418/3917;Nairobi: Contract onchain opcodes: ticket_join;1.45574;0.248326;1.68642;198888;193684 +419/3917;Alpha: Contract onchain opcodes: ticket_fungible;3.29355;0.66509;3.93102;204184;200188 +420/3917;Mumbai: Contract onchain opcodes: ticket_fungible;3.27099;0.682529;3.92585;204180;200536 +421/3917;Nairobi: Contract onchain opcodes: ticket_fungible;3.27128;0.677205;3.91987;204188;200396 +422/3917;Alpha: Contract onchain opcodes: ticket_non_fungible;3.70215;0.730753;4.40278;207260;204668 +423/3917;Mumbai: Contract onchain opcodes: ticket_non_fungible;3.66996;0.737258;4.37636;207132;204968 +424/3917;Nairobi: Contract onchain opcodes: ticket_non_fungible;3.73473;0.71698;4.4243;206996;204056 +425/3917;Alpha: opcodes [cons--storage457300675--input798141440];0.437828;0.052111;0.491316;197856;185168 +426/3917;Mumbai: opcodes [cons--storage457300675--input798141440];0.419941;0.071823;0.491857;197732;185348 +427/3917;Nairobi: opcodes [cons--storage457300675--input798141440];0.426155;0.056291;0.482729;197984;185600 +428/3917;Alpha: opcodes [cons--storage581876226--input166122047];0.424649;0.056006;0.480863;197732;185220 +429/3917;Mumbai: opcodes [cons--storage581876226--input166122047];0.440633;0.048073;0.488805;197732;185420 +430/3917;Nairobi: opcodes [cons--storage581876226--input166122047];0.412736;0.072074;0.484978;197860;185436 +431/3917;Alpha: opcodes [cons--storage793461282--input781487591];0.425413;0.056492;0.482313;197736;185384 +432/3917;Mumbai: opcodes [cons--storage793461282--input781487591];0.432806;0.055839;0.488715;197864;185292 +433/3917;Nairobi: opcodes [cons--storage793461282--input781487591];0.410634;0.067755;0.478628;197732;185572 +434/3917;Alpha: opcodes [none--storage11179311--input125992234];0.424546;0.059874;0.484595;197732;185332 +435/3917;Mumbai: opcodes [none--storage11179311--input125992234];0.430748;0.05653;0.487937;197732;185068 +436/3917;Nairobi: opcodes [none--storage11179311--input125992234];0.436515;0.05205;0.488737;197864;185172 +437/3917;Alpha: opcodes [ret_int--storage921624073--input125992234];0.426513;0.063851;0.490344;197728;185040 +438/3917;Mumbai: opcodes [ret_int--storage921624073--input125992234];0.437394;0.048129;0.485671;197728;185272 +439/3917;Nairobi: opcodes [ret_int--storage921624073--input125992234];0.429079;0.052134;0.481373;197860;185424 +440/3917;Alpha: opcodes [list_map_block--storage907453363--input457300675];0.419919;0.059654;0.481007;197604;185296 +441/3917;Mumbai: opcodes [list_map_block--storage907453363--input457300675];0.43073;0.059858;0.490628;197732;185572 +442/3917;Nairobi: opcodes [list_map_block--storage907453363--input457300675];0.414746;0.071916;0.486736;198116;185448 +443/3917;Alpha: opcodes [list_map_block--storage907453363--input908379154];0.43349;0.047971;0.479215;197988;185892 +444/3917;Mumbai: opcodes [list_map_block--storage907453363--input908379154];0.428579;0.06884;0.495376;197984;185760 +445/3917;Nairobi: opcodes [list_map_block--storage907453363--input908379154];0.434879;0.055839;0.488011;198244;185720 +446/3917;Alpha: opcodes [list_map_block--storage907453363--input648737279];0.438078;0.05213;0.486979;198116;185628 +447/3917;Mumbai: opcodes [list_map_block--storage907453363--input648737279];0.438199;0.05554;0.49239;197988;185744 +448/3917;Nairobi: opcodes [list_map_block--storage907453363--input648737279];0.437435;0.052075;0.487193;198372;185784 +449/3917;Alpha: opcodes [emit--storage125992234--input125992234];0.43808;0.051771;0.48841;197736;185536 +450/3917;Mumbai: opcodes [emit--storage125992234--input125992234];0.424169;0.063763;0.490603;197864;185568 +451/3917;Nairobi: opcodes [emit--storage125992234--input125992234];0.423756;0.063614;0.484863;197988;185368 +452/3917;Alpha: opcodes [reverse--storage528921618--input457300675];0.436087;0.047576;0.485001;197604;185312 +453/3917;Mumbai: opcodes [reverse--storage528921618--input457300675];0.390325;0.096664;0.487581;197860;185584 +454/3917;Nairobi: opcodes [reverse--storage528921618--input457300675];0.438834;0.055825;0.494735;197860;185548 +455/3917;Alpha: opcodes [reverse--storage528921618--input851203613];0.408538;0.071744;0.480372;197732;185000 +456/3917;Mumbai: opcodes [reverse--storage528921618--input851203613];0.423505;0.055806;0.479489;197860;185420 +457/3917;Nairobi: opcodes [reverse--storage528921618--input851203613];0.43472;0.056357;0.491202;197864;185592 +458/3917;Alpha: opcodes [loop_left--storage528921618--input457300675];0.412674;0.072091;0.484851;197732;185280 +459/3917;Mumbai: opcodes [loop_left--storage528921618--input457300675];0.427444;0.055903;0.483456;197864;185380 +460/3917;Nairobi: opcodes [loop_left--storage528921618--input457300675];0.40475;0.083675;0.488383;197860;185592 +461/3917;Alpha: opcodes [loop_left--storage528921618--input851203613];0.416025;0.075858;0.489371;198112;185848 +462/3917;Mumbai: opcodes [loop_left--storage528921618--input851203613];0.408544;0.07922;0.486445;198116;185820 +463/3917;Nairobi: opcodes [loop_left--storage528921618--input851203613];0.443757;0.04797;0.489396;198244;185848 +464/3917;Alpha: opcodes [str_id--storage921624073--input93477117];0.427126;0.059607;0.488096;197732;185320 +465/3917;Mumbai: opcodes [str_id--storage921624073--input93477117];0.412456;0.072146;0.484637;197860;185308 +466/3917;Nairobi: opcodes [str_id--storage921624073--input93477117];0.449009;0.040077;0.489254;197864;185228 +467/3917;Alpha: opcodes [str_id--storage921624073--input1016369050];0.440558;0.04789;0.488614;197728;185400 +468/3917;Mumbai: opcodes [str_id--storage921624073--input1016369050];0.403847;0.083744;0.487686;197736;185264 +469/3917;Nairobi: opcodes [str_id--storage921624073--input1016369050];0.435733;0.055673;0.491852;197864;185768 +470/3917;Alpha: opcodes [slice--storage921624073--input551316239];0.405163;0.080202;0.486714;197732;185116 +471/3917;Mumbai: opcodes [slice--storage921624073--input551316239];0.426934;0.059849;0.486827;197736;185492 +472/3917;Nairobi: opcodes [slice--storage921624073--input551316239];0.426733;0.055838;0.482696;197992;185448 +473/3917;Alpha: opcodes [slice--storage364922380--input359592843];0.420235;0.067531;0.487898;197860;185388 +474/3917;Mumbai: opcodes [slice--storage364922380--input359592843];0.433417;0.060116;0.493521;197728;185552 +475/3917;Nairobi: opcodes [slice--storage364922380--input359592843];0.419859;0.067956;0.487894;197988;185700 +476/3917;Alpha: opcodes [slice--storage364922380--input551316239];0.435696;0.055928;0.49169;197728;185460 +477/3917;Mumbai: opcodes [slice--storage364922380--input551316239];0.432644;0.051766;0.484539;197736;185480 +478/3917;Nairobi: opcodes [slice--storage364922380--input551316239];0.426556;0.06015;0.486787;197864;185272 +479/3917;Alpha: opcodes [slice--storage364922380--input722749044];0.443836;0.043928;0.487804;197732;185224 +480/3917;Mumbai: opcodes [slice--storage364922380--input722749044];0.429596;0.060022;0.489877;197728;185392 +481/3917;Nairobi: opcodes [slice--storage364922380--input722749044];0.413443;0.068232;0.481837;197856;185488 +482/3917;Alpha: opcodes [slice--storage364922380--input919180079];0.429656;0.060092;0.489858;197732;185268 +483/3917;Mumbai: opcodes [slice--storage364922380--input919180079];0.428454;0.063908;0.492369;197860;185504 +484/3917;Nairobi: opcodes [slice--storage364922380--input919180079];0.429618;0.060081;0.489806;197856;185604 +485/3917;Alpha: opcodes [slice--storage364922380--input839234860];0.43686;0.047899;0.484902;197728;185300 +486/3917;Mumbai: opcodes [slice--storage364922380--input839234860];0.441515;0.052033;0.493635;197732;185464 +487/3917;Nairobi: opcodes [slice--storage364922380--input839234860];0.415631;0.071916;0.487699;197860;185572 +488/3917;Alpha: opcodes [slice--storage364922380--input198821575];0.427719;0.051925;0.479751;197604;185292 +489/3917;Mumbai: opcodes [slice--storage364922380--input198821575];0.434908;0.051964;0.486913;197736;185552 +490/3917;Nairobi: opcodes [slice--storage364922380--input198821575];0.430503;0.051828;0.482543;197860;185576 +491/3917;Alpha: opcodes [slice--storage351480851--input65907686];0.423956;0.071611;0.492668;200552;188316 +492/3917;Mumbai: opcodes [slice--storage351480851--input65907686];0.428842;0.068685;0.495462;201192;189140 +493/3917;Nairobi: opcodes [slice--storage351480851--input65907686];0.457408;0.048259;0.502816;200680;188372 +494/3917;Alpha: opcodes [slice_bytes--storage921624073--input462551352];0.451907;0.035942;0.488039;197584;185264 +495/3917;Mumbai: opcodes [slice_bytes--storage921624073--input462551352];0.423818;0.063863;0.487778;197732;185448 +496/3917;Nairobi: opcodes [slice_bytes--storage921624073--input462551352];0.415028;0.068139;0.483247;197992;185428 +497/3917;Alpha: opcodes [slice_bytes--storage229749865--input551316239];0.398328;0.084427;0.483013;197600;185288 +498/3917;Mumbai: opcodes [slice_bytes--storage229749865--input551316239];0.440601;0.051902;0.492655;197860;185748 +499/3917;Nairobi: opcodes [slice_bytes--storage229749865--input551316239];0.432896;0.047864;0.48094;197860;185456 +500/3917;Alpha: opcodes [slice_bytes--storage229749865--input462551352];0.404182;0.076104;0.480405;197732;185288 +501/3917;Mumbai: opcodes [slice_bytes--storage229749865--input462551352];0.427785;0.059934;0.487932;197732;185460 +502/3917;Nairobi: opcodes [slice_bytes--storage229749865--input462551352];0.435749;0.051976;0.487879;197860;185660 +503/3917;Alpha: opcodes [slice_bytes--storage229749865--input198821575];0.426519;0.060078;0.486681;197728;185396 +504/3917;Mumbai: opcodes [slice_bytes--storage229749865--input198821575];0.433921;0.047847;0.486983;197604;185524 +505/3917;Nairobi: opcodes [slice_bytes--storage229749865--input198821575];0.43626;0.056022;0.492456;197860;185404 +506/3917;Alpha: opcodes [slice_bytes--storage229749865--input489157380];0.424266;0.055669;0.480043;197736;185308 +507/3917;Mumbai: opcodes [slice_bytes--storage229749865--input489157380];0.417566;0.064194;0.481843;197732;185424 +508/3917;Nairobi: opcodes [slice_bytes--storage229749865--input489157380];0.432868;0.051897;0.484944;197860;186996 +509/3917;Alpha: opcodes [slice_bytes--storage229749865--input839234860];0.433269;0.055606;0.489045;197736;185348 +510/3917;Mumbai: opcodes [slice_bytes--storage229749865--input839234860];0.452422;0.036035;0.488449;197732;185340 +511/3917;Nairobi: opcodes [slice_bytes--storage229749865--input839234860];0.43333;0.052075;0.485596;197856;185364 +512/3917;Alpha: opcodes [slice_bytes--storage229749865--input743596105];0.413891;0.072304;0.486432;197736;185276 +513/3917;Mumbai: opcodes [slice_bytes--storage229749865--input743596105];0.420717;0.067923;0.488807;197732;185656 +514/3917;Nairobi: opcodes [slice_bytes--storage229749865--input743596105];0.41182;0.067583;0.479418;197856;185392 +515/3917;Alpha: opcodes [slice_bytes--storage229749865--input669330759];0.427182;0.055897;0.482905;197732;185296 +516/3917;Mumbai: opcodes [slice_bytes--storage229749865--input669330759];0.443091;0.040281;0.483443;197732;185756 +517/3917;Nairobi: opcodes [slice_bytes--storage229749865--input669330759];0.43467;0.048113;0.482865;197856;185468 +518/3917;Alpha: opcodes [slice_bytes--storage504917929--input65907686];0.408195;0.08499;0.493118;199660;187796 +519/3917;Mumbai: opcodes [slice_bytes--storage504917929--input65907686];0.432878;0.055922;0.487739;199660;187796 +520/3917;Nairobi: opcodes [slice_bytes--storage504917929--input65907686];0.407799;0.087171;0.493915;199916;188008 +521/3917;Alpha: opcodes [pair_id--storage921624073--input181204719];0.422485;0.063813;0.48771;197860;185292 +522/3917;Mumbai: opcodes [pair_id--storage921624073--input181204719];0.438774;0.044292;0.483252;197736;185448 +523/3917;Nairobi: opcodes [pair_id--storage921624073--input181204719];0.427747;0.055802;0.483709;197864;185352 +524/3917;Alpha: opcodes [pair_id--storage921624073--input106930123];0.438812;0.051844;0.49074;197736;185428 +525/3917;Mumbai: opcodes [pair_id--storage921624073--input106930123];0.418932;0.068019;0.487029;197864;185296 +526/3917;Nairobi: opcodes [pair_id--storage921624073--input106930123];0.428727;0.055961;0.484822;197988;185356 +527/3917;Alpha: opcodes [pair_id--storage921624073--input908807505];0.429316;0.064115;0.493649;197732;185152 +528/3917;Mumbai: opcodes [pair_id--storage921624073--input908807505];0.416822;0.068146;0.485165;197856;185368 +529/3917;Nairobi: opcodes [pair_id--storage921624073--input908807505];0.448439;0.044123;0.492753;197864;185276 +530/3917;Alpha: opcodes [pair_id--storage921624073--input223774825];0.428404;0.059901;0.488459;197736;185148 +531/3917;Mumbai: opcodes [pair_id--storage921624073--input223774825];0.436949;0.056013;0.493172;197732;185336 +532/3917;Nairobi: opcodes [pair_id--storage921624073--input223774825];0.437789;0.044158;0.482081;197864;185620 +533/3917;Alpha: opcodes [car--storage680650890--input783124233];0.43731;0.053073;0.490698;197860;185264 +534/3917;Mumbai: opcodes [car--storage680650890--input783124233];0.443992;0.047959;0.492286;197736;185548 +535/3917;Nairobi: opcodes [car--storage680650890--input783124233];0.42687;0.059859;0.486861;197856;185272 +536/3917;Alpha: opcodes [cdr--storage680650890--input783124233];0.445269;0.048005;0.494655;197736;185288 +537/3917;Mumbai: opcodes [cdr--storage680650890--input783124233];0.426558;0.059927;0.486615;197732;185276 +538/3917;Nairobi: opcodes [cdr--storage680650890--input783124233];0.442788;0.044017;0.486965;197860;185152 +539/3917;Alpha: opcodes [not--storage921624073--input954397288];0.430579;0.055634;0.487666;197728;185208 +540/3917;Mumbai: opcodes [not--storage921624073--input954397288];0.424415;0.063716;0.48829;197732;185608 +541/3917;Nairobi: opcodes [not--storage921624073--input954397288];0.41719;0.076151;0.493509;197860;185292 +542/3917;Alpha: opcodes [not--storage921624073--input570553153];0.444373;0.036029;0.48069;197732;185424 +543/3917;Mumbai: opcodes [not--storage921624073--input570553153];0.42866;0.055829;0.484577;197736;185556 +544/3917;Nairobi: opcodes [not--storage921624073--input570553153];0.441663;0.044284;0.486096;197860;185632 +545/3917;Alpha: opcodes [and--storage921624073--input223774825];0.428342;0.063928;0.492577;197732;185236 +546/3917;Mumbai: opcodes [and--storage921624073--input223774825];0.420926;0.063347;0.484323;197732;185636 +547/3917;Nairobi: opcodes [and--storage921624073--input223774825];0.432899;0.051979;0.48501;197860;185532 +548/3917;Alpha: opcodes [and--storage921624073--input106930123];0.432502;0.056062;0.488688;197732;185352 +549/3917;Mumbai: opcodes [and--storage921624073--input106930123];0.450632;0.044228;0.49502;197728;185484 +550/3917;Nairobi: opcodes [and--storage921624073--input106930123];0.437875;0.04809;0.48614;197988;185492 +551/3917;Alpha: opcodes [and--storage921624073--input181204719];0.421556;0.068281;0.489961;197608;185116 +552/3917;Mumbai: opcodes [and--storage921624073--input181204719];0.421446;0.064175;0.485808;197732;185516 +553/3917;Nairobi: opcodes [and--storage921624073--input181204719];0.447357;0.044007;0.491452;197856;185552 +554/3917;Alpha: opcodes [and--storage921624073--input908807505];0.425183;0.064471;0.489899;197732;185300 +555/3917;Mumbai: opcodes [and--storage921624073--input908807505];0.443096;0.047983;0.491156;197856;185496 +556/3917;Nairobi: opcodes [and--storage921624073--input908807505];0.434467;0.051819;0.486414;198116;185616 +557/3917;Alpha: opcodes [or--storage921624073--input223774825];0.433653;0.052381;0.487361;197732;185208 +558/3917;Mumbai: opcodes [or--storage921624073--input223774825];0.429323;0.052217;0.481637;197732;185508 +559/3917;Nairobi: opcodes [or--storage921624073--input223774825];0.422648;0.060338;0.488634;197860;185332 +560/3917;Alpha: opcodes [or--storage921624073--input106930123];0.432037;0.055817;0.487945;197732;185176 +561/3917;Mumbai: opcodes [or--storage921624073--input106930123];0.436399;0.055842;0.492437;197728;185520 +562/3917;Nairobi: opcodes [or--storage921624073--input106930123];0.421121;0.064124;0.485347;197864;185628 +563/3917;Alpha: opcodes [or--storage921624073--input181204719];0.426538;0.059862;0.486432;197728;185164 +564/3917;Mumbai: opcodes [or--storage921624073--input181204719];0.438901;0.055948;0.494944;197732;185352 +565/3917;Nairobi: opcodes [or--storage921624073--input181204719];0.443064;0.047964;0.491136;197860;185384 +566/3917;Alpha: opcodes [or--storage921624073--input908807505];0.424977;0.063926;0.488815;197732;185084 +567/3917;Mumbai: opcodes [or--storage921624073--input908807505];0.424655;0.059596;0.484418;197736;185460 +568/3917;Nairobi: opcodes [or--storage921624073--input908807505];0.410584;0.083875;0.494525;197860;185708 +569/3917;Alpha: opcodes [and_logical_1--storage570553153--input223774825];0.415049;0.067284;0.483826;197560;185120 +570/3917;Mumbai: opcodes [and_logical_1--storage570553153--input223774825];0.441325;0.040075;0.481604;197736;185124 +571/3917;Nairobi: opcodes [and_logical_1--storage570553153--input223774825];0.403149;0.084503;0.487863;197984;185324 +572/3917;Alpha: opcodes [and_logical_1--storage570553153--input106930123];0.429805;0.055623;0.485478;197728;185136 +573/3917;Mumbai: opcodes [and_logical_1--storage570553153--input106930123];0.439801;0.051601;0.491645;197732;185288 +574/3917;Nairobi: opcodes [and_logical_1--storage570553153--input106930123];0.432592;0.059874;0.492602;197860;185564 +575/3917;Alpha: opcodes [and_logical_1--storage570553153--input181204719];0.440344;0.052003;0.492563;197732;185608 +576/3917;Mumbai: opcodes [and_logical_1--storage570553153--input181204719];0.43369;0.047996;0.481836;197736;185628 +577/3917;Nairobi: opcodes [and_logical_1--storage570553153--input181204719];0.422809;0.072292;0.495237;197864;185212 +578/3917;Alpha: opcodes [and_logical_1--storage570553153--input908807505];0.419948;0.067556;0.487733;197608;185344 +579/3917;Mumbai: opcodes [and_logical_1--storage570553153--input908807505];0.429328;0.063868;0.493341;197992;185640 +580/3917;Nairobi: opcodes [and_logical_1--storage570553153--input908807505];0.410345;0.075641;0.486354;197736;185208 +581/3917;Alpha: opcodes [and_binary--storage125992234--input125992234];0.422468;0.067921;0.489203;197732;185388 +582/3917;Mumbai: opcodes [and_binary--storage125992234--input125992234];0.422943;0.063619;0.484294;197860;185548 +583/3917;Nairobi: opcodes [and_binary--storage125992234--input125992234];0.431175;0.055201;0.484217;197992;185792 +584/3917;Alpha: opcodes [or_binary--storage921624073--input858098961];0.432437;0.05934;0.493135;197732;185292 +585/3917;Mumbai: opcodes [or_binary--storage921624073--input858098961];0.388538;0.091647;0.480344;197736;185368 +586/3917;Nairobi: opcodes [or_binary--storage921624073--input858098961];0.421041;0.068246;0.489357;197860;185468 +587/3917;Alpha: opcodes [or_binary--storage921624073--input1056991424];0.416312;0.067772;0.484278;197860;185244 +588/3917;Mumbai: opcodes [or_binary--storage921624073--input1056991424];0.43202;0.055616;0.487845;197736;185300 +589/3917;Nairobi: opcodes [or_binary--storage921624073--input1056991424];0.457512;0.036126;0.49388;197992;185604 +590/3917;Alpha: opcodes [or_binary--storage921624073--input673240563];0.41855;0.060075;0.478777;197732;185348 +591/3917;Mumbai: opcodes [or_binary--storage921624073--input673240563];0.445118;0.039803;0.485029;197736;185580 +592/3917;Nairobi: opcodes [or_binary--storage921624073--input673240563];0.422853;0.06457;0.487505;197860;185536 +593/3917;Alpha: opcodes [or_binary--storage921624073--input832403787];0.434651;0.056062;0.490901;197732;185240 +594/3917;Mumbai: opcodes [or_binary--storage921624073--input832403787];0.432503;0.059851;0.492519;197736;185508 +595/3917;Nairobi: opcodes [or_binary--storage921624073--input832403787];0.421458;0.06364;0.485286;197864;185308 +596/3917;Alpha: opcodes [or_binary--storage921624073--input375993021];0.412865;0.06787;0.480617;197728;184948 +597/3917;Mumbai: opcodes [or_binary--storage921624073--input375993021];0.417055;0.063771;0.481007;197732;185480 +598/3917;Nairobi: opcodes [or_binary--storage921624073--input375993021];0.426576;0.063928;0.490665;197860;185420 +599/3917;Alpha: opcodes [or_binary--storage921624073--input747448890];0.400206;0.091696;0.491848;197732;185360 +600/3917;Mumbai: opcodes [or_binary--storage921624073--input747448890];0.425681;0.06424;0.490263;197728;185548 +601/3917;Nairobi: opcodes [or_binary--storage921624073--input747448890];0.440625;0.052167;0.492862;197860;185360 +602/3917;Alpha: opcodes [not_binary--storage921624073--input972832189];0.424469;0.064083;0.488777;197732;185408 +603/3917;Mumbai: opcodes [not_binary--storage921624073--input972832189];0.432721;0.060109;0.492742;197732;185512 +604/3917;Nairobi: opcodes [not_binary--storage921624073--input972832189];0.449593;0.044161;0.493917;197988;185540 +605/3917;Alpha: opcodes [not_binary--storage921624073--input518945720];0.425591;0.056554;0.482426;197736;185300 +606/3917;Mumbai: opcodes [not_binary--storage921624073--input518945720];0.425185;0.055356;0.480713;197732;185392 +607/3917;Nairobi: opcodes [not_binary--storage921624073--input518945720];0.430331;0.055299;0.485693;197856;185604 +608/3917;Alpha: opcodes [not_binary--storage921624073--input123939249];0.433589;0.056112;0.48971;197604;185232 +609/3917;Mumbai: opcodes [not_binary--storage921624073--input123939249];0.409582;0.072434;0.482147;197728;185592 +610/3917;Nairobi: opcodes [not_binary--storage921624073--input123939249];0.414993;0.071929;0.487095;197864;185292 +611/3917;Alpha: opcodes [not_binary--storage921624073--input921874253];0.421358;0.060342;0.481842;197604;185268 +612/3917;Mumbai: opcodes [not_binary--storage921624073--input921874253];0.417436;0.063774;0.481375;197736;185508 +613/3917;Nairobi: opcodes [not_binary--storage921624073--input921874253];0.42321;0.064044;0.48736;197860;185668 +614/3917;Alpha: opcodes [not_binary--storage921624073--input24243730];0.435283;0.052037;0.487435;197728;185216 +615/3917;Mumbai: opcodes [not_binary--storage921624073--input24243730];0.433816;0.056132;0.490135;197728;185512 +616/3917;Nairobi: opcodes [not_binary--storage921624073--input24243730];0.424427;0.056084;0.480476;197988;185196 +617/3917;Alpha: opcodes [not_binary--storage921624073--input788662499];0.444566;0.043596;0.488186;197728;185284 +618/3917;Mumbai: opcodes [not_binary--storage921624073--input788662499];0.402522;0.078913;0.48139;197736;185136 +619/3917;Nairobi: opcodes [not_binary--storage921624073--input788662499];0.450987;0.03628;0.487352;197860;185480 +620/3917;Alpha: opcodes [not_binary--storage921624073--input1051197453];0.424349;0.068028;0.492595;197732;185300 +621/3917;Mumbai: opcodes [not_binary--storage921624073--input1051197453];0.438286;0.051853;0.490301;197736;185536 +622/3917;Nairobi: opcodes [not_binary--storage921624073--input1051197453];0.40794;0.067634;0.47575;197864;186960 +623/3917;Alpha: opcodes [not_binary--storage921624073--input906118781];0.434898;0.052254;0.487244;197732;185252 +624/3917;Mumbai: opcodes [not_binary--storage921624073--input906118781];0.432819;0.060159;0.493146;197736;185600 +625/3917;Nairobi: opcodes [not_binary--storage921624073--input906118781];0.432571;0.051923;0.484626;197856;185416 +626/3917;Alpha: opcodes [xor--storage921624073--input1058477720];0.420798;0.064838;0.486961;197608;185288 +627/3917;Mumbai: opcodes [xor--storage921624073--input1058477720];0.438916;0.040287;0.479242;197732;185436 +628/3917;Nairobi: opcodes [xor--storage921624073--input1058477720];0.430583;0.059841;0.49047;197860;185348 +629/3917;Alpha: opcodes [xor--storage921624073--input617591686];0.422835;0.067195;0.490275;197604;185364 +630/3917;Mumbai: opcodes [xor--storage921624073--input617591686];0.41251;0.075982;0.488615;197736;185544 +631/3917;Nairobi: opcodes [xor--storage921624073--input617591686];0.417653;0.072279;0.490033;197992;185620 +632/3917;Alpha: opcodes [xor--storage921624073--input246594902];0.421672;0.063751;0.485665;197608;185388 +633/3917;Mumbai: opcodes [xor--storage921624073--input246594902];0.426006;0.055532;0.481429;197732;185368 +634/3917;Nairobi: opcodes [xor--storage921624073--input246594902];0.431977;0.055544;0.487593;197864;185448 +635/3917;Alpha: opcodes [xor--storage921624073--input639311176];0.409668;0.079971;0.489655;197604;185484 +636/3917;Mumbai: opcodes [xor--storage921624073--input639311176];0.436742;0.051896;0.489946;197732;185508 +637/3917;Nairobi: opcodes [xor--storage921624073--input639311176];0.42687;0.056412;0.483515;197688;185696 +638/3917;Alpha: opcodes [xor--storage921624073--input1073176155];0.4247;0.064228;0.489047;197864;185416 +639/3917;Mumbai: opcodes [xor--storage921624073--input1073176155];0.438819;0.056354;0.495284;197728;185516 +640/3917;Nairobi: opcodes [xor--storage921624073--input1073176155];0.436728;0.048077;0.484982;197992;185552 +641/3917;Alpha: opcodes [xor--storage921624073--input576248088];0.423887;0.063927;0.487867;197604;185336 +642/3917;Mumbai: opcodes [xor--storage921624073--input576248088];0.43132;0.05609;0.487496;197600;185484 +643/3917;Nairobi: opcodes [xor--storage921624073--input576248088];0.43902;0.052245;0.491351;197864;185588 +644/3917;Alpha: opcodes [xor--storage921624073--input967929605];0.422754;0.059976;0.482698;197600;185340 +645/3917;Mumbai: opcodes [xor--storage921624073--input967929605];0.442634;0.047875;0.490604;197736;185576 +646/3917;Nairobi: opcodes [xor--storage921624073--input967929605];0.434523;0.059934;0.494558;197860;185556 +647/3917;Alpha: opcodes [xor--storage921624073--input506603577];0.41208;0.067464;0.479676;197604;185208 +648/3917;Mumbai: opcodes [xor--storage921624073--input506603577];0.414416;0.071992;0.486458;197732;185516 +649/3917;Nairobi: opcodes [xor--storage921624073--input506603577];0.426718;0.056015;0.482837;197856;185392 +650/3917;Alpha: opcodes [xor--storage921624073--input612012282];0.421559;0.064216;0.485908;197736;185240 +651/3917;Mumbai: opcodes [xor--storage921624073--input612012282];0.451987;0.035972;0.487844;197732;185348 +652/3917;Nairobi: opcodes [xor--storage921624073--input612012282];0.430637;0.055981;0.486714;197992;185364 +653/3917;Alpha: opcodes [xor--storage921624073--input688315180];0.429674;0.056168;0.485991;197600;185324 +654/3917;Mumbai: opcodes [xor--storage921624073--input688315180];0.402165;0.080693;0.483062;197736;185476 +655/3917;Nairobi: opcodes [xor--storage921624073--input688315180];0.396605;0.083692;0.480385;197988;185492 +656/3917;Alpha: opcodes [shifts--storage921624073--input485030042];0.416046;0.067792;0.485268;197728;185336 +657/3917;Mumbai: opcodes [shifts--storage921624073--input485030042];0.427738;0.063945;0.49181;197736;185532 +658/3917;Nairobi: opcodes [shifts--storage921624073--input485030042];0.422371;0.071878;0.494339;197984;185540 +659/3917;Alpha: opcodes [shifts--storage921624073--input340971987];0.433033;0.052813;0.486077;197608;185316 +660/3917;Mumbai: opcodes [shifts--storage921624073--input340971987];0.449763;0.040175;0.490146;197732;185708 +661/3917;Nairobi: opcodes [shifts--storage921624073--input340971987];0.442326;0.043887;0.486399;197856;185396 +662/3917;Alpha: opcodes [shifts--storage921624073--input769385932];0.403529;0.079912;0.483571;197736;185196 +663/3917;Mumbai: opcodes [shifts--storage921624073--input769385932];0.440763;0.047954;0.488861;197728;185524 +664/3917;Nairobi: opcodes [shifts--storage921624073--input769385932];0.431708;0.059851;0.491972;197728;185456 +665/3917;Alpha: opcodes [shifts--storage921624073--input424849461];0.439067;0.043586;0.482789;197604;185268 +666/3917;Mumbai: opcodes [shifts--storage921624073--input424849461];0.420832;0.068395;0.489363;197732;185380 +667/3917;Nairobi: opcodes [shifts--storage921624073--input424849461];0.43668;0.060064;0.496949;197856;185256 +668/3917;Alpha: opcodes [shifts--storage921624073--input115382786];0.429595;0.056191;0.485902;197860;185148 +669/3917;Mumbai: opcodes [shifts--storage921624073--input115382786];0.440875;0.048127;0.489199;197736;185444 +670/3917;Nairobi: opcodes [shifts--storage921624073--input115382786];0.42662;0.059778;0.486449;197856;185672 +671/3917;Alpha: opcodes [shifts--storage921624073--input705767726];0.435917;0.059855;0.496038;197864;185296 +672/3917;Mumbai: opcodes [shifts--storage921624073--input705767726];0.438323;0.056375;0.495304;197604;185528 +673/3917;Nairobi: opcodes [shifts--storage921624073--input705767726];0.446776;0.048302;0.495633;197860;185296 +674/3917;Alpha: opcodes [shifts--storage921624073--input913715337];0.430628;0.052059;0.482834;197736;185420 +675/3917;Mumbai: opcodes [shifts--storage921624073--input913715337];0.438332;0.051975;0.490466;197604;185620 +676/3917;Nairobi: opcodes [shifts--storage921624073--input913715337];0.440559;0.047919;0.488674;197864;185452 +677/3917;Alpha: opcodes [shifts--storage921624073--input271566295];0.42584;0.064101;0.49007;197604;185240 +678/3917;Mumbai: opcodes [shifts--storage921624073--input271566295];0.43073;0.060379;0.491241;197736;185532 +679/3917;Nairobi: opcodes [shifts--storage921624073--input271566295];0.430457;0.075779;0.506315;197864;185376 +680/3917;Alpha: opcodes [shifts--storage921624073--input413621582];0.434724;0.051878;0.486642;197732;185132 +681/3917;Mumbai: opcodes [shifts--storage921624073--input413621582];0.424292;0.063692;0.488152;197732;185656 +682/3917;Nairobi: opcodes [shifts--storage921624073--input413621582];0.422745;0.060297;0.483209;197860;185552 +683/3917;Alpha: opcodes [shifts--storage921624073--input374168553];0.43147;0.051838;0.483403;197736;185200 +684/3917;Mumbai: opcodes [shifts--storage921624073--input374168553];0.412852;0.072085;0.485134;197732;185540 +685/3917;Nairobi: opcodes [shifts--storage921624073--input374168553];0.410377;0.074948;0.485409;197860;185728 +686/3917;Alpha: opcodes [concat_list--storage79230375--input264787654];0.406849;0.079438;0.48404;197736;185548 +687/3917;Mumbai: opcodes [concat_list--storage79230375--input264787654];0.424587;0.064094;0.486401;197864;185392 +688/3917;Nairobi: opcodes [concat_list--storage79230375--input264787654];0.434666;0.063746;0.494734;197992;185384 +689/3917;Alpha: opcodes [concat_list--storage79230375--input457300675];0.440833;0.043924;0.485001;197856;185420 +690/3917;Mumbai: opcodes [concat_list--storage79230375--input457300675];0.430314;0.052013;0.482454;197984;185472 +691/3917;Nairobi: opcodes [concat_list--storage79230375--input457300675];0.428357;0.055994;0.484455;197860;185636 +692/3917;Alpha: opcodes [concat_list--storage79230375--input316676251];0.425696;0.067662;0.490581;197860;185568 +693/3917;Mumbai: opcodes [concat_list--storage79230375--input316676251];0.435087;0.055939;0.488602;197988;186000 +694/3917;Nairobi: opcodes [concat_list--storage79230375--input316676251];0.426995;0.063808;0.488387;198068;185788 +695/3917;Alpha: opcodes [concat_hello_bytes--storage457300675--input441061063];0.438959;0.052013;0.491174;197604;185124 +696/3917;Mumbai: opcodes [concat_hello_bytes--storage457300675--input441061063];0.428306;0.060014;0.488487;197732;185496 +697/3917;Nairobi: opcodes [concat_hello_bytes--storage457300675--input441061063];0.425827;0.055968;0.48191;197992;185520 +698/3917;Alpha: opcodes [concat_hello_bytes--storage457300675--input457300675];0.414882;0.072315;0.487307;197736;185316 +699/3917;Mumbai: opcodes [concat_hello_bytes--storage457300675--input457300675];0.434359;0.05192;0.486444;197728;185704 +700/3917;Nairobi: opcodes [concat_hello_bytes--storage457300675--input457300675];0.428587;0.059991;0.488558;197860;185568 +701/3917;Alpha: opcodes [concat_hello_bytes--storage457300675--input354091714];0.428871;0.064065;0.493044;197608;185136 +702/3917;Mumbai: opcodes [concat_hello_bytes--storage457300675--input354091714];0.418482;0.064135;0.482679;197732;185756 +703/3917;Nairobi: opcodes [concat_hello_bytes--storage457300675--input354091714];0.422601;0.067866;0.490546;197860;185236 +704/3917;Alpha: opcodes [list_id--storage528921618--input656499821];0.415517;0.071289;0.488241;197608;185324 +705/3917;Mumbai: opcodes [list_id--storage528921618--input656499821];0.422854;0.068056;0.491054;197604;185240 +706/3917;Nairobi: opcodes [list_id--storage528921618--input656499821];0.412894;0.068447;0.48153;197860;185260 +707/3917;Alpha: opcodes [list_id--storage528921618--input457300675];0.408725;0.068173;0.477153;197736;185256 +708/3917;Mumbai: opcodes [list_id--storage528921618--input457300675];0.424439;0.059233;0.483779;197728;185488 +709/3917;Nairobi: opcodes [list_id--storage528921618--input457300675];0.446617;0.036261;0.483114;197860;185064 +710/3917;Alpha: opcodes [list_id--storage528921618--input264787654];0.4411;0.048049;0.489344;197736;185316 +711/3917;Mumbai: opcodes [list_id--storage528921618--input264787654];0.423189;0.067953;0.491267;197608;185564 +712/3917;Nairobi: opcodes [list_id--storage528921618--input264787654];0.430906;0.059888;0.490954;197984;185196 +713/3917;Alpha: opcodes [list_id_map--storage528921618--input656499821];0.421426;0.066585;0.489388;197604;185288 +714/3917;Mumbai: opcodes [list_id_map--storage528921618--input656499821];0.43105;0.051875;0.483033;197732;185292 +715/3917;Nairobi: opcodes [list_id_map--storage528921618--input656499821];0.41295;0.072188;0.485257;197856;185224 +716/3917;Alpha: opcodes [list_id_map--storage528921618--input457300675];0.428025;0.068005;0.496376;197604;185400 +717/3917;Mumbai: opcodes [list_id_map--storage528921618--input457300675];0.406294;0.071767;0.478353;197860;185568 +718/3917;Nairobi: opcodes [list_id_map--storage528921618--input457300675];0.418656;0.063815;0.482464;197864;185304 +719/3917;Alpha: opcodes [list_id_map--storage528921618--input264787654];0.406364;0.07196;0.478496;197736;185288 +720/3917;Mumbai: opcodes [list_id_map--storage528921618--input264787654];0.417432;0.064266;0.481843;197732;185324 +721/3917;Nairobi: opcodes [list_id_map--storage528921618--input264787654];0.441345;0.052234;0.493785;197860;185312 +722/3917;Alpha: opcodes [map_id--storage457300675--input599923743];0.449908;0.064272;0.514364;197736;185544 +723/3917;Mumbai: opcodes [map_id--storage457300675--input599923743];0.406527;0.075583;0.482388;197604;185360 +724/3917;Nairobi: opcodes [map_id--storage457300675--input599923743];0.41906;0.063895;0.483121;197860;185300 +725/3917;Alpha: opcodes [map_id--storage457300675--input1027566226];0.432424;0.051695;0.48417;197732;185260 +726/3917;Mumbai: opcodes [map_id--storage457300675--input1027566226];0.422393;0.063893;0.48648;197728;185264 +727/3917;Nairobi: opcodes [map_id--storage457300675--input1027566226];0.431269;0.052026;0.483052;197988;185208 +728/3917;Alpha: opcodes [map_id--storage457300675--input276660554];0.440188;0.044009;0.484438;197608;185224 +729/3917;Mumbai: opcodes [map_id--storage457300675--input276660554];0.422585;0.068241;0.490932;197736;185528 +730/3917;Nairobi: opcodes [map_id--storage457300675--input276660554];0.434045;0.05205;0.48621;197856;185228 +731/3917;Alpha: opcodes [map_mem_nat--storage806237530--input453441034];0.41647;0.071842;0.489625;197732;185336 +732/3917;Mumbai: opcodes [map_mem_nat--storage806237530--input453441034];0.449562;0.044931;0.494829;197736;185740 +733/3917;Nairobi: opcodes [map_mem_nat--storage806237530--input453441034];0.426984;0.060346;0.487327;197864;185720 +734/3917;Alpha: opcodes [map_mem_nat--storage495706788--input453441034];0.42265;0.063819;0.486509;197728;185152 +735/3917;Mumbai: opcodes [map_mem_nat--storage495706788--input453441034];0.426814;0.059859;0.486739;197864;185684 +736/3917;Nairobi: opcodes [map_mem_nat--storage495706788--input453441034];0.434898;0.047903;0.483024;197864;185480 +737/3917;Alpha: opcodes [map_mem_nat--storage690637660--input453441034];0.439091;0.047932;0.487063;197604;185388 +738/3917;Mumbai: opcodes [map_mem_nat--storage690637660--input453441034];0.411726;0.071788;0.483559;197988;185496 +739/3917;Nairobi: opcodes [map_mem_nat--storage690637660--input453441034];0.391335;0.099978;0.491401;197860;185636 +740/3917;Alpha: opcodes [map_mem_nat--storage56274299--input453441034];0.425216;0.05986;0.485219;197732;185208 +741/3917;Mumbai: opcodes [map_mem_nat--storage56274299--input453441034];0.415984;0.075696;0.491962;197732;185380 +742/3917;Nairobi: opcodes [map_mem_nat--storage56274299--input453441034];0.421558;0.072237;0.493963;197992;185568 +743/3917;Alpha: opcodes [map_mem_nat--storage56274299--input564400327];0.424394;0.059918;0.484428;197728;185376 +744/3917;Mumbai: opcodes [map_mem_nat--storage56274299--input564400327];0.412476;0.071814;0.484363;197736;185696 +745/3917;Nairobi: opcodes [map_mem_nat--storage56274299--input564400327];0.426852;0.063894;0.490894;197992;185652 +746/3917;Alpha: opcodes [map_mem_nat--storage56274299--input654274102];0.427528;0.063928;0.491494;197728;185056 +747/3917;Mumbai: opcodes [map_mem_nat--storage56274299--input654274102];0.426817;0.051964;0.478774;197732;185492 +748/3917;Nairobi: opcodes [map_mem_nat--storage56274299--input654274102];0.419715;0.075707;0.495467;197988;185592 +749/3917;Alpha: opcodes [map_mem_string--storage915708427--input700475845];0.413097;0.083814;0.497077;197732;185336 +750/3917;Mumbai: opcodes [map_mem_string--storage915708427--input700475845];0.441287;0.047883;0.489202;197728;185556 +751/3917;Nairobi: opcodes [map_mem_string--storage915708427--input700475845];0.434397;0.051804;0.486308;197860;185508 +752/3917;Alpha: opcodes [map_mem_string--storage495706788--input700475845];0.414709;0.071864;0.486676;197732;185244 +753/3917;Mumbai: opcodes [map_mem_string--storage495706788--input700475845];0.436721;0.051947;0.488814;197728;185580 +754/3917;Nairobi: opcodes [map_mem_string--storage495706788--input700475845];0.416023;0.071707;0.48786;197856;185532 +755/3917;Alpha: opcodes [map_mem_string--storage936682951--input905318451];0.437119;0.048181;0.485459;197732;185332 +756/3917;Mumbai: opcodes [map_mem_string--storage936682951--input905318451];0.421612;0.067468;0.490459;197584;185696 +757/3917;Nairobi: opcodes [map_mem_string--storage936682951--input905318451];0.425606;0.063827;0.489525;197860;185636 +758/3917;Alpha: opcodes [map_mem_string--storage109689253--input905318451];0.412626;0.080287;0.493024;197608;185092 +759/3917;Mumbai: opcodes [map_mem_string--storage109689253--input905318451];0.441791;0.044183;0.48604;197864;185564 +760/3917;Nairobi: opcodes [map_mem_string--storage109689253--input905318451];0.418828;0.068427;0.487386;197984;185596 +761/3917;Alpha: opcodes [map_mem_string--storage109689253--input700475845];0.437657;0.052192;0.491148;197848;185596 +762/3917;Mumbai: opcodes [map_mem_string--storage109689253--input700475845];0.427061;0.067862;0.494819;197728;185548 +763/3917;Nairobi: opcodes [map_mem_string--storage109689253--input700475845];0.446625;0.040139;0.486945;198244;185404 +764/3917;Alpha: opcodes [map_mem_string--storage109689253--input1071610051];0.426437;0.056133;0.482659;197732;185284 +765/3917;Mumbai: opcodes [map_mem_string--storage109689253--input1071610051];0.417792;0.067637;0.485516;197736;185628 +766/3917;Nairobi: opcodes [map_mem_string--storage109689253--input1071610051];0.419771;0.063702;0.48362;197988;185644 +767/3917;Alpha: opcodes [map_map--storage457300675--input798141440];0.433793;0.059941;0.493898;197732;185308 +768/3917;Mumbai: opcodes [map_map--storage457300675--input798141440];0.448425;0.040039;0.488627;197728;185676 +769/3917;Nairobi: opcodes [map_map--storage457300675--input798141440];0.438237;0.048198;0.486733;197856;185424 +770/3917;Alpha: opcodes [map_map--storage88008216--input798141440];0.396291;0.083532;0.479952;197860;185600 +771/3917;Mumbai: opcodes [map_map--storage88008216--input798141440];0.435535;0.04401;0.479757;197604;185512 +772/3917;Nairobi: opcodes [map_map--storage88008216--input798141440];0.419007;0.063846;0.48285;197860;185360 +773/3917;Alpha: opcodes [map_map--storage794999348--input152441147];0.41786;0.068174;0.486086;197860;185420 +774/3917;Mumbai: opcodes [map_map--storage794999348--input152441147];0.427267;0.064014;0.491329;197988;185608 +775/3917;Nairobi: opcodes [map_map--storage794999348--input152441147];0.424261;0.064048;0.493645;197988;185612 +776/3917;Alpha: opcodes [big_map_mem_nat--storage806237530--input453441034];0.422087;0.068427;0.492044;197860;185252 +777/3917;Mumbai: opcodes [big_map_mem_nat--storage806237530--input453441034];0.413261;0.080068;0.493488;197732;185612 +778/3917;Nairobi: opcodes [big_map_mem_nat--storage806237530--input453441034];0.425165;0.064027;0.489303;197860;185608 +779/3917;Alpha: opcodes [big_map_mem_nat--storage495706788--input453441034];0.425465;0.064;0.489629;197736;185320 +780/3917;Mumbai: opcodes [big_map_mem_nat--storage495706788--input453441034];0.43317;0.048133;0.481292;197732;185644 +781/3917;Nairobi: opcodes [big_map_mem_nat--storage495706788--input453441034];0.431819;0.05587;0.487759;197864;185568 +782/3917;Alpha: opcodes [big_map_mem_nat--storage690637660--input453441034];0.431593;0.051936;0.483682;197732;185432 +783/3917;Mumbai: opcodes [big_map_mem_nat--storage690637660--input453441034];0.42211;0.064065;0.486406;197856;185516 +784/3917;Nairobi: opcodes [big_map_mem_nat--storage690637660--input453441034];0.434398;0.047825;0.482401;197856;185520 +785/3917;Alpha: opcodes [big_map_mem_nat--storage56274299--input453441034];0.421266;0.07174;0.493071;197728;185604 +786/3917;Mumbai: opcodes [big_map_mem_nat--storage56274299--input453441034];0.42477;0.064073;0.488977;197856;185412 +787/3917;Nairobi: opcodes [big_map_mem_nat--storage56274299--input453441034];0.423269;0.059901;0.483202;198112;185636 +788/3917;Alpha: opcodes [big_map_mem_nat--storage56274299--input564400327];0.420575;0.072035;0.492648;197860;185324 +789/3917;Mumbai: opcodes [big_map_mem_nat--storage56274299--input564400327];0.4325;0.051784;0.484279;197860;185828 +790/3917;Nairobi: opcodes [big_map_mem_nat--storage56274299--input564400327];0.429593;0.055619;0.485185;197984;185540 +791/3917;Alpha: opcodes [big_map_mem_nat--storage56274299--input654274102];0.433868;0.056422;0.490413;197988;185380 +792/3917;Mumbai: opcodes [big_map_mem_nat--storage56274299--input654274102];0.435901;0.047978;0.483951;197864;185628 +793/3917;Nairobi: opcodes [big_map_mem_nat--storage56274299--input654274102];0.418668;0.072537;0.491241;198116;185620 +794/3917;Alpha: opcodes [big_map_mem_string--storage915708427--input700475845];0.432195;0.055687;0.487992;197732;185228 +795/3917;Mumbai: opcodes [big_map_mem_string--storage915708427--input700475845];0.398357;0.083896;0.482277;197860;185588 +796/3917;Nairobi: opcodes [big_map_mem_string--storage915708427--input700475845];0.429578;0.04819;0.477826;197988;185484 +797/3917;Alpha: opcodes [big_map_mem_string--storage495706788--input700475845];0.427197;0.055894;0.483282;197604;185372 +798/3917;Mumbai: opcodes [big_map_mem_string--storage495706788--input700475845];0.430433;0.052299;0.482899;197736;185508 +799/3917;Nairobi: opcodes [big_map_mem_string--storage495706788--input700475845];0.424606;0.059958;0.484659;197860;185508 +800/3917;Alpha: opcodes [big_map_mem_string--storage936682951--input905318451];0.426948;0.055864;0.482826;197864;185548 +801/3917;Mumbai: opcodes [big_map_mem_string--storage936682951--input905318451];0.422751;0.059978;0.482815;197864;185700 +802/3917;Nairobi: opcodes [big_map_mem_string--storage936682951--input905318451];0.44014;0.039977;0.480196;197988;185380 +803/3917;Alpha: opcodes [big_map_mem_string--storage109689253--input905318451];0.429148;0.060139;0.489378;197736;185520 +804/3917;Mumbai: opcodes [big_map_mem_string--storage109689253--input905318451];0.412059;0.079551;0.491647;197860;185680 +805/3917;Nairobi: opcodes [big_map_mem_string--storage109689253--input905318451];0.418485;0.071768;0.490327;197988;185328 +806/3917;Alpha: opcodes [big_map_mem_string--storage109689253--input700475845];0.428451;0.056008;0.484502;197728;185512 +807/3917;Mumbai: opcodes [big_map_mem_string--storage109689253--input700475845];0.42691;0.060021;0.486827;197864;185484 +808/3917;Nairobi: opcodes [big_map_mem_string--storage109689253--input700475845];0.421533;0.060043;0.481687;197988;185564 +809/3917;Alpha: opcodes [big_map_mem_string--storage109689253--input1071610051];0.437749;0.052213;0.490067;197728;185508 +810/3917;Mumbai: opcodes [big_map_mem_string--storage109689253--input1071610051];0.44307;0.043992;0.487046;197860;185640 +811/3917;Nairobi: opcodes [big_map_mem_string--storage109689253--input1071610051];0.431944;0.055909;0.487852;197992;185596 +812/3917;Alpha: opcodes [set_id--storage457300675--input264787654];0.426852;0.055947;0.483013;197604;185132 +813/3917;Mumbai: opcodes [set_id--storage457300675--input264787654];0.446937;0.044285;0.491373;197728;185244 +814/3917;Nairobi: opcodes [set_id--storage457300675--input264787654];0.435947;0.043744;0.479787;197732;185348 +815/3917;Alpha: opcodes [set_id--storage457300675--input457300675];0.419881;0.059672;0.479767;197604;185388 +816/3917;Mumbai: opcodes [set_id--storage457300675--input457300675];0.414714;0.067792;0.482455;197732;185324 +817/3917;Nairobi: opcodes [set_id--storage457300675--input457300675];0.421907;0.068194;0.490279;197860;185300 +818/3917;Alpha: opcodes [set_id--storage457300675--input989507347];0.416535;0.068122;0.484724;197600;185188 +819/3917;Mumbai: opcodes [set_id--storage457300675--input989507347];0.434547;0.051951;0.486633;197580;185512 +820/3917;Nairobi: opcodes [set_id--storage457300675--input989507347];0.418818;0.060364;0.479273;197860;185204 +821/3917;Alpha: opcodes [list_concat--storage717096222--input546523343];0.434703;0.055771;0.491791;197728;185184 +822/3917;Mumbai: opcodes [list_concat--storage717096222--input546523343];0.420635;0.060105;0.480923;197732;185652 +823/3917;Nairobi: opcodes [list_concat--storage717096222--input546523343];0.415794;0.063973;0.47988;197864;185356 +824/3917;Alpha: opcodes [list_concat--storage717096222--input457300675];0.437818;0.044166;0.482311;197736;185348 +825/3917;Mumbai: opcodes [list_concat--storage717096222--input457300675];0.430555;0.059803;0.490511;197860;185232 +826/3917;Nairobi: opcodes [list_concat--storage717096222--input457300675];0.419958;0.064053;0.484141;197860;185380 +827/3917;Alpha: opcodes [list_concat_bytes--storage726220441--input972761363];0.41983;0.067965;0.488005;197732;185216 +828/3917;Mumbai: opcodes [list_concat_bytes--storage726220441--input972761363];0.404667;0.083835;0.48857;197728;185204 +829/3917;Nairobi: opcodes [list_concat_bytes--storage726220441--input972761363];0.418185;0.071748;0.495079;197732;185536 +830/3917;Alpha: opcodes [list_concat_bytes--storage149262694--input220724351];0.442836;0.044306;0.487112;197732;185308 +831/3917;Mumbai: opcodes [list_concat_bytes--storage149262694--input220724351];0.416189;0.067662;0.484001;197736;185156 +832/3917;Nairobi: opcodes [list_concat_bytes--storage149262694--input220724351];0.419129;0.060262;0.4795;197864;185340 +833/3917;Alpha: opcodes [list_concat_bytes--storage65410082--input457300675];0.399973;0.087546;0.487684;197604;185064 +834/3917;Mumbai: opcodes [list_concat_bytes--storage65410082--input457300675];0.433246;0.056118;0.489607;197736;185560 +835/3917;Nairobi: opcodes [list_concat_bytes--storage65410082--input457300675];0.430084;0.052136;0.482307;197860;185536 +836/3917;Alpha: opcodes [list_concat_bytes--storage149262694--input457300675];0.43106;0.051894;0.483179;197608;185284 +837/3917;Mumbai: opcodes [list_concat_bytes--storage149262694--input457300675];0.426608;0.063816;0.490523;197732;185308 +838/3917;Nairobi: opcodes [list_concat_bytes--storage149262694--input457300675];0.436122;0.059904;0.496246;197856;185376 +839/3917;Alpha: opcodes [list_iter--storage680650890--input568817463];0.439132;0.051923;0.49119;197732;185288 +840/3917;Mumbai: opcodes [list_iter--storage680650890--input568817463];0.438762;0.052389;0.491272;197732;185576 +841/3917;Nairobi: opcodes [list_iter--storage680650890--input568817463];0.42714;0.063912;0.491093;197984;185340 +842/3917;Alpha: opcodes [list_iter--storage680650890--input737923774];0.420891;0.067914;0.488986;197604;185264 +843/3917;Mumbai: opcodes [list_iter--storage680650890--input737923774];0.429124;0.056021;0.485366;197736;185552 +844/3917;Nairobi: opcodes [list_iter--storage680650890--input737923774];0.420622;0.075953;0.496683;197864;185556 +845/3917;Alpha: opcodes [list_size--storage492856247--input457300675];0.422352;0.063685;0.487424;197732;185372 +846/3917;Mumbai: opcodes [list_size--storage492856247--input457300675];0.426542;0.068154;0.494825;197728;185256 +847/3917;Nairobi: opcodes [list_size--storage492856247--input457300675];0.419107;0.063889;0.483121;197860;185640 +848/3917;Alpha: opcodes [list_size--storage492856247--input802622031];0.433836;0.051876;0.485819;197736;185472 +849/3917;Mumbai: opcodes [list_size--storage492856247--input802622031];0.434526;0.060637;0.495307;197856;185248 +850/3917;Nairobi: opcodes [list_size--storage492856247--input802622031];0.429554;0.060195;0.489899;197984;185444 +851/3917;Alpha: opcodes [list_size--storage492856247--input469078912];0.428574;0.0602;0.488923;197736;185352 +852/3917;Mumbai: opcodes [list_size--storage492856247--input469078912];0.428724;0.05604;0.48494;197728;185292 +853/3917;Nairobi: opcodes [list_size--storage492856247--input469078912];0.438687;0.052352;0.491144;197860;185464 +854/3917;Alpha: opcodes [list_size--storage492856247--input403499055];0.41857;0.06399;0.482685;197604;184928 +855/3917;Mumbai: opcodes [list_size--storage492856247--input403499055];0.385186;0.100532;0.485905;197608;185496 +856/3917;Nairobi: opcodes [list_size--storage492856247--input403499055];0.44241;0.047823;0.49035;197860;185264 +857/3917;Alpha: opcodes [set_member--storage495706788--input33757838];0.418759;0.068313;0.487148;197732;185548 +858/3917;Mumbai: opcodes [set_member--storage495706788--input33757838];0.421157;0.067829;0.488998;197864;185372 +859/3917;Nairobi: opcodes [set_member--storage495706788--input33757838];0.439126;0.048379;0.487551;197988;185416 +860/3917;Alpha: opcodes [set_member--storage605111220--input33757838];0.431354;0.052058;0.483399;197860;185580 +861/3917;Mumbai: opcodes [set_member--storage605111220--input33757838];0.442566;0.051561;0.494418;197860;185448 +862/3917;Nairobi: opcodes [set_member--storage605111220--input33757838];0.437396;0.047632;0.485025;197988;185548 +863/3917;Alpha: opcodes [set_member--storage550087893--input79230375];0.449521;0.04015;0.48972;197860;185624 +864/3917;Mumbai: opcodes [set_member--storage550087893--input79230375];0.409914;0.072352;0.48257;197860;185592 +865/3917;Nairobi: opcodes [set_member--storage550087893--input79230375];0.420703;0.067982;0.4887;197984;185628 +866/3917;Alpha: opcodes [set_size--storage492856247--input457300675];0.402232;0.080516;0.482938;197584;185240 +867/3917;Mumbai: opcodes [set_size--storage492856247--input457300675];0.428558;0.056109;0.484835;197732;185224 +868/3917;Nairobi: opcodes [set_size--storage492856247--input457300675];0.43728;0.048136;0.485554;197860;185288 +869/3917;Alpha: opcodes [set_size--storage492856247--input802622031];0.429408;0.055584;0.485147;197604;185316 +870/3917;Mumbai: opcodes [set_size--storage492856247--input802622031];0.44126;0.044115;0.485633;197736;185320 +871/3917;Nairobi: opcodes [set_size--storage492856247--input802622031];0.438678;0.04787;0.486665;197856;185312 +872/3917;Alpha: opcodes [set_size--storage492856247--input469078912];0.420923;0.060356;0.481402;197732;185340 +873/3917;Mumbai: opcodes [set_size--storage492856247--input469078912];0.421241;0.06424;0.485678;197732;185260 +874/3917;Nairobi: opcodes [set_size--storage492856247--input469078912];0.41711;0.071879;0.489094;197856;185280 +875/3917;Alpha: opcodes [set_size--storage492856247--input403499055];0.419809;0.059796;0.479712;197604;185300 +876/3917;Mumbai: opcodes [set_size--storage492856247--input403499055];0.418474;0.071814;0.490505;197736;185268 +877/3917;Nairobi: opcodes [set_size--storage492856247--input403499055];0.428136;0.059795;0.488003;197864;185148 +878/3917;Alpha: opcodes [set_iter--storage492856247--input457300675];0.414611;0.068263;0.483052;197608;185272 +879/3917;Mumbai: opcodes [set_iter--storage492856247--input457300675];0.430256;0.051859;0.482406;197732;185584 +880/3917;Nairobi: opcodes [set_iter--storage492856247--input457300675];0.420949;0.059802;0.480796;197988;185584 +881/3917;Alpha: opcodes [set_iter--storage492856247--input802622031];0.405465;0.076205;0.481818;197732;185264 +882/3917;Mumbai: opcodes [set_iter--storage492856247--input802622031];0.434614;0.051902;0.486622;197732;185484 +883/3917;Nairobi: opcodes [set_iter--storage492856247--input802622031];0.43444;0.059797;0.494439;197860;185524 +884/3917;Alpha: opcodes [set_iter--storage492856247--input701684511];0.427076;0.064341;0.491453;197600;185220 +885/3917;Mumbai: opcodes [set_iter--storage492856247--input701684511];0.429936;0.052163;0.482159;197736;185668 +886/3917;Nairobi: opcodes [set_iter--storage492856247--input701684511];0.424565;0.067825;0.492486;197988;185356 +887/3917;Alpha: opcodes [map_size--storage492856247--input457300675];0.422937;0.064355;0.487596;197736;185116 +888/3917;Mumbai: opcodes [map_size--storage492856247--input457300675];0.423201;0.059974;0.483355;197736;185140 +889/3917;Nairobi: opcodes [map_size--storage492856247--input457300675];0.43406;0.048007;0.482377;197864;185316 +890/3917;Alpha: opcodes [map_size--storage492856247--input15265129];0.438587;0.051833;0.490525;197732;185240 +891/3917;Mumbai: opcodes [map_size--storage492856247--input15265129];0.432097;0.051778;0.484009;197728;185132 +892/3917;Nairobi: opcodes [map_size--storage492856247--input15265129];0.408636;0.076164;0.484936;197864;185280 +893/3917;Alpha: opcodes [map_size--storage492856247--input158311065];0.433203;0.059977;0.493358;197600;185352 +894/3917;Mumbai: opcodes [map_size--storage492856247--input158311065];0.442924;0.048432;0.491511;197732;185372 +895/3917;Nairobi: opcodes [map_size--storage492856247--input158311065];0.439998;0.047846;0.487987;197864;185308 +896/3917;Alpha: opcodes [map_size--storage492856247--input456982702];0.422349;0.063806;0.486323;197600;185284 +897/3917;Mumbai: opcodes [map_size--storage492856247--input456982702];0.417559;0.075948;0.493714;197736;185272 +898/3917;Nairobi: opcodes [map_size--storage492856247--input456982702];0.429645;0.059665;0.489411;197856;185276 +899/3917;Alpha: opcodes [contains_all--storage921624073--input772794967];0.424726;0.06413;0.490154;197860;185504 +900/3917;Mumbai: opcodes [contains_all--storage921624073--input772794967];0.419791;0.063823;0.483655;197984;185660 +901/3917;Nairobi: opcodes [contains_all--storage921624073--input772794967];0.424601;0.059967;0.484627;198120;185620 +902/3917;Alpha: opcodes [contains_all--storage921624073--input964818218];0.425166;0.06357;0.486352;198116;185836 +903/3917;Mumbai: opcodes [contains_all--storage921624073--input964818218];0.449438;0.052227;0.498958;198244;186052 +904/3917;Nairobi: opcodes [contains_all--storage921624073--input964818218];0.437455;0.04821;0.483256;198376;186120 +905/3917;Alpha: opcodes [contains_all--storage921624073--input545734274];0.445661;0.048033;0.491094;198116;185900 +906/3917;Mumbai: opcodes [contains_all--storage921624073--input545734274];0.428759;0.060125;0.486726;198244;186092 +907/3917;Nairobi: opcodes [contains_all--storage921624073--input545734274];0.425601;0.063759;0.487212;198368;186048 +908/3917;Alpha: opcodes [contains_all--storage921624073--input315650912];0.423258;0.063928;0.48485;198116;185456 +909/3917;Mumbai: opcodes [contains_all--storage921624073--input315650912];0.430949;0.059886;0.488613;198116;186388 +910/3917;Nairobi: opcodes [contains_all--storage921624073--input315650912];0.439774;0.052086;0.489181;198368;186032 +911/3917;Alpha: opcodes [contains_all--storage921624073--input917967660];0.439929;0.059885;0.496915;199392;187100 +912/3917;Mumbai: opcodes [contains_all--storage921624073--input917967660];0.428017;0.063571;0.488741;199656;187332 +913/3917;Nairobi: opcodes [contains_all--storage921624073--input917967660];0.427484;0.067799;0.492435;199780;187208 +914/3917;Alpha: opcodes [contains_all--storage921624073--input51111414];0.443406;0.055876;0.496465;199268;186968 +915/3917;Mumbai: opcodes [contains_all--storage921624073--input51111414];0.419264;0.071505;0.488082;199396;187120 +916/3917;Nairobi: opcodes [contains_all--storage921624073--input51111414];0.445772;0.052103;0.49514;199648;187408 +917/3917;Alpha: opcodes [concat_hello--storage457300675--input640104625];0.439159;0.055686;0.496181;197604;185132 +918/3917;Mumbai: opcodes [concat_hello--storage457300675--input640104625];0.445714;0.047982;0.493872;197588;185568 +919/3917;Nairobi: opcodes [concat_hello--storage457300675--input640104625];0.433823;0.052023;0.485974;197864;185172 +920/3917;Alpha: opcodes [concat_hello--storage457300675--input457300675];0.434103;0.052135;0.486394;197860;185352 +921/3917;Mumbai: opcodes [concat_hello--storage457300675--input457300675];0.43686;0.055932;0.492867;197728;185308 +922/3917;Nairobi: opcodes [concat_hello--storage457300675--input457300675];0.441094;0.048117;0.489408;197860;185340 +923/3917;Alpha: opcodes [concat_hello--storage457300675--input392583650];0.441225;0.044205;0.485557;197860;185408 +924/3917;Mumbai: opcodes [concat_hello--storage457300675--input392583650];0.435058;0.051934;0.486951;197732;185120 +925/3917;Nairobi: opcodes [concat_hello--storage457300675--input392583650];0.426512;0.056285;0.482887;197864;185520 +926/3917;Alpha: opcodes [empty_map--storage457300675--input125992234];0.412217;0.067978;0.481707;197604;184936 +927/3917;Mumbai: opcodes [empty_map--storage457300675--input125992234];0.432967;0.047769;0.480897;197732;185572 +928/3917;Nairobi: opcodes [empty_map--storage457300675--input125992234];0.425774;0.055883;0.481774;197984;185416 +929/3917;Alpha: opcodes [get_map_value--storage139236239--input329240220];0.432369;0.055908;0.488621;197600;185376 +930/3917;Mumbai: opcodes [get_map_value--storage139236239--input329240220];0.417728;0.064014;0.481815;197736;186992 +931/3917;Nairobi: opcodes [get_map_value--storage139236239--input329240220];0.404123;0.083708;0.487845;197864;185560 +932/3917;Alpha: opcodes [get_map_value--storage139236239--input79230375];0.414603;0.075868;0.490543;197736;185364 +933/3917;Mumbai: opcodes [get_map_value--storage139236239--input79230375];0.436864;0.047955;0.484901;197732;185472 +934/3917;Nairobi: opcodes [get_map_value--storage139236239--input79230375];0.423245;0.067657;0.490997;197864;185568 +935/3917;Alpha: opcodes [get_map_value--storage329396864--input156280093];0.440788;0.05602;0.496868;197864;185132 +936/3917;Mumbai: opcodes [get_map_value--storage329396864--input156280093];0.41571;0.071883;0.487794;197736;185644 +937/3917;Nairobi: opcodes [get_map_value--storage329396864--input156280093];0.443027;0.047964;0.491012;197988;185548 +938/3917;Alpha: opcodes [get_and_update_map--storage547821324--input329240220];0.43896;0.051409;0.495932;197732;185328 +939/3917;Mumbai: opcodes [get_and_update_map--storage547821324--input329240220];0.43689;0.047854;0.484629;197736;185508 +940/3917;Nairobi: opcodes [get_and_update_map--storage547821324--input329240220];0.409186;0.071647;0.480972;197860;185432 +941/3917;Alpha: opcodes [get_and_update_map--storage382368661--input329240220];0.442329;0.047838;0.490374;197732;185312 +942/3917;Mumbai: opcodes [get_and_update_map--storage382368661--input329240220];0.396381;0.08807;0.484545;197736;185652 +943/3917;Nairobi: opcodes [get_and_update_map--storage382368661--input329240220];0.435529;0.047936;0.483581;197864;185376 +944/3917;Alpha: opcodes [get_and_update_map--storage1026405794--input329240220];0.425715;0.060308;0.48602;197732;185312 +945/3917;Mumbai: opcodes [get_and_update_map--storage1026405794--input329240220];0.451065;0.036251;0.487389;197732;185608 +946/3917;Nairobi: opcodes [get_and_update_map--storage1026405794--input329240220];0.427749;0.063784;0.491707;197736;185192 +947/3917;Alpha: opcodes [get_and_update_map--storage496578814--input329240220];0.43658;0.059953;0.49664;197480;185552 +948/3917;Mumbai: opcodes [get_and_update_map--storage496578814--input329240220];0.411278;0.0759;0.487236;197736;185536 +949/3917;Nairobi: opcodes [get_and_update_map--storage496578814--input329240220];0.443948;0.047987;0.492073;197864;185520 +950/3917;Alpha: opcodes [get_and_update_map--storage496578814--input507231566];0.413758;0.068236;0.482173;197732;185628 +951/3917;Mumbai: opcodes [get_and_update_map--storage496578814--input507231566];0.431331;0.05215;0.483531;197736;185644 +952/3917;Nairobi: opcodes [get_and_update_map--storage496578814--input507231566];0.422449;0.059956;0.482571;197988;185532 +953/3917;Alpha: opcodes [get_and_update_map--storage796012494--input156280093];0.416151;0.067458;0.484717;197728;185144 +954/3917;Mumbai: opcodes [get_and_update_map--storage796012494--input156280093];0.431729;0.05996;0.491694;197736;185420 +955/3917;Nairobi: opcodes [get_and_update_map--storage796012494--input156280093];0.43176;0.051949;0.483781;197856;185752 +956/3917;Alpha: opcodes [get_and_update_map--storage796012494--input228164856];0.428561;0.059871;0.488704;197736;185520 +957/3917;Mumbai: opcodes [get_and_update_map--storage796012494--input228164856];0.428196;0.055843;0.484171;197732;185684 +958/3917;Nairobi: opcodes [get_and_update_map--storage796012494--input228164856];0.421362;0.060273;0.481793;197864;185640 +959/3917;Alpha: opcodes [map_iter--storage1011138251--input532072758];0.424664;0.071511;0.49498;198240;185916 +960/3917;Mumbai: opcodes [map_iter--storage1011138251--input532072758];0.424979;0.072292;0.495152;198112;185772 +961/3917;Nairobi: opcodes [map_iter--storage1011138251--input532072758];0.446972;0.044046;0.488617;198244;185944 +962/3917;Alpha: opcodes [map_iter--storage1011138251--input403579222];0.419467;0.067435;0.484509;198368;185860 +963/3917;Mumbai: opcodes [map_iter--storage1011138251--input403579222];0.420512;0.064144;0.482564;198244;185788 +964/3917;Nairobi: opcodes [map_iter--storage1011138251--input403579222];0.434356;0.047755;0.479779;198240;185736 +965/3917;Alpha: opcodes [if--storage921624073--input954397288];0.442688;0.039943;0.482897;197604;185336 +966/3917;Mumbai: opcodes [if--storage921624073--input954397288];0.433211;0.064221;0.497568;197600;185580 +967/3917;Nairobi: opcodes [if--storage921624073--input954397288];0.456226;0.036018;0.492366;197860;185252 +968/3917;Alpha: opcodes [if--storage921624073--input570553153];0.435313;0.047925;0.483461;197728;185244 +969/3917;Mumbai: opcodes [if--storage921624073--input570553153];0.433416;0.048302;0.481842;197860;185604 +970/3917;Nairobi: opcodes [if--storage921624073--input570553153];0.424018;0.059807;0.48392;197860;185584 +971/3917;Alpha: opcodes [left_right--storage4177631--input202098045];0.422707;0.063608;0.487671;197604;185516 +972/3917;Mumbai: opcodes [left_right--storage4177631--input202098045];0.434296;0.048139;0.482522;197856;185272 +973/3917;Nairobi: opcodes [left_right--storage4177631--input202098045];0.44414;0.04361;0.487996;197732;185560 +974/3917;Alpha: opcodes [left_right--storage4177631--input44576556];0.447601;0.043891;0.491757;197600;185260 +975/3917;Mumbai: opcodes [left_right--storage4177631--input44576556];0.422711;0.064395;0.487243;197732;185272 +976/3917;Nairobi: opcodes [left_right--storage4177631--input44576556];0.438694;0.047733;0.486487;197860;185492 +977/3917;Alpha: opcodes [reverse_loop--storage528921618--input457300675];0.42327;0.067696;0.492299;197736;185504 +978/3917;Mumbai: opcodes [reverse_loop--storage528921618--input457300675];0.447003;0.036266;0.483319;197736;185692 +979/3917;Nairobi: opcodes [reverse_loop--storage528921618--input457300675];0.432806;0.060041;0.492836;197864;185612 +980/3917;Alpha: opcodes [reverse_loop--storage528921618--input851203613];0.42768;0.060743;0.487183;198116;185480 +981/3917;Mumbai: opcodes [reverse_loop--storage528921618--input851203613];0.41239;0.075214;0.486355;198248;185616 +982/3917;Nairobi: opcodes [reverse_loop--storage528921618--input851203613];0.419737;0.072428;0.489903;198120;185692 +983/3917;Alpha: opcodes [exec_concat--storage398998998--input79230375];0.444848;0.043525;0.488525;197736;185212 +984/3917;Mumbai: opcodes [exec_concat--storage398998998--input79230375];0.441273;0.051637;0.493028;197504;185480 +985/3917;Nairobi: opcodes [exec_concat--storage398998998--input79230375];0.424483;0.067416;0.491914;197860;185560 +986/3917;Alpha: opcodes [exec_concat--storage398998998--input246262487];0.428672;0.05606;0.484834;197604;185424 +987/3917;Mumbai: opcodes [exec_concat--storage398998998--input246262487];0.440512;0.047991;0.488587;197860;185456 +988/3917;Nairobi: opcodes [exec_concat--storage398998998--input246262487];0.44037;0.051331;0.491764;197860;185560 +989/3917;Alpha: opcodes [balance--storage492856247--input125992234];0.424459;0.059957;0.484614;197736;185288 +990/3917;Mumbai: opcodes [balance--storage492856247--input125992234];0.412666;0.075896;0.488794;197860;185188 +991/3917;Nairobi: opcodes [balance--storage492856247--input125992234];0.418998;0.06786;0.486998;197860;185496 +992/3917;Alpha: opcodes [level--storage492856247--input125992234];0.419929;0.068009;0.488088;197604;185224 +993/3917;Mumbai: opcodes [level--storage492856247--input125992234];0.438357;0.043821;0.48235;197608;185348 +994/3917;Nairobi: opcodes [level--storage492856247--input125992234];0.405001;0.080093;0.485134;198120;185260 +995/3917;Alpha: opcodes [tez_add_sub--storage921624073--input856198194];0.422913;0.064656;0.488853;197984;185636 +996/3917;Mumbai: opcodes [tez_add_sub--storage921624073--input856198194];0.41923;0.064045;0.483208;197860;185484 +997/3917;Nairobi: opcodes [tez_add_sub--storage921624073--input856198194];0.420224;0.063939;0.484173;197988;185360 +998/3917;Alpha: opcodes [tez_add_sub--storage921624073--input706350605];0.424609;0.064718;0.486362;197860;185564 +999/3917;Mumbai: opcodes [tez_add_sub--storage921624073--input706350605];0.424988;0.060151;0.485141;197860;185608 +1000/3917;Nairobi: opcodes [tez_add_sub--storage921624073--input706350605];0.448497;0.044013;0.492488;197988;185600 +1001/3917;Alpha: opcodes [add--storage125992234--input125992234];0.44277;0.047674;0.487956;198376;186056 +1002/3917;Mumbai: opcodes [add--storage125992234--input125992234];0.412118;0.072094;0.481931;198372;185912 +1003/3917;Nairobi: opcodes [add--storage125992234--input125992234];0.42182;0.068178;0.487974;198504;186088 +1004/3917;Alpha: opcodes [abs--storage125992234--input420401245];0.424948;0.060928;0.486025;197736;185232 +1005/3917;Mumbai: opcodes [abs--storage125992234--input420401245];0.421135;0.07308;0.494355;197728;185564 +1006/3917;Nairobi: opcodes [abs--storage125992234--input420401245];0.423138;0.063925;0.487096;197860;185588 +1007/3917;Alpha: opcodes [abs--storage125992234--input680650890];0.44221;0.047083;0.489362;197604;185328 +1008/3917;Mumbai: opcodes [abs--storage125992234--input680650890];0.421401;0.060137;0.481659;197604;185480 +1009/3917;Nairobi: opcodes [abs--storage125992234--input680650890];0.414687;0.071949;0.486699;197860;185616 +1010/3917;Alpha: opcodes [abs--storage125992234--input254251340];0.433235;0.047859;0.481111;197600;185320 +1011/3917;Mumbai: opcodes [abs--storage125992234--input254251340];0.416593;0.071778;0.488563;197732;185664 +1012/3917;Nairobi: opcodes [abs--storage125992234--input254251340];0.449468;0.040242;0.489864;197992;185612 +1013/3917;Alpha: opcodes [int--storage921624073--input680650890];0.414636;0.067796;0.482609;197732;185316 +1014/3917;Mumbai: opcodes [int--storage921624073--input680650890];0.419005;0.07182;0.490952;197728;185540 +1015/3917;Nairobi: opcodes [int--storage921624073--input680650890];0.417009;0.068079;0.485298;197860;185528 +1016/3917;Alpha: opcodes [int--storage921624073--input453441034];0.423493;0.055849;0.479573;197732;185324 +1017/3917;Mumbai: opcodes [int--storage921624073--input453441034];0.430885;0.047978;0.479053;197732;185304 +1018/3917;Nairobi: opcodes [int--storage921624073--input453441034];0.422709;0.060105;0.482937;197984;185344 +1019/3917;Alpha: opcodes [int--storage921624073--input535454136];0.42911;0.064109;0.49338;197736;185264 +1020/3917;Mumbai: opcodes [int--storage921624073--input535454136];0.436167;0.059835;0.496145;197732;185320 +1021/3917;Nairobi: opcodes [int--storage921624073--input535454136];0.435141;0.048398;0.483595;197860;185256 +1022/3917;Alpha: opcodes [dip--storage1011138251--input850887554];0.432609;0.056015;0.488774;197736;185252 +1023/3917;Mumbai: opcodes [dip--storage1011138251--input850887554];0.424471;0.059971;0.48458;197732;185560 +1024/3917;Nairobi: opcodes [dip--storage1011138251--input850887554];0.413174;0.071616;0.484905;197864;185692 +1025/3917;Alpha: opcodes [dip--storage1011138251--input590117173];0.442517;0.047846;0.490496;197732;185072 +1026/3917;Mumbai: opcodes [dip--storage1011138251--input590117173];0.429777;0.052177;0.482195;197732;185608 +1027/3917;Nairobi: opcodes [dip--storage1011138251--input590117173];0.419741;0.067963;0.487886;197860;185600 +1028/3917;Alpha: opcodes [first--storage492856247--input962874972];0.428115;0.05562;0.48392;197732;185268 +1029/3917;Mumbai: opcodes [first--storage492856247--input962874972];0.462901;0.028025;0.491012;197732;185528 +1030/3917;Nairobi: opcodes [first--storage492856247--input962874972];0.445251;0.040076;0.485479;197860;185716 +1031/3917;Alpha: opcodes [first--storage492856247--input478406404];0.425777;0.056148;0.482084;197608;185344 +1032/3917;Mumbai: opcodes [first--storage492856247--input478406404];0.422816;0.06781;0.490694;197732;185564 +1033/3917;Nairobi: opcodes [first--storage492856247--input478406404];0.441176;0.040142;0.481493;197864;185632 +1034/3917;Alpha: opcodes [hash_string--storage151303925--input3431716];0.422642;0.059997;0.482802;197608;185340 +1035/3917;Mumbai: opcodes [hash_string--storage151303925--input3431716];0.436757;0.052213;0.489074;197728;185324 +1036/3917;Nairobi: opcodes [hash_string--storage151303925--input3431716];0.441506;0.044123;0.48599;197988;185504 +1037/3917;Alpha: opcodes [hash_string--storage151303925--input535018041];0.426616;0.06414;0.490845;197736;185276 +1038/3917;Mumbai: opcodes [hash_string--storage151303925--input535018041];0.404135;0.071884;0.476154;197732;186832 +1039/3917;Nairobi: opcodes [hash_string--storage151303925--input535018041];0.447752;0.035976;0.483771;197864;186920 +1040/3917;Alpha: opcodes [if_some--storage398998998--input288201633];0.424757;0.05671;0.481731;197736;186804 +1041/3917;Mumbai: opcodes [if_some--storage398998998--input288201633];0.41933;0.059806;0.479256;197732;185372 +1042/3917;Nairobi: opcodes [if_some--storage398998998--input288201633];0.409539;0.072288;0.482266;197860;187028 +1043/3917;Alpha: opcodes [if_some--storage398998998--input921624073];0.432924;0.048105;0.481136;197860;186572 +1044/3917;Mumbai: opcodes [if_some--storage398998998--input921624073];0.429873;0.056171;0.486268;197736;186680 +1045/3917;Nairobi: opcodes [if_some--storage398998998--input921624073];0.413218;0.067813;0.481084;197860;186920 +1046/3917;Alpha: opcodes [set_car--storage224747103--input620760059];0.400364;0.075043;0.476796;197732;186700 +1047/3917;Mumbai: opcodes [set_car--storage224747103--input620760059];0.429353;0.052041;0.481437;197860;187020 +1048/3917;Nairobi: opcodes [set_car--storage224747103--input620760059];0.437734;0.036144;0.47396;197864;186996 +1049/3917;Alpha: opcodes [set_car--storage224747103--input717096222];0.423035;0.055916;0.478953;197736;187068 +1050/3917;Mumbai: opcodes [set_car--storage224747103--input717096222];0.3909;0.07986;0.470814;197736;187088 +1051/3917;Nairobi: opcodes [set_car--storage224747103--input717096222];0.43728;0.043891;0.481269;197864;187276 +1052/3917;Alpha: opcodes [set_car--storage224747103--input79230375];0.41163;0.067985;0.479672;197732;186788 +1053/3917;Mumbai: opcodes [set_car--storage224747103--input79230375];0.432414;0.04803;0.480421;197732;187088 +1054/3917;Nairobi: opcodes [set_car--storage224747103--input79230375];0.424792;0.060875;0.485804;197860;187428 +1055/3917;Alpha: opcodes [set_cdr--storage224747103--input453441034];0.425029;0.0485;0.474907;197608;187048 +1056/3917;Mumbai: opcodes [set_cdr--storage224747103--input453441034];0.429964;0.044099;0.474392;197728;187016 +1057/3917;Nairobi: opcodes [set_cdr--storage224747103--input453441034];0.394727;0.087658;0.482503;197992;187052 +1058/3917;Alpha: opcodes [set_cdr--storage205576101--input654274102];0.429487;0.051669;0.481214;197732;186784 +1059/3917;Mumbai: opcodes [set_cdr--storage205576101--input654274102];0.427818;0.047979;0.475898;197732;186904 +1060/3917;Nairobi: opcodes [set_cdr--storage205576101--input654274102];0.437089;0.052039;0.489097;197864;185544 +1061/3917;Alpha: opcodes [set_cdr--storage611418174--input967284912];0.42688;0.047794;0.474697;197732;186760 +1062/3917;Mumbai: opcodes [set_cdr--storage611418174--input967284912];0.446973;0.032307;0.479377;197608;187332 +1063/3917;Nairobi: opcodes [set_cdr--storage611418174--input967284912];0.426766;0.052316;0.479175;197860;187396 +1064/3917;Alpha: opcodes [hash_key--storage921624073--input1040351577];0.430449;0.051913;0.482533;197732;186864 +1065/3917;Mumbai: opcodes [hash_key--storage921624073--input1040351577];0.412618;0.064946;0.477815;197736;186808 +1066/3917;Nairobi: opcodes [hash_key--storage921624073--input1040351577];0.419717;0.055894;0.475748;197860;187044 +1067/3917;Alpha: opcodes [hash_key--storage921624073--input153350004];0.446442;0.03595;0.482506;197732;185300 +1068/3917;Mumbai: opcodes [hash_key--storage921624073--input153350004];0.430895;0.051952;0.482947;197604;186804 +1069/3917;Nairobi: opcodes [hash_key--storage921624073--input153350004];0.431041;0.048414;0.479574;197864;186856 +1070/3917;Alpha: opcodes [add_timestamp_delta--storage921624073--input249636002];0.404176;0.071907;0.476218;197860;186728 +1071/3917;Mumbai: opcodes [add_timestamp_delta--storage921624073--input249636002];0.414686;0.063792;0.478552;197736;187524 +1072/3917;Nairobi: opcodes [add_timestamp_delta--storage921624073--input249636002];0.420815;0.063858;0.484728;197672;186920 +1073/3917;Alpha: opcodes [add_timestamp_delta--storage921624073--input307538219];0.423531;0.059968;0.483627;197732;187044 +1074/3917;Mumbai: opcodes [add_timestamp_delta--storage921624073--input307538219];0.426815;0.051926;0.4788;197856;187288 +1075/3917;Nairobi: opcodes [add_timestamp_delta--storage921624073--input307538219];0.441733;0.036077;0.477898;197736;187276 +1076/3917;Alpha: opcodes [add_timestamp_delta--storage921624073--input373737581];0.417828;0.059493;0.477287;197728;186572 +1077/3917;Mumbai: opcodes [add_timestamp_delta--storage921624073--input373737581];0.418896;0.055944;0.474943;197732;187332 +1078/3917;Nairobi: opcodes [add_timestamp_delta--storage921624073--input373737581];0.432671;0.051787;0.484559;197992;186868 +1079/3917;Alpha: opcodes [add_delta_timestamp--storage921624073--input249636002];0.40888;0.068295;0.477348;197736;186768 +1080/3917;Mumbai: opcodes [add_delta_timestamp--storage921624073--input249636002];0.425364;0.048026;0.473467;197732;187008 +1081/3917;Nairobi: opcodes [add_delta_timestamp--storage921624073--input249636002];0.412555;0.063613;0.476153;197860;186920 +1082/3917;Alpha: opcodes [add_delta_timestamp--storage921624073--input267363182];0.413535;0.064252;0.477941;197728;186832 +1083/3917;Mumbai: opcodes [add_delta_timestamp--storage921624073--input267363182];0.419271;0.056018;0.475302;197732;186952 +1084/3917;Nairobi: opcodes [add_delta_timestamp--storage921624073--input267363182];0.417077;0.059638;0.476784;197864;187044 +1085/3917;Alpha: opcodes [add_delta_timestamp--storage921624073--input438561129];0.417444;0.060069;0.47763;197736;187016 +1086/3917;Mumbai: opcodes [add_delta_timestamp--storage921624073--input438561129];0.418712;0.063771;0.482519;197732;185488 +1087/3917;Nairobi: opcodes [add_delta_timestamp--storage921624073--input438561129];0.45188;0.031996;0.483875;197856;187072 +1088/3917;Alpha: opcodes [sub_timestamp_delta--storage492856247--input249636002];0.431984;0.051967;0.485322;197608;186864 +1089/3917;Mumbai: opcodes [sub_timestamp_delta--storage492856247--input249636002];0.406889;0.075779;0.482812;197860;187212 +1090/3917;Nairobi: opcodes [sub_timestamp_delta--storage492856247--input249636002];0.428717;0.060166;0.488988;197984;187324 +1091/3917;Alpha: opcodes [sub_timestamp_delta--storage492856247--input307538219];0.424261;0.059815;0.484067;197736;186792 +1092/3917;Mumbai: opcodes [sub_timestamp_delta--storage492856247--input307538219];0.425117;0.06003;0.485285;197856;186996 +1093/3917;Nairobi: opcodes [sub_timestamp_delta--storage492856247--input307538219];0.441134;0.043808;0.485021;197860;185460 +1094/3917;Alpha: opcodes [sub_timestamp_delta--storage492856247--input831449542];0.433254;0.052137;0.485511;197608;186636 +1095/3917;Mumbai: opcodes [sub_timestamp_delta--storage492856247--input831449542];0.434575;0.039912;0.474573;197732;187424 +1096/3917;Nairobi: opcodes [sub_timestamp_delta--storage492856247--input831449542];0.407881;0.068054;0.47644;197860;186928 +1097/3917;Alpha: opcodes [diff_timestamps--storage492856247--input1011138251];0.434818;0.039695;0.475972;197732;186948 +1098/3917;Mumbai: opcodes [diff_timestamps--storage492856247--input1011138251];0.428098;0.055878;0.484009;197608;187044 +1099/3917;Nairobi: opcodes [diff_timestamps--storage492856247--input1011138251];0.418129;0.067738;0.486017;197992;187276 +1100/3917;Alpha: opcodes [diff_timestamps--storage492856247--input1018564342];0.429857;0.052209;0.482281;197732;185384 +1101/3917;Mumbai: opcodes [diff_timestamps--storage492856247--input1018564342];0.423177;0.051948;0.475174;197736;187236 +1102/3917;Nairobi: opcodes [diff_timestamps--storage492856247--input1018564342];0.440262;0.039796;0.480155;197864;187004 +1103/3917;Alpha: opcodes [diff_timestamps--storage492856247--input685590443];0.4304;0.052058;0.482494;197732;186768 +1104/3917;Mumbai: opcodes [diff_timestamps--storage492856247--input685590443];0.441432;0.048061;0.4896;197732;187064 +1105/3917;Nairobi: opcodes [diff_timestamps--storage492856247--input685590443];0.407438;0.071999;0.479476;197988;187044 +1106/3917;Alpha: opcodes [diff_timestamps--storage492856247--input1031049988];0.418357;0.063747;0.482245;197736;186840 +1107/3917;Mumbai: opcodes [diff_timestamps--storage492856247--input1031049988];0.425087;0.056151;0.481318;197728;187272 +1108/3917;Nairobi: opcodes [diff_timestamps--storage492856247--input1031049988];0.417344;0.068109;0.485503;197784;187224 +1109/3917;Alpha: opcodes [packunpack_rev--storage125992234--input305844558];0.431321;0.059989;0.491064;199396;188756 +1110/3917;Mumbai: opcodes [packunpack_rev--storage125992234--input305844558];0.428059;0.052085;0.479002;199780;189472 +1111/3917;Nairobi: opcodes [packunpack_rev--storage125992234--input305844558];0.429462;0.064076;0.492564;199564;189776 +1112/3917;Alpha: opcodes [packunpack_rev--storage125992234--input646365167];0.444687;0.051863;0.493608;199392;187168 +1113/3917;Mumbai: opcodes [packunpack_rev--storage125992234--input646365167];0.436555;0.052301;0.48888;199652;189352 +1114/3917;Nairobi: opcodes [packunpack_rev--storage125992234--input646365167];0.418895;0.068401;0.486025;199784;189284 +1115/3917;Alpha: opcodes [packunpack_rev_cty--storage125992234--input1028781121];0.442784;0.043849;0.486138;201448;191044 +1116/3917;Mumbai: opcodes [packunpack_rev_cty--storage125992234--input1028781121];0.421006;0.076648;0.496878;201568;191060 +1117/3917;Nairobi: opcodes [packunpack_rev_cty--storage125992234--input1028781121];0.450353;0.051688;0.498629;201196;189064 +1118/3917;Alpha: opcodes [packunpack_rev_cty--storage125992234--input802670583];0.42233;0.05959;0.480223;200552;189868 +1119/3917;Mumbai: opcodes [packunpack_rev_cty--storage125992234--input802670583];0.447491;0.04774;0.493942;200672;190336 +1120/3917;Nairobi: opcodes [packunpack_rev_cty--storage125992234--input802670583];0.430493;0.05992;0.489294;200804;190644 +1121/3917;Alpha: opcodes [ediv--storage994417987--input79625541];0.414383;0.059836;0.473885;198244;187336 +1122/3917;Mumbai: opcodes [ediv--storage994417987--input79625541];0.439025;0.048562;0.488582;198244;187800 +1123/3917;Nairobi: opcodes [ediv--storage994417987--input79625541];0.429902;0.051749;0.48126;198372;187508 +1124/3917;Alpha: opcodes [ediv--storage994417987--input247451205];0.435728;0.056056;0.48922;198116;185836 +1125/3917;Mumbai: opcodes [ediv--storage994417987--input247451205];0.415444;0.071542;0.484951;198116;185800 +1126/3917;Nairobi: opcodes [ediv--storage994417987--input247451205];0.434446;0.055782;0.48758;198372;185888 +1127/3917;Alpha: opcodes [ediv--storage994417987--input250545589];0.426719;0.059733;0.483863;198244;185708 +1128/3917;Mumbai: opcodes [ediv--storage994417987--input250545589];0.435151;0.051606;0.484498;198244;185956 +1129/3917;Nairobi: opcodes [ediv--storage994417987--input250545589];0.417064;0.076193;0.490737;198500;185996 +1130/3917;Alpha: opcodes [ediv_mutez--storage977883604--input389351431];0.423948;0.063989;0.488209;197732;185348 +1131/3917;Mumbai: opcodes [ediv_mutez--storage977883604--input389351431];0.431228;0.056206;0.487454;197732;185680 +1132/3917;Nairobi: opcodes [ediv_mutez--storage977883604--input389351431];0.42924;0.059794;0.489122;197864;185380 +1133/3917;Alpha: opcodes [ediv_mutez--storage977883604--input635398196];0.413093;0.072204;0.485322;197728;185080 +1134/3917;Mumbai: opcodes [ediv_mutez--storage977883604--input635398196];0.420329;0.067955;0.488392;197736;185600 +1135/3917;Nairobi: opcodes [ediv_mutez--storage977883604--input635398196];0.41744;0.068268;0.485999;197860;185696 +1136/3917;Alpha: opcodes [ediv_mutez--storage977883604--input44513000];0.426633;0.056478;0.483196;197608;185256 +1137/3917;Mumbai: opcodes [ediv_mutez--storage977883604--input44513000];0.408273;0.084081;0.492503;197736;185508 +1138/3917;Nairobi: opcodes [ediv_mutez--storage977883604--input44513000];0.42863;0.056143;0.484891;197988;185540 +1139/3917;Alpha: opcodes [ediv_mutez--storage977883604--input734264738];0.427474;0.05944;0.486952;197860;185324 +1140/3917;Mumbai: opcodes [ediv_mutez--storage977883604--input734264738];0.442788;0.044374;0.487206;197984;185476 +1141/3917;Nairobi: opcodes [ediv_mutez--storage977883604--input734264738];0.420029;0.060025;0.480168;197992;187032 +1142/3917;Alpha: opcodes [ediv_mutez--storage977883604--input215785357];0.424951;0.055714;0.480854;197732;186812 +1143/3917;Mumbai: opcodes [ediv_mutez--storage977883604--input215785357];0.414841;0.059937;0.474709;197732;187332 +1144/3917;Nairobi: opcodes [ediv_mutez--storage977883604--input215785357];0.410262;0.063809;0.474517;197860;187112 +1145/3917;Alpha: opcodes [ediv_mutez--storage977883604--input147133089];0.39317;0.080208;0.473804;197732;186820 +1146/3917;Mumbai: opcodes [ediv_mutez--storage977883604--input147133089];0.439048;0.048363;0.487279;197736;185364 +1147/3917;Nairobi: opcodes [ediv_mutez--storage977883604--input147133089];0.418466;0.060119;0.478661;197860;187028 +1148/3917;Alpha: opcodes [ediv_mutez--storage977883604--input993071382];0.430704;0.051824;0.482608;197732;186816 +1149/3917;Mumbai: opcodes [ediv_mutez--storage977883604--input993071382];0.416007;0.063944;0.47999;197728;187324 +1150/3917;Nairobi: opcodes [ediv_mutez--storage977883604--input993071382];0.424565;0.056207;0.480872;197732;187212 +1151/3917;Alpha: opcodes [compare--storage125992234--input125992234];0.43363;0.052338;0.486142;198628;188208 +1152/3917;Mumbai: opcodes [compare--storage125992234--input125992234];0.440425;0.044473;0.485208;198752;188588 +1153/3917;Nairobi: opcodes [compare--storage125992234--input125992234];0.420764;0.071472;0.490576;198884;186624 +1154/3917;Alpha: opcodes [comparisons--storage457300675--input281780712];0.446466;0.039988;0.491424;199012;188644 +1155/3917;Mumbai: opcodes [comparisons--storage457300675--input281780712];0.442398;0.043923;0.485828;199140;188416 +1156/3917;Nairobi: opcodes [comparisons--storage457300675--input281780712];0.440924;0.04006;0.481078;199144;188788 +1157/3917;Alpha: opcodes [address--storage921624073--input117475800];0.409206;0.067515;0.476898;197728;187124 +1158/3917;Mumbai: opcodes [address--storage921624073--input117475800];0.43685;0.051771;0.488732;197732;185604 +1159/3917;Nairobi: opcodes [address--storage921624073--input117475800];0.416293;0.060009;0.476379;197860;186952 +1160/3917;Alpha: opcodes [contract--storage125992234--input117475800];0.430713;0.051848;0.482613;197732;186996 +1161/3917;Mumbai: opcodes [contract--storage125992234--input117475800];0.446199;0.036116;0.48261;197732;186972 +1162/3917;Nairobi: opcodes [contract--storage125992234--input117475800];0.387431;0.083897;0.471553;197856;186880 +1163/3917;Alpha: opcodes [create_contract--storage921624073--input125992234];0.398877;0.078556;0.478686;197604;186832 +1164/3917;Mumbai: opcodes [create_contract--storage921624073--input125992234];0.41909;0.060023;0.479074;197640;187376 +1165/3917;Nairobi: opcodes [create_contract--storage921624073--input125992234];0.437676;0.044173;0.481885;197992;185420 +1166/3917;Alpha: opcodes [mul--storage125992234--input125992234];0.424666;0.051521;0.477208;197860;187472 +1167/3917;Mumbai: opcodes [mul--storage125992234--input125992234];0.394948;0.087747;0.482422;197988;187332 +1168/3917;Nairobi: opcodes [mul--storage125992234--input125992234];0.427609;0.047977;0.47542;198116;187508 +1169/3917;Alpha: opcodes [neg--storage680650890--input563503226];0.435194;0.047929;0.483196;197604;187112 +1170/3917;Mumbai: opcodes [neg--storage680650890--input563503226];0.417652;0.060276;0.478059;197728;186732 +1171/3917;Nairobi: opcodes [neg--storage680650890--input563503226];0.436932;0.043856;0.480927;197856;186976 +1172/3917;Alpha: opcodes [neg--storage680650890--input380029349];0.411803;0.079712;0.491734;197604;185328 +1173/3917;Mumbai: opcodes [neg--storage680650890--input380029349];0.42006;0.055999;0.476197;197732;187056 +1174/3917;Nairobi: opcodes [neg--storage680650890--input380029349];0.417129;0.056187;0.473516;197860;187088 +1175/3917;Alpha: opcodes [neg--storage680650890--input972832189];0.39994;0.07605;0.476134;197732;187104 +1176/3917;Mumbai: opcodes [neg--storage680650890--input972832189];0.404946;0.071799;0.476873;197732;187288 +1177/3917;Nairobi: opcodes [neg--storage680650890--input972832189];0.402834;0.076067;0.478948;197860;186916 +1178/3917;Alpha: opcodes [neg--storage680650890--input788662499];0.440758;0.043824;0.484784;197856;186780 +1179/3917;Mumbai: opcodes [neg--storage680650890--input788662499];0.417207;0.059688;0.477094;197860;186688 +1180/3917;Nairobi: opcodes [neg--storage680650890--input788662499];0.405119;0.072037;0.477324;197732;187220 +1181/3917;Alpha: opcodes [neg--storage680650890--input1067298059];0.431884;0.055649;0.487659;197732;186832 +1182/3917;Mumbai: opcodes [neg--storage680650890--input1067298059];0.442265;0.03984;0.482277;197856;187052 +1183/3917;Nairobi: opcodes [neg--storage680650890--input1067298059];0.426392;0.047805;0.474409;197856;187076 +1184/3917;Alpha: opcodes [dign--storage680650890--input529388602];0.445285;0.048155;0.494724;197860;185612 +1185/3917;Mumbai: opcodes [dign--storage680650890--input529388602];0.409121;0.06761;0.476778;197992;186936 +1186/3917;Nairobi: opcodes [dign--storage680650890--input529388602];0.44113;0.036115;0.477315;198120;187148 +1187/3917;Alpha: opcodes [dugn--storage680650890--input529388602];0.419221;0.059536;0.480126;197732;187044 +1188/3917;Mumbai: opcodes [dugn--storage680650890--input529388602];0.416695;0.059974;0.477865;197864;186716 +1189/3917;Nairobi: opcodes [dugn--storage680650890--input529388602];0.419012;0.06014;0.479285;197776;187020 +1190/3917;Alpha: opcodes [dropn--storage680650890--input529388602];0.424616;0.051799;0.476564;197736;186816 +1191/3917;Mumbai: opcodes [dropn--storage680650890--input529388602];0.412858;0.063762;0.476734;197600;186908 +1192/3917;Nairobi: opcodes [dropn--storage680650890--input529388602];0.416547;0.064016;0.48067;197856;187064 +1193/3917;Alpha: opcodes [dipn--storage680650890--input529388602];0.411898;0.071248;0.484432;197860;186936 +1194/3917;Mumbai: opcodes [dipn--storage680650890--input529388602];0.42985;0.044132;0.473955;197992;187324 +1195/3917;Nairobi: opcodes [dipn--storage680650890--input529388602];0.408914;0.075978;0.485097;198244;187124 +1196/3917;Alpha: opcodes [dig_eq--storage125992234--input246866101];0.454309;0.059538;0.512278;216552;206348 +1197/3917;Mumbai: opcodes [dig_eq--storage125992234--input246866101];0.440444;0.071409;0.51046;216548;206800 +1198/3917;Nairobi: opcodes [dig_eq--storage125992234--input246866101];0.452303;0.071295;0.522338;216676;206784 +1199/3917;Alpha: opcodes [dig_eq--storage125992234--input26856104];0.479588;0.044056;0.521872;216164;205948 +1200/3917;Mumbai: opcodes [dig_eq--storage125992234--input26856104];0.466434;0.052415;0.516257;216296;206240 +1201/3917;Nairobi: opcodes [dig_eq--storage125992234--input26856104];0.465433;0.048171;0.512176;216420;206488 +1202/3917;Alpha: opcodes [pexec--storage256947135--input1050356042];0.431117;0.051777;0.484277;197736;186932 +1203/3917;Mumbai: opcodes [pexec--storage256947135--input1050356042];0.439809;0.039995;0.479811;197728;187296 +1204/3917;Nairobi: opcodes [pexec--storage256947135--input1050356042];0.427024;0.047891;0.474942;197860;187228 +1205/3917;Alpha: opcodes [pexec_2--storage197120858--input179371027];0.40205;0.075755;0.478431;198496;187824 +1206/3917;Mumbai: opcodes [pexec_2--storage197120858--input179371027];0.410332;0.067566;0.476768;198628;187776 +1207/3917;Nairobi: opcodes [pexec_2--storage197120858--input179371027];0.422084;0.064314;0.485972;198884;187848 +1208/3917;Alpha: opcodes [chain_id_store--storage921624073--input125992234];0.443541;0.047949;0.492093;197864;185300 +1209/3917;Mumbai: opcodes [chain_id_store--storage921624073--input125992234];0.428427;0.052142;0.48071;197728;186792 +1210/3917;Nairobi: opcodes [chain_id_store--storage921624073--input125992234];0.42453;0.056075;0.48075;197856;187036 +1211/3917;Alpha: opcodes [chain_id_store--storage109160754--input125992234];0.419343;0.059993;0.479446;197732;186748 +1212/3917;Mumbai: opcodes [chain_id_store--storage109160754--input125992234];0.44318;0.04001;0.483294;197732;186664 +1213/3917;Nairobi: opcodes [chain_id_store--storage109160754--input125992234];0.400379;0.071579;0.471984;197860;186660 +1214/3917;Alpha: opcodes [chain_id_store--storage981066851--input125992234];0.399031;0.083822;0.483071;197736;187024 +1215/3917;Mumbai: opcodes [chain_id_store--storage981066851--input125992234];0.437004;0.052229;0.489403;197732;185384 +1216/3917;Nairobi: opcodes [chain_id_store--storage981066851--input125992234];0.407748;0.067967;0.475864;197860;186724 +1217/3917;Alpha: opcodes [self_with_entrypoint--storage125992234--input289072903];0.419006;0.060457;0.479265;197984;187392 +1218/3917;Mumbai: opcodes [self_with_entrypoint--storage125992234--input289072903];0.398621;0.079943;0.478294;197860;187348 +1219/3917;Nairobi: opcodes [self_with_entrypoint--storage125992234--input289072903];0.41324;0.071594;0.485844;198120;187220 +1220/3917;Alpha: opcodes [self_with_default_entrypoint--storage125992234--input125992234];0.44328;0.035848;0.479212;197608;187048 +1221/3917;Mumbai: opcodes [self_with_default_entrypoint--storage125992234--input125992234];0.411144;0.063909;0.475075;197732;187316 +1222/3917;Nairobi: opcodes [self_with_default_entrypoint--storage125992234--input125992234];0.413667;0.064328;0.477982;197860;187264 +1223/3917;Alpha: opcodes [self_address--storage125992234--input125992234];0.415789;0.067723;0.484918;197736;186776 +1224/3917;Mumbai: opcodes [self_address--storage125992234--input125992234];0.429254;0.068026;0.497304;197736;187316 +1225/3917;Nairobi: opcodes [self_address--storage125992234--input125992234];0.431051;0.048152;0.479363;197860;187100 +1226/3917;Alpha: opcodes [unpair--storage125992234--input125992234];0.428084;0.051831;0.479359;199528;188872 +1227/3917;Mumbai: opcodes [unpair--storage125992234--input125992234];0.41983;0.071453;0.488476;199780;187660 +1228/3917;Nairobi: opcodes [unpair--storage125992234--input125992234];0.443569;0.051784;0.493211;199776;187156 +1229/3917;Alpha: opcodes [voting_power--storage1011138251--input1040351577];0.4438;0.047841;0.492987;197732;185308 +1230/3917;Mumbai: opcodes [voting_power--storage1011138251--input1040351577];0.402896;0.079796;0.482738;197860;185444 +1231/3917;Nairobi: opcodes [voting_power--storage1011138251--input1040351577];0.421232;0.059712;0.481071;197860;185500 +1232/3917;Alpha: opcodes [keccak--storage921624073--input1008262038];0.445734;0.040164;0.486023;197732;185196 +1233/3917;Mumbai: opcodes [keccak--storage921624073--input1008262038];0.409105;0.072189;0.48148;197732;185260 +1234/3917;Nairobi: opcodes [keccak--storage921624073--input1008262038];0.425657;0.052209;0.478023;197864;185380 +1235/3917;Alpha: opcodes [sha3--storage921624073--input1008262038];0.437314;0.044113;0.48163;197860;185152 +1236/3917;Mumbai: opcodes [sha3--storage921624073--input1008262038];0.434213;0.051819;0.486169;197732;185076 +1237/3917;Nairobi: opcodes [sha3--storage921624073--input1008262038];0.398726;0.082663;0.48153;197860;185388 +1238/3917;Alpha: opcodes [comb--storage950292965--input125992234];0.437569;0.048201;0.487186;197600;185148 +1239/3917;Mumbai: opcodes [comb--storage950292965--input125992234];0.441554;0.044198;0.485947;197732;185504 +1240/3917;Nairobi: opcodes [comb--storage950292965--input125992234];0.430612;0.047943;0.478662;197736;185612 +1241/3917;Alpha: opcodes [uncomb--storage680650890--input394061083];0.416969;0.06416;0.482446;197860;185644 +1242/3917;Mumbai: opcodes [uncomb--storage680650890--input394061083];0.426411;0.059875;0.486379;197732;185640 +1243/3917;Nairobi: opcodes [uncomb--storage680650890--input394061083];0.442248;0.043898;0.486353;197860;185560 +1244/3917;Alpha: opcodes [comb-get--storage125992234--input186507116];0.403731;0.076612;0.478306;198116;185868 +1245/3917;Mumbai: opcodes [comb-get--storage125992234--input186507116];0.428829;0.060115;0.488815;198112;187588 +1246/3917;Nairobi: opcodes [comb-get--storage125992234--input186507116];0.42822;0.06409;0.490058;198248;185792 +1247/3917;Alpha: opcodes [comb-set--storage186507116--input125992234];0.399876;0.08404;0.485225;197648;186992 +1248/3917;Mumbai: opcodes [comb-set--storage186507116--input125992234];0.415747;0.07198;0.487759;197732;187024 +1249/3917;Nairobi: opcodes [comb-set--storage186507116--input125992234];0.419119;0.060399;0.479721;197864;187004 +1250/3917;Alpha: opcodes [comb-set-2--storage921624073--input186507116];0.424347;0.055633;0.481433;197732;186844 +1251/3917;Mumbai: opcodes [comb-set-2--storage921624073--input186507116];0.423083;0.051324;0.474441;197732;187052 +1252/3917;Nairobi: opcodes [comb-set-2--storage921624073--input186507116];0.44087;0.04812;0.48914;197860;187052 +1253/3917;Alpha: opcodes [dup-n--storage125992234--input125992234];0.434997;0.055503;0.48958;198500;186088 +1254/3917;Mumbai: opcodes [dup-n--storage125992234--input125992234];0.425461;0.055741;0.48047;198632;188084 +1255/3917;Nairobi: opcodes [dup-n--storage125992234--input125992234];0.446432;0.040218;0.485818;198628;187844 +1256/3917;Alpha: opcodes [sapling_empty_state--storage457300675--input125992234];0.416682;0.059746;0.476665;197604;186840 +1257/3917;Mumbai: opcodes [sapling_empty_state--storage457300675--input125992234];0.430806;0.04381;0.474734;197732;186780 +1258/3917;Nairobi: opcodes [sapling_empty_state--storage457300675--input125992234];0.417675;0.060303;0.478019;197860;186900 +1259/3917;Alpha: opcodes [bls12_381_fr_z_nat--storage994282947--input680650890];0.412501;0.063198;0.475578;197608;186872 +1260/3917;Mumbai: opcodes [bls12_381_fr_z_nat--storage994282947--input680650890];0.440675;0.043826;0.484638;197732;185560 +1261/3917;Nairobi: opcodes [bls12_381_fr_z_nat--storage994282947--input680650890];0.437541;0.04415;0.481897;197856;187032 +1262/3917;Alpha: opcodes [bls12_381_fr_z_nat--storage994282947--input453441034];0.430844;0.047899;0.478754;197736;187272 +1263/3917;Mumbai: opcodes [bls12_381_fr_z_nat--storage994282947--input453441034];0.407667;0.067891;0.475597;197736;187092 +1264/3917;Nairobi: opcodes [bls12_381_fr_z_nat--storage994282947--input453441034];0.422367;0.052507;0.474977;197860;186884 +1265/3917;Alpha: opcodes [bls12_381_fr_z_nat--storage994282947--input1055524890];0.413335;0.064179;0.477621;197732;186668 +1266/3917;Mumbai: opcodes [bls12_381_fr_z_nat--storage994282947--input1055524890];0.418747;0.052346;0.471192;197732;186768 +1267/3917;Nairobi: opcodes [bls12_381_fr_z_nat--storage994282947--input1055524890];0.42865;0.044084;0.472729;197856;186852 +1268/3917;Alpha: opcodes [bls12_381_fr_z_nat--storage994282947--input564400327];0.415986;0.056012;0.472104;197732;186820 +1269/3917;Mumbai: opcodes [bls12_381_fr_z_nat--storage994282947--input564400327];0.405238;0.071367;0.476744;197732;186784 +1270/3917;Nairobi: opcodes [bls12_381_fr_z_nat--storage994282947--input564400327];0.408952;0.072199;0.481301;197984;186820 +1271/3917;Alpha: opcodes [bls12_381_fr_z_nat--storage698210250--input949526473];0.437188;0.048047;0.485347;197604;186788 +1272/3917;Mumbai: opcodes [bls12_381_fr_z_nat--storage698210250--input949526473];0.414738;0.068119;0.483004;197552;186944 +1273/3917;Nairobi: opcodes [bls12_381_fr_z_nat--storage698210250--input949526473];0.415212;0.06812;0.483427;197864;186796 +1274/3917;Alpha: opcodes [bls12_381_fr_z_nat--storage287336412--input1019409032];0.42622;0.056345;0.483176;197608;186712 +1275/3917;Mumbai: opcodes [bls12_381_fr_z_nat--storage287336412--input1019409032];0.430906;0.052332;0.483353;197856;186736 +1276/3917;Nairobi: opcodes [bls12_381_fr_z_nat--storage287336412--input1019409032];0.40924;0.063631;0.472986;197860;187152 +1277/3917;Alpha: opcodes [bls12_381_fr_z_nat--storage739946440--input583291483];0.413578;0.064268;0.478048;197608;187112 +1278/3917;Mumbai: opcodes [bls12_381_fr_z_nat--storage739946440--input583291483];0.423056;0.055821;0.478989;197608;187200 +1279/3917;Nairobi: opcodes [bls12_381_fr_z_nat--storage739946440--input583291483];0.424334;0.06001;0.484459;197864;185596 +1280/3917;Alpha: opcodes [bls12_381_fr_z_nat--storage739946440--input166435292];0.420483;0.059752;0.480359;197604;186816 +1281/3917;Mumbai: opcodes [bls12_381_fr_z_nat--storage739946440--input166435292];0.433732;0.044254;0.478087;197736;187112 +1282/3917;Nairobi: opcodes [bls12_381_fr_z_nat--storage739946440--input166435292];0.429705;0.056105;0.48595;197860;186676 +1283/3917;Alpha: opcodes [bls12_381_fr_z_int--storage994282947--input680650890];0.410932;0.075737;0.488186;197732;186788 +1284/3917;Mumbai: opcodes [bls12_381_fr_z_int--storage994282947--input680650890];0.410758;0.072307;0.483177;197732;187000 +1285/3917;Nairobi: opcodes [bls12_381_fr_z_int--storage994282947--input680650890];0.428257;0.044029;0.472574;197860;187004 +1286/3917;Alpha: opcodes [bls12_381_fr_z_int--storage994282947--input453441034];0.418968;0.060076;0.479138;197732;185304 +1287/3917;Mumbai: opcodes [bls12_381_fr_z_int--storage994282947--input453441034];0.427295;0.048243;0.475582;197588;186976 +1288/3917;Nairobi: opcodes [bls12_381_fr_z_int--storage994282947--input453441034];0.420307;0.059686;0.480131;197864;186940 +1289/3917;Alpha: opcodes [bls12_381_fr_z_int--storage994282947--input1055524890];0.431441;0.051919;0.483491;197736;187068 +1290/3917;Mumbai: opcodes [bls12_381_fr_z_int--storage994282947--input1055524890];0.406524;0.075731;0.482415;197732;187004 +1291/3917;Nairobi: opcodes [bls12_381_fr_z_int--storage994282947--input1055524890];0.410536;0.076554;0.487249;197864;187308 +1292/3917;Alpha: opcodes [bls12_381_fr_z_int--storage994282947--input564400327];0.385118;0.091941;0.477219;197608;186680 +1293/3917;Mumbai: opcodes [bls12_381_fr_z_int--storage994282947--input564400327];0.416183;0.060026;0.476352;197736;187360 +1294/3917;Nairobi: opcodes [bls12_381_fr_z_int--storage994282947--input564400327];0.420459;0.063996;0.484721;197984;186792 +1295/3917;Alpha: opcodes [bls12_381_fr_z_int--storage698210250--input949526473];0.417326;0.055514;0.472967;197608;186784 +1296/3917;Mumbai: opcodes [bls12_381_fr_z_int--storage698210250--input949526473];0.434945;0.051874;0.486989;197736;186840 +1297/3917;Nairobi: opcodes [bls12_381_fr_z_int--storage698210250--input949526473];0.419966;0.055653;0.475803;197984;186780 +1298/3917;Alpha: opcodes [bls12_381_fr_z_int--storage287336412--input1019409032];0.428318;0.059841;0.488323;197856;185380 +1299/3917;Mumbai: opcodes [bls12_381_fr_z_int--storage287336412--input1019409032];0.414765;0.071909;0.486748;197728;186808 +1300/3917;Nairobi: opcodes [bls12_381_fr_z_int--storage287336412--input1019409032];0.430922;0.056041;0.487027;197864;187336 +1301/3917;Alpha: opcodes [bls12_381_fr_z_int--storage739946440--input583291483];0.432405;0.043923;0.476439;197604;187140 +1302/3917;Mumbai: opcodes [bls12_381_fr_z_int--storage739946440--input583291483];0.421203;0.060798;0.482213;197864;186932 +1303/3917;Nairobi: opcodes [bls12_381_fr_z_int--storage739946440--input583291483];0.419152;0.063867;0.482967;197860;186976 +1304/3917;Alpha: opcodes [bls12_381_fr_z_int--storage739946440--input166435292];0.426895;0.051931;0.478719;197604;187072 +1305/3917;Mumbai: opcodes [bls12_381_fr_z_int--storage739946440--input166435292];0.41539;0.067953;0.483219;197864;185392 +1306/3917;Nairobi: opcodes [bls12_381_fr_z_int--storage739946440--input166435292];0.427817;0.055925;0.483621;197856;186744 +1307/3917;Alpha: opcodes [bls12_381_fr_z_int--storage994282947--input701858804];0.40798;0.064006;0.471888;197604;187096 +1308/3917;Mumbai: opcodes [bls12_381_fr_z_int--storage994282947--input701858804];0.435827;0.043939;0.479782;197732;186980 +1309/3917;Nairobi: opcodes [bls12_381_fr_z_int--storage994282947--input701858804];0.423899;0.051821;0.475568;197860;186680 +1310/3917;Alpha: opcodes [bls12_381_fr_z_int--storage994282947--input585234482];0.426118;0.048188;0.474368;197732;186756 +1311/3917;Mumbai: opcodes [bls12_381_fr_z_int--storage994282947--input585234482];0.416715;0.055909;0.472634;197732;186784 +1312/3917;Nairobi: opcodes [bls12_381_fr_z_int--storage994282947--input585234482];0.44091;0.052097;0.492983;197864;185500 +1313/3917;Alpha: opcodes [bls12_381_z_fr_nat--storage994282947--input680650890];0.435975;0.04044;0.477792;197860;187124 +1314/3917;Mumbai: opcodes [bls12_381_z_fr_nat--storage994282947--input680650890];0.427102;0.055946;0.483044;197736;187088 +1315/3917;Nairobi: opcodes [bls12_381_z_fr_nat--storage994282947--input680650890];0.416384;0.071699;0.487945;197860;186816 +1316/3917;Alpha: opcodes [bls12_381_z_fr_nat--storage994282947--input453441034];0.411248;0.064108;0.475251;197860;186792 +1317/3917;Mumbai: opcodes [bls12_381_z_fr_nat--storage994282947--input453441034];0.428849;0.051905;0.48068;197732;186784 +1318/3917;Nairobi: opcodes [bls12_381_z_fr_nat--storage994282947--input453441034];0.401469;0.075984;0.477466;197860;187272 +1319/3917;Alpha: opcodes [bls12_381_z_fr_nat--storage994282947--input1055524890];0.412955;0.068002;0.480873;197864;186748 +1320/3917;Mumbai: opcodes [bls12_381_z_fr_nat--storage994282947--input1055524890];0.409021;0.068294;0.477258;197732;186752 +1321/3917;Nairobi: opcodes [bls12_381_z_fr_nat--storage994282947--input1055524890];0.415614;0.059987;0.475506;197856;187040 +1322/3917;Alpha: opcodes [bls12_381_z_fr_nat--storage994282947--input564400327];0.433598;0.040083;0.473603;197604;186772 +1323/3917;Mumbai: opcodes [bls12_381_z_fr_nat--storage994282947--input564400327];0.43068;0.047864;0.47844;197736;186752 +1324/3917;Nairobi: opcodes [bls12_381_z_fr_nat--storage994282947--input564400327];0.422683;0.064043;0.486633;197864;187176 +1325/3917;Alpha: opcodes [bls12_381_z_fr_nat--storage698210250--input949526473];0.417804;0.071379;0.489148;197864;186888 +1326/3917;Mumbai: opcodes [bls12_381_z_fr_nat--storage698210250--input949526473];0.456144;0.035947;0.491925;197732;185496 +1327/3917;Nairobi: opcodes [bls12_381_z_fr_nat--storage698210250--input949526473];0.431663;0.043958;0.47563;197860;186776 +1328/3917;Alpha: opcodes [bls12_381_z_fr_nat--storage287336412--input1019409032];0.436616;0.043943;0.480387;197856;186740 +1329/3917;Mumbai: opcodes [bls12_381_z_fr_nat--storage287336412--input1019409032];0.41991;0.059982;0.479832;197736;187024 +1330/3917;Nairobi: opcodes [bls12_381_z_fr_nat--storage287336412--input1019409032];0.41593;0.060031;0.47588;197992;187324 +1331/3917;Alpha: opcodes [bls12_381_z_fr_nat--storage739946440--input583291483];0.418415;0.05599;0.474408;197604;186624 +1332/3917;Mumbai: opcodes [bls12_381_z_fr_nat--storage739946440--input583291483];0.430444;0.059946;0.490402;197988;185608 +1333/3917;Nairobi: opcodes [bls12_381_z_fr_nat--storage739946440--input583291483];0.439933;0.043956;0.483795;197860;185276 +1334/3917;Alpha: opcodes [bls12_381_z_fr_nat--storage739946440--input166435292];0.443974;0.040027;0.483951;197608;185248 +1335/3917;Mumbai: opcodes [bls12_381_z_fr_nat--storage739946440--input166435292];0.419663;0.055811;0.475379;197732;185556 +1336/3917;Nairobi: opcodes [bls12_381_z_fr_nat--storage739946440--input166435292];0.425057;0.064083;0.489065;197860;185572 +1337/3917;Alpha: opcodes [bls12_381_z_fr_int--storage994282947--input680650890];0.435662;0.047956;0.484993;197732;185356 +1338/3917;Mumbai: opcodes [bls12_381_z_fr_int--storage994282947--input680650890];0.428607;0.060735;0.489207;197732;185248 +1339/3917;Nairobi: opcodes [bls12_381_z_fr_int--storage994282947--input680650890];0.436917;0.047545;0.484388;197860;185600 +1340/3917;Alpha: opcodes [bls12_381_z_fr_int--storage994282947--input453441034];0.410953;0.075986;0.486818;197736;185328 +1341/3917;Mumbai: opcodes [bls12_381_z_fr_int--storage994282947--input453441034];0.415797;0.060016;0.475705;197736;185404 +1342/3917;Nairobi: opcodes [bls12_381_z_fr_int--storage994282947--input453441034];0.43216;0.052079;0.48427;197860;185472 +1343/3917;Alpha: opcodes [bls12_381_z_fr_int--storage994282947--input1055524890];0.412209;0.068032;0.48015;197532;185416 +1344/3917;Mumbai: opcodes [bls12_381_z_fr_int--storage994282947--input1055524890];0.44405;0.043864;0.487823;197676;185460 +1345/3917;Nairobi: opcodes [bls12_381_z_fr_int--storage994282947--input1055524890];0.41478;0.07196;0.486602;197864;185532 +1346/3917;Alpha: opcodes [bls12_381_z_fr_int--storage994282947--input564400327];0.419323;0.059907;0.479136;197728;185340 +1347/3917;Mumbai: opcodes [bls12_381_z_fr_int--storage994282947--input564400327];0.435672;0.047818;0.483421;197736;185456 +1348/3917;Nairobi: opcodes [bls12_381_z_fr_int--storage994282947--input564400327];0.444803;0.048076;0.492836;197988;185496 +1349/3917;Alpha: opcodes [bls12_381_z_fr_int--storage698210250--input949526473];0.420217;0.064028;0.484163;197604;186704 +1350/3917;Mumbai: opcodes [bls12_381_z_fr_int--storage698210250--input949526473];0.418818;0.059971;0.478712;197732;187016 +1351/3917;Nairobi: opcodes [bls12_381_z_fr_int--storage698210250--input949526473];0.425594;0.052043;0.477574;197856;186988 +1352/3917;Alpha: opcodes [bls12_381_z_fr_int--storage287336412--input1019409032];0.431001;0.048292;0.4792;197856;185260 +1353/3917;Mumbai: opcodes [bls12_381_z_fr_int--storage287336412--input1019409032];0.4119;0.067574;0.479344;197732;186940 +1354/3917;Nairobi: opcodes [bls12_381_z_fr_int--storage287336412--input1019409032];0.414531;0.059909;0.47432;197992;187028 +1355/3917;Alpha: opcodes [bls12_381_z_fr_int--storage739946440--input583291483];0.39533;0.088035;0.483271;197728;186504 +1356/3917;Mumbai: opcodes [bls12_381_z_fr_int--storage739946440--input583291483];0.425244;0.052147;0.477361;197736;186888 +1357/3917;Nairobi: opcodes [bls12_381_z_fr_int--storage739946440--input583291483];0.42112;0.060383;0.481469;197860;185512 +1358/3917;Alpha: opcodes [bls12_381_z_fr_int--storage994282947--input701858804];0.408794;0.067755;0.476496;197736;186836 +1359/3917;Mumbai: opcodes [bls12_381_z_fr_int--storage994282947--input701858804];0.420206;0.056037;0.476204;197732;187300 +1360/3917;Nairobi: opcodes [bls12_381_z_fr_int--storage994282947--input701858804];0.422608;0.059953;0.482452;197860;186784 +1361/3917;Alpha: opcodes [bls12_381_z_fr_int--storage994282947--input585234482];0.419217;0.063883;0.482955;197736;186832 +1362/3917;Mumbai: opcodes [bls12_381_z_fr_int--storage994282947--input585234482];0.404287;0.071796;0.476123;197860;186868 +1363/3917;Nairobi: opcodes [bls12_381_z_fr_int--storage994282947--input585234482];0.413137;0.067521;0.480584;197864;187072 +1364/3917;Alpha: opcodes [bls12_381_z_fr_int--storage739946440--input166435292];0.438999;0.047897;0.486799;197732;185312 +1365/3917;Mumbai: opcodes [bls12_381_z_fr_int--storage739946440--input166435292];0.404007;0.075934;0.479812;197732;187012 +1366/3917;Nairobi: opcodes [bls12_381_z_fr_int--storage739946440--input166435292];0.431395;0.051997;0.483267;197988;187076 +1367/3917;Alpha: opcodes [add_bls12_381_fr--storage921624073--input712570300];0.438165;0.039821;0.478168;197736;186840 +1368/3917;Mumbai: opcodes [add_bls12_381_fr--storage921624073--input712570300];0.419394;0.055918;0.475174;197736;186796 +1369/3917;Nairobi: opcodes [add_bls12_381_fr--storage921624073--input712570300];0.392527;0.080081;0.472523;197860;187088 +1370/3917;Alpha: opcodes [add_bls12_381_fr--storage921624073--input322109491];0.405084;0.072086;0.477061;197732;186800 +1371/3917;Mumbai: opcodes [add_bls12_381_fr--storage921624073--input322109491];0.429434;0.048175;0.477575;197736;187108 +1372/3917;Nairobi: opcodes [add_bls12_381_fr--storage921624073--input322109491];0.412586;0.064003;0.47653;197860;187012 +1373/3917;Alpha: opcodes [add_bls12_381_fr--storage921624073--input530006774];0.43397;0.048198;0.482138;197604;186772 +1374/3917;Mumbai: opcodes [add_bls12_381_fr--storage921624073--input530006774];0.433002;0.048107;0.48102;197860;186856 +1375/3917;Nairobi: opcodes [add_bls12_381_fr--storage921624073--input530006774];0.420526;0.056062;0.476439;197860;187048 +1376/3917;Alpha: opcodes [add_bls12_381_fr--storage921624073--input461261325];0.423169;0.056421;0.479765;197732;186800 +1377/3917;Mumbai: opcodes [add_bls12_381_fr--storage921624073--input461261325];0.425785;0.052059;0.477749;197736;187020 +1378/3917;Nairobi: opcodes [add_bls12_381_fr--storage921624073--input461261325];0.410725;0.064148;0.474718;197864;187580 +1379/3917;Alpha: opcodes [bls12_381_fr_push_bytes_not_padded--storage921624073--input125992234];0.423679;0.048482;0.473461;197732;186736 +1380/3917;Mumbai: opcodes [bls12_381_fr_push_bytes_not_padded--storage921624073--input125992234];0.391074;0.0838;0.474787;197732;186804 +1381/3917;Nairobi: opcodes [bls12_381_fr_push_bytes_not_padded--storage921624073--input125992234];0.422039;0.05625;0.478255;197856;187308 +1382/3917;Alpha: opcodes [bls12_381_fr_push_nat--storage921624073--input125992234];0.421906;0.052252;0.474282;197732;186844 +1383/3917;Mumbai: opcodes [bls12_381_fr_push_nat--storage921624073--input125992234];0.429934;0.04419;0.474091;197736;186788 +1384/3917;Nairobi: opcodes [bls12_381_fr_push_nat--storage921624073--input125992234];0.429193;0.052057;0.481172;197864;186928 +1385/3917;Alpha: opcodes [bls12_381_fr_to_int--storage680650890--input151303925];0.430648;0.043888;0.474831;197728;187100 +1386/3917;Mumbai: opcodes [bls12_381_fr_to_int--storage680650890--input151303925];0.424858;0.055939;0.480784;197860;186796 +1387/3917;Nairobi: opcodes [bls12_381_fr_to_int--storage680650890--input151303925];0.423594;0.063939;0.487414;197860;185300 +1388/3917;Alpha: opcodes [bls12_381_fr_to_int--storage680650890--input1043734173];0.419321;0.056062;0.475295;197604;187024 +1389/3917;Mumbai: opcodes [bls12_381_fr_to_int--storage680650890--input1043734173];0.425531;0.060046;0.485677;197732;186976 +1390/3917;Nairobi: opcodes [bls12_381_fr_to_int--storage680650890--input1043734173];0.415001;0.064036;0.478954;197860;186772 +1391/3917;Alpha: opcodes [bls12_381_fr_to_int--storage680650890--input558805129];0.388964;0.09164;0.480536;197728;186576 +1392/3917;Mumbai: opcodes [bls12_381_fr_to_int--storage680650890--input558805129];0.424207;0.051793;0.47595;197728;186788 +1393/3917;Nairobi: opcodes [bls12_381_fr_to_int--storage680650890--input558805129];0.41629;0.056914;0.473199;197992;186708 +1394/3917;Alpha: opcodes [bls12_381_fr_to_int--storage680650890--input520610122];0.437517;0.043738;0.481123;197732;185316 +1395/3917;Mumbai: opcodes [bls12_381_fr_to_int--storage680650890--input520610122];0.410873;0.064321;0.475127;197860;186804 +1396/3917;Nairobi: opcodes [bls12_381_fr_to_int--storage680650890--input520610122];0.429794;0.048169;0.477962;197856;186792 +1397/3917;Alpha: opcodes [mutez_to_bls12_381_fr--storage287799761--input485842614];0.396507;0.084167;0.480931;197732;186808 +1398/3917;Mumbai: opcodes [mutez_to_bls12_381_fr--storage287799761--input485842614];0.391025;0.084104;0.474997;197732;187024 +1399/3917;Nairobi: opcodes [mutez_to_bls12_381_fr--storage287799761--input485842614];0.413196;0.068176;0.481313;197856;187348 +1400/3917;Alpha: opcodes [mutez_to_bls12_381_fr--storage151303925--input216277421];0.385429;0.088007;0.473427;197732;186816 +1401/3917;Mumbai: opcodes [mutez_to_bls12_381_fr--storage151303925--input216277421];0.42112;0.068273;0.489332;197732;185552 +1402/3917;Nairobi: opcodes [mutez_to_bls12_381_fr--storage151303925--input216277421];0.408307;0.067944;0.476286;197860;187164 +1403/3917;Alpha: opcodes [bls12_381_fr_to_mutez--storage680650890--input229402968];0.420478;0.056053;0.476681;197600;186772 +1404/3917;Mumbai: opcodes [bls12_381_fr_to_mutez--storage680650890--input229402968];0.420561;0.051835;0.472325;197736;186756 +1405/3917;Nairobi: opcodes [bls12_381_fr_to_mutez--storage680650890--input229402968];0.425835;0.056363;0.482229;197732;187052 +1406/3917;Alpha: opcodes [and_bytes--storage125992234--input125992234];0.4279;0.051986;0.478904;197732;187616 +1407/3917;Mumbai: opcodes [and_bytes--storage125992234--input125992234];0.421425;0.055924;0.477195;197860;187368 +1408/3917;Nairobi: opcodes [and_bytes--storage125992234--input125992234];0.418884;0.056026;0.474746;197988;186952 +1409/3917;Alpha: opcodes [or_bytes--storage125992234--input125992234];0.403949;0.075929;0.48103;197856;187636 +1410/3917;Mumbai: opcodes [or_bytes--storage125992234--input125992234];0.432001;0.063772;0.495528;197864;185516 +1411/3917;Nairobi: opcodes [or_bytes--storage125992234--input125992234];0.427031;0.055872;0.482657;197988;187044 +1412/3917;Alpha: opcodes [xor_bytes--storage125992234--input125992234];0.410649;0.068065;0.478646;197988;187060 +1413/3917;Mumbai: opcodes [xor_bytes--storage125992234--input125992234];0.425165;0.059598;0.484601;197864;187372 +1414/3917;Nairobi: opcodes [xor_bytes--storage125992234--input125992234];0.427927;0.055975;0.48365;197988;187196 +1415/3917;Alpha: opcodes [not_bytes--storage125992234--input125992234];0.435158;0.043975;0.479035;197604;186816 +1416/3917;Mumbai: opcodes [not_bytes--storage125992234--input125992234];0.421729;0.060211;0.481797;197732;187300 +1417/3917;Nairobi: opcodes [not_bytes--storage125992234--input125992234];0.433624;0.048327;0.4817;197860;185432 +1418/3917;Alpha: opcodes [lsl_bytes--storage125992234--input125992234];0.431747;0.043916;0.475491;197720;186936 +1419/3917;Mumbai: opcodes [lsl_bytes--storage125992234--input125992234];0.426813;0.051902;0.478487;197988;187724 +1420/3917;Nairobi: opcodes [lsl_bytes--storage125992234--input125992234];0.42735;0.055937;0.482893;197992;187068 +1421/3917;Alpha: opcodes [lsr_bytes--storage125992234--input125992234];0.418751;0.056391;0.476369;198112;187152 +1422/3917;Mumbai: opcodes [lsr_bytes--storage125992234--input125992234];0.42223;0.060165;0.48192;197988;187608 +1423/3917;Nairobi: opcodes [lsr_bytes--storage125992234--input125992234];0.424403;0.052004;0.475982;198116;187024 +1424/3917;Alpha: opcodes [bytes_of_nat--storage125992234--input125992234];0.437827;0.052329;0.489269;197860;185708 +1425/3917;Mumbai: opcodes [bytes_of_nat--storage125992234--input125992234];0.412904;0.067451;0.47997;197992;187020 +1426/3917;Nairobi: opcodes [bytes_of_nat--storage125992234--input125992234];0.426042;0.048227;0.473772;198116;187108 +1427/3917;Alpha: opcodes [bytes_of_int--storage125992234--input125992234];0.402173;0.08824;0.489605;198244;187548 +1428/3917;Mumbai: opcodes [bytes_of_int--storage125992234--input125992234];0.432839;0.051634;0.483706;198372;187812 +1429/3917;Nairobi: opcodes [bytes_of_int--storage125992234--input125992234];0.418286;0.064361;0.481771;198500;187508 +1430/3917;Alpha: test Michelson opcodes: BALANCE;1.29363;0.261168;1.55306;198688;194380 +1431/3917;Mumbai: test Michelson opcodes: BALANCE;1.30984;0.25473;1.56262;198816;194112 +1432/3917;Nairobi: test Michelson opcodes: BALANCE;1.28385;0.275645;1.55755;198820;194448 +1433/3917;Alpha: test Michelson opcodes: NOW;0.574533;0.067779;0.639374;197864;185972 +1434/3917;Mumbai: test Michelson opcodes: NOW;0.579687;0.076097;0.652745;197860;185980 +1435/3917;Nairobi: test Michelson opcodes: NOW;0.559813;0.084397;0.641706;197988;185904 +1436/3917;Alpha: test Michelson opcodes: LEVEL;0.570897;0.075868;0.644769;197860;186244 +1437/3917;Mumbai: test Michelson opcodes: LEVEL;0.554924;0.092236;0.644628;197992;186284 +1438/3917;Nairobi: test Michelson opcodes: LEVEL;0.558918;0.084459;0.640819;197992;185872 +1439/3917;Alpha: test Michelson opcodes: big_map_contract_io;3.23258;0.696402;3.91877;208532;204688 +1440/3917;Mumbai: test Michelson opcodes: big_map_contract_io;3.2106;0.715266;3.91496;208532;204712 +1441/3917;Nairobi: test Michelson opcodes: big_map_contract_io;3.2176;0.713716;3.92058;208464;204932 +1442/3917;Alpha: test Michelson opcodes: pack_unpack;0.698865;0.091793;0.789241;197864;189284 +1443/3917;Mumbai: test Michelson opcodes: pack_unpack;0.666597;0.124629;0.788574;197988;189488 +1444/3917;Nairobi: test Michelson opcodes: pack_unpack;0.68377;0.107338;0.788531;197988;189780 +1445/3917;Alpha: test Michelson opcodes: check_signature;0.709938;0.092143;0.800008;198120;190340 +1446/3917;Mumbai: test Michelson opcodes: check_signature;0.665905;0.121107;0.784944;197988;189520 +1447/3917;Nairobi: test Michelson opcodes: check_signature;0.693457;0.095933;0.786702;198120;190228 +1448/3917;Alpha: test Michelson opcodes: hash_consistency;0.698714;0.087133;0.783971;197856;188912 +1449/3917;Mumbai: test Michelson opcodes: hash_consistency;0.660164;0.132036;0.791391;197860;188600 +1450/3917;Nairobi: test Michelson opcodes: hash_consistency;0.714159;0.091722;0.803355;198116;187116 +1451/3917;Alpha: test Michelson opcodes: arithmetic_overflow;1.20599;0.20462;1.4089;197736;192804 +1452/3917;Mumbai: test Michelson opcodes: arithmetic_overflow;1.20825;0.207473;1.41358;197864;192364 +1453/3917;Nairobi: test Michelson opcodes: arithmetic_overflow;1.22229;0.188583;1.40856;197988;193560 +1454/3917;Alpha: test Michelson opcodes: map_map_side_effect;0.815318;0.135609;0.948505;197860;190732 +1455/3917;Mumbai: test Michelson opcodes: map_map_side_effect;0.833947;0.123986;0.956148;197864;190720 +1456/3917;Nairobi: test Michelson opcodes: map_map_side_effect;0.809658;0.140708;0.948292;197988;190900 +1457/3917;Alpha: Test Implicit;4.06516;0.782673;4.84566;214176;209772 +1458/3917;Mumbai: Test Implicit;4.08777;0.747111;4.83039;213920;209908 +1459/3917;Nairobi: Test Implicit;4.06486;0.774453;4.83515;213920;209904 +1460/3917;Alpha: Test Originated Inexistent;3.54741;0.675142;4.21817;209828;205536 +1461/3917;Mumbai: Test Originated Inexistent;3.46105;0.73225;4.18957;210208;206144 +1462/3917;Nairobi: Test Originated Inexistent;3.57001;0.630576;4.1969;210212;206020 +1463/3917;Alpha: Test originated no default;3.65815;0.732986;4.38549;208152;203396 +1464/3917;Mumbai: Test originated no default;3.76291;0.646986;4.40382;208284;203552 +1465/3917;Nairobi: Test originated no default;3.74205;0.644522;4.38148;210984;207072 +1466/3917;Alpha: Test originated with default;3.62098;0.778548;4.39467;211024;207040 +1467/3917;Mumbai: Test originated with default;3.6029;0.755945;4.35465;211156;206936 +1468/3917;Nairobi: Test originated with default;3.66633;0.708032;4.37039;210976;207012 +1469/3917;Alpha: Tc scripts;2.74617;0.228987;2.93455;304644;303088 +1470/3917;Mumbai: Tc scripts;2.72204;0.227604;2.90079;298692;296008 +1471/3917;Nairobi: Tc scripts;2.70054;0.23523;2.89157;308924;306816 +1472/3917;Alpha: macros [build_list--storage457300675--input680650890];0.423542;0.063898;0.487337;197736;187116 +1473/3917;Mumbai: macros [build_list--storage457300675--input680650890];0.434752;0.039985;0.474645;197604;186804 +1474/3917;Nairobi: macros [build_list--storage457300675--input680650890];0.438783;0.035917;0.474619;197860;187036 +1475/3917;Alpha: macros [build_list--storage457300675--input654274102];0.421437;0.056345;0.477944;197736;187040 +1476/3917;Mumbai: macros [build_list--storage457300675--input654274102];0.421655;0.052188;0.473792;197604;186692 +1477/3917;Nairobi: macros [build_list--storage457300675--input654274102];0.421426;0.056242;0.477658;197860;187064 +1478/3917;Alpha: macros [build_list--storage457300675--input798141440];0.429497;0.056247;0.485749;197604;186848 +1479/3917;Mumbai: macros [build_list--storage457300675--input798141440];0.419873;0.063906;0.483648;197736;186784 +1480/3917;Nairobi: macros [build_list--storage457300675--input798141440];0.402712;0.076105;0.4788;197988;186912 +1481/3917;Alpha: macros [max_in_list--storage921624073--input457300675];0.432456;0.043915;0.476325;197608;187004 +1482/3917;Mumbai: macros [max_in_list--storage921624073--input457300675];0.43208;0.040056;0.472012;197608;186880 +1483/3917;Nairobi: macros [max_in_list--storage921624073--input457300675];0.420058;0.055962;0.475961;197992;187068 +1484/3917;Alpha: macros [max_in_list--storage921624073--input802622031];0.441944;0.048368;0.490307;197736;185416 +1485/3917;Mumbai: macros [max_in_list--storage921624073--input802622031];0.413049;0.0602;0.473191;197736;186764 +1486/3917;Nairobi: macros [max_in_list--storage921624073--input802622031];0.416006;0.056045;0.471982;197860;187288 +1487/3917;Alpha: macros [max_in_list--storage921624073--input220710206];0.418862;0.059756;0.478541;197736;187036 +1488/3917;Mumbai: macros [max_in_list--storage921624073--input220710206];0.415593;0.059905;0.475497;197600;186772 +1489/3917;Nairobi: macros [max_in_list--storage921624073--input220710206];0.436491;0.051624;0.488085;197856;186980 +1490/3917;Alpha: macros [max_in_list--storage921624073--input270034584];0.400106;0.076027;0.476087;197732;186764 +1491/3917;Mumbai: macros [max_in_list--storage921624073--input270034584];0.435138;0.055919;0.490935;197608;185272 +1492/3917;Nairobi: macros [max_in_list--storage921624073--input270034584];0.402943;0.076164;0.47904;197736;187076 +1493/3917;Alpha: macros [max_in_list--storage921624073--input715919879];0.42908;0.051906;0.480958;197728;186796 +1494/3917;Mumbai: macros [max_in_list--storage921624073--input715919879];0.396214;0.080075;0.476215;197480;187156 +1495/3917;Nairobi: macros [max_in_list--storage921624073--input715919879];0.40975;0.068104;0.477767;197860;187068 +1496/3917;Alpha: macros [compare--storage457300675--input848922901];0.40699;0.075794;0.482692;197728;187048 +1497/3917;Mumbai: macros [compare--storage457300675--input848922901];0.427709;0.055768;0.48335;197600;187288 +1498/3917;Nairobi: macros [compare--storage457300675--input848922901];0.42313;0.055887;0.478916;197860;185504 +1499/3917;Alpha: macros [compare--storage457300675--input856198194];0.399173;0.075916;0.475009;197736;186856 +1500/3917;Mumbai: macros [compare--storage457300675--input856198194];0.430531;0.044072;0.474548;197988;186836 +1501/3917;Nairobi: macros [compare--storage457300675--input856198194];0.42207;0.060285;0.482304;197864;187276 +1502/3917;Alpha: macros [compare--storage457300675--input588371073];0.433331;0.044245;0.477617;197732;186624 +1503/3917;Mumbai: macros [compare--storage457300675--input588371073];0.423177;0.051896;0.47497;197732;186936 +1504/3917;Nairobi: macros [compare--storage457300675--input588371073];0.416191;0.071711;0.487872;197984;187024 +1505/3917;Alpha: macros [assert--storage125992234--input954397288];0.424745;0.055959;0.480689;197860;186804 +1506/3917;Mumbai: macros [assert--storage125992234--input954397288];0.424339;0.063878;0.488222;197604;186708 +1507/3917;Nairobi: macros [assert--storage125992234--input954397288];0.429405;0.051941;0.481342;197856;186984 +1508/3917;Alpha: macros [assert_eq--storage125992234--input637504981];0.420723;0.059614;0.480282;197856;186836 +1509/3917;Mumbai: macros [assert_eq--storage125992234--input637504981];0.419107;0.059777;0.477288;197604;186768 +1510/3917;Nairobi: macros [assert_eq--storage125992234--input637504981];0.403211;0.071831;0.474892;197860;186908 +1511/3917;Alpha: macros [assert_neq--storage125992234--input694127922];0.426676;0.052033;0.478657;197736;186656 +1512/3917;Mumbai: macros [assert_neq--storage125992234--input694127922];0.428493;0.059911;0.488353;197604;185324 +1513/3917;Nairobi: macros [assert_neq--storage125992234--input694127922];0.413727;0.072269;0.485966;197856;185512 +1514/3917;Alpha: macros [assert_lt--storage125992234--input280547028];0.439202;0.052023;0.491091;197604;185244 +1515/3917;Mumbai: macros [assert_lt--storage125992234--input280547028];0.426663;0.06024;0.486826;197608;185344 +1516/3917;Nairobi: macros [assert_lt--storage125992234--input280547028];0.440489;0.040664;0.481141;197864;185628 +1517/3917;Alpha: macros [assert_le--storage125992234--input1011138251];0.431194;0.055841;0.486923;197736;185488 +1518/3917;Mumbai: macros [assert_le--storage125992234--input1011138251];0.417573;0.064341;0.481911;197604;185176 +1519/3917;Nairobi: macros [assert_le--storage125992234--input1011138251];0.418812;0.059845;0.478576;197864;185584 +1520/3917;Alpha: macros [assert_le--storage125992234--input280547028];0.430592;0.05184;0.482423;197604;185460 +1521/3917;Mumbai: macros [assert_le--storage125992234--input280547028];0.427241;0.056074;0.483305;197600;185372 +1522/3917;Nairobi: macros [assert_le--storage125992234--input280547028];0.425233;0.056204;0.48141;197856;185404 +1523/3917;Alpha: macros [assert_gt--storage125992234--input694127922];0.417047;0.064116;0.481105;197736;185292 +1524/3917;Mumbai: macros [assert_gt--storage125992234--input694127922];0.442805;0.040098;0.482828;197608;185288 +1525/3917;Nairobi: macros [assert_gt--storage125992234--input694127922];0.429647;0.052131;0.481797;197860;185488 +1526/3917;Alpha: macros [assert_ge--storage125992234--input1011138251];0.449456;0.036033;0.485491;197732;185228 +1527/3917;Mumbai: macros [assert_ge--storage125992234--input1011138251];0.421161;0.064104;0.485141;197608;185272 +1528/3917;Nairobi: macros [assert_ge--storage125992234--input1011138251];0.43578;0.047905;0.483561;197736;185392 +1529/3917;Alpha: macros [assert_ge--storage125992234--input694127922];0.433184;0.052284;0.485482;197736;185244 +1530/3917;Mumbai: macros [assert_ge--storage125992234--input694127922];0.411078;0.063873;0.474898;197476;186852 +1531/3917;Nairobi: macros [assert_ge--storage125992234--input694127922];0.420639;0.055914;0.476452;197860;187296 +1532/3917;Alpha: macros [assert_cmpeq--storage125992234--input637504981];0.433531;0.040191;0.473917;197644;186816 +1533/3917;Mumbai: macros [assert_cmpeq--storage125992234--input637504981];0.437854;0.036156;0.474001;197476;186696 +1534/3917;Nairobi: macros [assert_cmpeq--storage125992234--input637504981];0.406139;0.074985;0.48107;197856;187088 +1535/3917;Alpha: macros [assert_cmpneq--storage125992234--input694127922];0.421682;0.056149;0.477818;197736;186700 +1536/3917;Mumbai: macros [assert_cmpneq--storage125992234--input694127922];0.409679;0.064355;0.473979;197604;186660 +1537/3917;Nairobi: macros [assert_cmpneq--storage125992234--input694127922];0.425158;0.047679;0.472778;197856;186940 +1538/3917;Alpha: macros [assert_cmplt--storage125992234--input280547028];0.42141;0.060213;0.481542;197732;186752 +1539/3917;Mumbai: macros [assert_cmplt--storage125992234--input280547028];0.408581;0.072102;0.480701;197600;186804 +1540/3917;Nairobi: macros [assert_cmplt--storage125992234--input280547028];0.397293;0.079815;0.477061;197864;187268 +1541/3917;Alpha: macros [assert_cmple--storage125992234--input280547028];0.404277;0.068007;0.472231;197732;187040 +1542/3917;Mumbai: macros [assert_cmple--storage125992234--input280547028];0.422586;0.051932;0.474495;197608;186760 +1543/3917;Nairobi: macros [assert_cmple--storage125992234--input280547028];0.406787;0.071587;0.478343;197860;186952 +1544/3917;Alpha: macros [assert_cmple--storage125992234--input1011138251];0.422737;0.063806;0.486534;197860;186796 +1545/3917;Mumbai: macros [assert_cmple--storage125992234--input1011138251];0.43055;0.047841;0.478456;197604;186836 +1546/3917;Nairobi: macros [assert_cmple--storage125992234--input1011138251];0.424339;0.055797;0.480169;197988;186968 +1547/3917;Alpha: macros [assert_cmpgt--storage125992234--input694127922];0.428939;0.048103;0.476912;197604;186952 +1548/3917;Mumbai: macros [assert_cmpgt--storage125992234--input694127922];0.425356;0.04815;0.473521;197604;187060 +1549/3917;Nairobi: macros [assert_cmpgt--storage125992234--input694127922];0.409646;0.07637;0.485985;197860;187096 +1550/3917;Alpha: macros [assert_cmpge--storage125992234--input694127922];0.437562;0.044158;0.481671;197860;187072 +1551/3917;Mumbai: macros [assert_cmpge--storage125992234--input694127922];0.41697;0.059984;0.476832;197604;187080 +1552/3917;Nairobi: macros [assert_cmpge--storage125992234--input694127922];0.40269;0.071656;0.474303;197864;187156 +1553/3917;Alpha: macros [assert_cmpge--storage125992234--input1011138251];0.425269;0.060124;0.485423;197604;186792 +1554/3917;Mumbai: macros [assert_cmpge--storage125992234--input1011138251];0.43076;0.051721;0.482451;197604;186808 +1555/3917;Nairobi: macros [assert_cmpge--storage125992234--input1011138251];0.42202;0.056241;0.478279;197864;187276 +1556/3917;Alpha: macros [set_caddaadr--storage395477859--input949481318];0.433865;0.04804;0.481907;197732;186916 +1557/3917;Mumbai: macros [set_caddaadr--storage395477859--input949481318];0.417689;0.060291;0.477908;197860;187272 +1558/3917;Nairobi: macros [set_caddaadr--storage395477859--input949481318];0.439304;0.039982;0.479225;197860;187264 +1559/3917;Alpha: macros [map_caddaadr--storage395477859--input125992234];0.419618;0.059442;0.479043;197732;186764 +1560/3917;Mumbai: macros [map_caddaadr--storage395477859--input125992234];0.422002;0.056245;0.476659;197736;187016 +1561/3917;Nairobi: macros [map_caddaadr--storage395477859--input125992234];0.417327;0.064238;0.481422;197992;186888 +1562/3917;Alpha: macros [compare_bytes--storage457300675--input989539295];0.426002;0.048131;0.47414;197732;186772 +1563/3917;Mumbai: macros [compare_bytes--storage457300675--input989539295];0.413574;0.068196;0.481751;197728;187060 +1564/3917;Nairobi: macros [compare_bytes--storage457300675--input989539295];0.453664;0.040137;0.493778;197864;185616 +1565/3917;Alpha: macros [compare_bytes--storage457300675--input718599173];0.429424;0.052227;0.481665;197736;187036 +1566/3917;Mumbai: macros [compare_bytes--storage457300675--input718599173];0.418888;0.059858;0.478626;197732;187000 +1567/3917;Nairobi: macros [compare_bytes--storage457300675--input718599173];0.438596;0.039976;0.47862;197856;186820 +1568/3917;Alpha: macros [compare_bytes--storage457300675--input229008542];0.425779;0.060163;0.485928;197604;186632 +1569/3917;Mumbai: macros [compare_bytes--storage457300675--input229008542];0.412759;0.063813;0.476549;197728;187280 +1570/3917;Nairobi: macros [compare_bytes--storage457300675--input229008542];0.433648;0.044139;0.477859;197856;186968 +1571/3917;Alpha: macros [compare_bytes--storage457300675--input594417954];0.413586;0.068252;0.481826;197732;185312 +1572/3917;Mumbai: macros [compare_bytes--storage457300675--input594417954];0.431431;0.052146;0.483484;197732;187536 +1573/3917;Nairobi: macros [compare_bytes--storage457300675--input594417954];0.415009;0.063922;0.478874;197864;187128 +1574/3917;Alpha: macro failure [assert--storage125992234--input570553153];0.419631;0.05982;0.479351;197732;186996 +1575/3917;Mumbai: macro failure [assert--storage125992234--input570553153];0.410328;0.067921;0.478105;198112;187104 +1576/3917;Nairobi: macro failure [assert--storage125992234--input570553153];0.432668;0.052094;0.484698;198244;187456 +1577/3917;Alpha: macro failure [assert_eq--storage125992234--input694127922];0.422806;0.055897;0.478588;197860;187032 +1578/3917;Mumbai: macro failure [assert_eq--storage125992234--input694127922];0.429616;0.056157;0.48571;197992;185856 +1579/3917;Nairobi: macro failure [assert_eq--storage125992234--input694127922];0.422803;0.056102;0.478884;198244;187540 +1580/3917;Alpha: macro failure [assert_neq--storage125992234--input637504981];0.410567;0.071749;0.482248;197732;186748 +1581/3917;Mumbai: macro failure [assert_neq--storage125992234--input637504981];0.444268;0.035973;0.479602;197988;187760 +1582/3917;Nairobi: macro failure [assert_neq--storage125992234--input637504981];0.426773;0.055891;0.482596;198372;187172 +1583/3917;Alpha: macro failure [assert_lt--storage125992234--input694127922];0.405859;0.076279;0.482043;197732;186692 +1584/3917;Mumbai: macro failure [assert_lt--storage125992234--input694127922];0.421405;0.060103;0.481639;198120;187308 +1585/3917;Nairobi: macro failure [assert_lt--storage125992234--input694127922];0.421284;0.056188;0.477407;198244;187592 +1586/3917;Alpha: macro failure [assert_lt--storage125992234--input1011138251];0.424698;0.059921;0.484645;197860;186712 +1587/3917;Mumbai: macro failure [assert_lt--storage125992234--input1011138251];0.410898;0.068182;0.478956;198116;187544 +1588/3917;Nairobi: macro failure [assert_lt--storage125992234--input1011138251];0.434183;0.048093;0.482184;198244;187324 +1589/3917;Alpha: macro failure [assert_le--storage125992234--input694127922];0.419183;0.056169;0.475261;197736;186832 +1590/3917;Mumbai: macro failure [assert_le--storage125992234--input694127922];0.43894;0.047872;0.486687;197988;185672 +1591/3917;Nairobi: macro failure [assert_le--storage125992234--input694127922];0.413199;0.064002;0.477159;198244;187368 +1592/3917;Alpha: macro failure [assert_gt--storage125992234--input280547028];0.400739;0.079545;0.480195;197728;187044 +1593/3917;Mumbai: macro failure [assert_gt--storage125992234--input280547028];0.429409;0.048213;0.477544;197816;187888 +1594/3917;Nairobi: macro failure [assert_gt--storage125992234--input280547028];0.408735;0.071905;0.480604;198240;187380 +1595/3917;Alpha: macro failure [assert_gt--storage125992234--input1011138251];0.428199;0.055753;0.483877;197732;186756 +1596/3917;Mumbai: macro failure [assert_gt--storage125992234--input1011138251];0.416302;0.060044;0.476336;197988;187228 +1597/3917;Nairobi: macro failure [assert_gt--storage125992234--input1011138251];0.414111;0.076345;0.490155;198244;185640 +1598/3917;Alpha: macro failure [assert_ge--storage125992234--input280547028];0.432897;0.052101;0.484966;197860;186868 +1599/3917;Mumbai: macro failure [assert_ge--storage125992234--input280547028];0.442103;0.036201;0.478402;197992;187648 +1600/3917;Nairobi: macro failure [assert_ge--storage125992234--input280547028];0.405688;0.071595;0.477167;198248;187224 +1601/3917;Alpha: macro failure [assert_cmpeq--storage125992234--input694127922];0.41936;0.059945;0.479225;197736;187232 +1602/3917;Mumbai: macro failure [assert_cmpeq--storage125992234--input694127922];0.427003;0.047962;0.47489;198116;187304 +1603/3917;Nairobi: macro failure [assert_cmpeq--storage125992234--input694127922];0.420573;0.060212;0.48072;198248;187616 +1604/3917;Alpha: macro failure [assert_cmpneq--storage125992234--input637504981];0.41272;0.063565;0.476216;197732;186784 +1605/3917;Mumbai: macro failure [assert_cmpneq--storage125992234--input637504981];0.434818;0.039921;0.474687;197984;187592 +1606/3917;Nairobi: macro failure [assert_cmpneq--storage125992234--input637504981];0.419436;0.05207;0.471382;198248;187576 +1607/3917;Alpha: macro failure [assert_cmplt--storage125992234--input1011138251];0.406526;0.068063;0.474539;197732;187052 +1608/3917;Mumbai: macro failure [assert_cmplt--storage125992234--input1011138251];0.427712;0.051822;0.479508;197988;187408 +1609/3917;Nairobi: macro failure [assert_cmplt--storage125992234--input1011138251];0.41258;0.071771;0.484311;198248;185740 +1610/3917;Alpha: macro failure [assert_cmplt--storage125992234--input694127922];0.417547;0.064184;0.481809;197736;187012 +1611/3917;Mumbai: macro failure [assert_cmplt--storage125992234--input694127922];0.423155;0.056142;0.479276;197988;187520 +1612/3917;Nairobi: macro failure [assert_cmplt--storage125992234--input694127922];0.430089;0.060187;0.490361;198372;187436 +1613/3917;Alpha: macro failure [assert_cmple--storage125992234--input694127922];0.433893;0.048143;0.482015;197732;186716 +1614/3917;Mumbai: macro failure [assert_cmple--storage125992234--input694127922];0.422777;0.063865;0.486574;197988;185924 +1615/3917;Nairobi: macro failure [assert_cmple--storage125992234--input694127922];0.421056;0.052126;0.473148;198248;187348 +1616/3917;Alpha: macro failure [assert_cmpgt--storage125992234--input1011138251];0.428952;0.051829;0.480765;197736;185240 +1617/3917;Mumbai: macro failure [assert_cmpgt--storage125992234--input1011138251];0.441179;0.052171;0.493272;198244;185684 +1618/3917;Nairobi: macro failure [assert_cmpgt--storage125992234--input1011138251];0.420887;0.061059;0.481935;198376;185748 +1619/3917;Alpha: macro failure [assert_cmpgt--storage125992234--input280547028];0.407929;0.079783;0.487609;197732;185440 +1620/3917;Mumbai: macro failure [assert_cmpgt--storage125992234--input280547028];0.412966;0.067774;0.480425;197988;185484 +1621/3917;Nairobi: macro failure [assert_cmpgt--storage125992234--input280547028];0.426567;0.063829;0.490334;198244;185908 +1622/3917;Alpha: macro failure [assert_cmpge--storage125992234--input280547028];0.423267;0.06011;0.483295;197732;185296 +1623/3917;Mumbai: macro failure [assert_cmpge--storage125992234--input280547028];0.422499;0.064062;0.486459;197988;185768 +1624/3917;Nairobi: macro failure [assert_cmpge--storage125992234--input280547028];0.421465;0.068047;0.489445;198240;185804 +1625/3917;Alpha: test guestbook.tz;1.21825;0.216422;1.43027;198756;191952 +1626/3917;Mumbai: test guestbook.tz;1.20387;0.238549;1.43769;198504;191564 +1627/3917;Nairobi: test guestbook.tz;1.2325;0.236855;1.46469;198760;191288 +1628/3917;Alpha: test big_map;1.85983;0.370623;2.22598;200788;197908 +1629/3917;Mumbai: test big_map;1.83261;0.396432;2.22513;198628;194104 +1630/3917;Nairobi: test big_map;1.88804;0.334432;2.21834;200688;198008 +1631/3917;Alpha: test big_map_get_add;1.50942;0.292953;1.79681;198884;194960 +1632/3917;Mumbai: test big_map_get_add;1.48763;0.285825;1.76974;199976;197488 +1633/3917;Nairobi: test big_map_get_add;1.47543;0.296808;1.76882;199840;197248 +1634/3917;Alpha: Macro expansion: macros/assert;0.423133;0.055917;0.47908;197728;187088 +1635/3917;Alpha: Macro expansion: macros/assert_cmpeq;0.41286;0.072111;0.484966;197604;186720 +1636/3917;Alpha: Macro expansion: macros/assert_cmpge;0.412423;0.067941;0.480368;197732;186836 +1637/3917;Alpha: Macro expansion: macros/assert_cmpgt;0.433894;0.044171;0.478123;197732;186476 +1638/3917;Alpha: Macro expansion: macros/assert_cmple;0.415102;0.05597;0.471106;197604;186784 +1639/3917;Alpha: Macro expansion: macros/assert_cmplt;0.408665;0.067777;0.47645;197604;186764 +1640/3917;Alpha: Macro expansion: macros/assert_cmpneq;0.440411;0.039947;0.480376;197732;186764 +1641/3917;Alpha: Macro expansion: macros/assert_eq;0.408757;0.067868;0.476642;197732;186660 +1642/3917;Alpha: Macro expansion: macros/assert_ge;0.416296;0.063792;0.480006;197604;186940 +1643/3917;Alpha: Macro expansion: macros/assert_gt;0.409543;0.067442;0.477022;197736;187020 +1644/3917;Alpha: Macro expansion: macros/assert_le;0.42894;0.055359;0.484296;197604;187372 +1645/3917;Alpha: Macro expansion: macros/assert_lt;0.443083;0.04796;0.491054;197732;185288 +1646/3917;Alpha: Macro expansion: macros/assert_neq;0.428931;0.051918;0.480872;197732;186812 +1647/3917;Alpha: Macro expansion: macros/big_map_get_add;0.41822;0.059835;0.478187;197732;186736 +1648/3917;Alpha: Macro expansion: macros/big_map_mem;0.416672;0.064114;0.480789;197736;186768 +1649/3917;Alpha: Macro expansion: macros/build_list;0.436059;0.051767;0.487873;197684;187116 +1650/3917;Alpha: Macro expansion: macros/carn_and_cdrn;0.432227;0.043732;0.475932;197732;186800 +1651/3917;Alpha: Macro expansion: macros/compare;0.390523;0.079746;0.470281;197732;186764 +1652/3917;Alpha: Macro expansion: macros/compare_bytes;0.436021;0.051882;0.487883;197732;185412 +1653/3917;Alpha: Macro expansion: macros/fail;0.421892;0.056104;0.478109;197604;186784 +1654/3917;Alpha: Macro expansion: macros/guestbook;0.431093;0.048025;0.479098;197732;186932 +1655/3917;Alpha: Macro expansion: macros/macro_annotations;0.436627;0.039849;0.476489;197732;187000 +1656/3917;Alpha: Macro expansion: macros/map_caddaadr;0.396766;0.080279;0.477036;197728;186788 +1657/3917;Alpha: Macro expansion: macros/max_in_list;0.432224;0.051651;0.483913;197732;185368 +1658/3917;Alpha: Macro expansion: macros/min;0.409141;0.064374;0.473621;197736;186780 +1659/3917;Alpha: Macro expansion: macros/pair_macro;0.415129;0.064143;0.479289;197732;186792 +1660/3917;Alpha: Macro expansion: macros/set_caddaadr;0.418565;0.063856;0.482383;197604;186776 +1661/3917;Alpha: Macro expansion: macros/take_my_money;0.402979;0.076153;0.479132;197608;186828 +1662/3917;Alpha: Macro expansion: macros/unpair_macro;0.413385;0.064242;0.47752;197608;186592 +1663/3917;Mumbai: Macro expansion: macros/assert;0.413729;0.063707;0.477581;197608;187052 +1664/3917;Mumbai: Macro expansion: macros/assert_cmpeq;0.443052;0.047935;0.491039;197732;185276 +1665/3917;Mumbai: Macro expansion: macros/assert_cmpge;0.416195;0.064021;0.480223;197604;186760 +1666/3917;Mumbai: Macro expansion: macros/assert_cmpgt;0.397306;0.072122;0.469473;197600;186712 +1667/3917;Mumbai: Macro expansion: macros/assert_cmple;0.424555;0.05606;0.480734;197604;186744 +1668/3917;Mumbai: Macro expansion: macros/assert_cmplt;0.412105;0.06372;0.475731;197608;187108 +1669/3917;Mumbai: Macro expansion: macros/assert_cmpneq;0.410609;0.063884;0.474531;197608;186768 +1670/3917;Mumbai: Macro expansion: macros/assert_eq;0.429589;0.048044;0.477715;197736;186824 +1671/3917;Mumbai: Macro expansion: macros/assert_ge;0.424296;0.060104;0.484454;197608;185276 +1672/3917;Mumbai: Macro expansion: macros/assert_gt;0.423149;0.052186;0.475413;197732;186884 +1673/3917;Mumbai: Macro expansion: macros/assert_le;0.41751;0.060251;0.477696;197480;187056 +1674/3917;Mumbai: Macro expansion: macros/assert_lt;0.407494;0.067964;0.475476;197480;186740 +1675/3917;Mumbai: Macro expansion: macros/assert_neq;0.406583;0.071752;0.478374;197604;187096 +1676/3917;Mumbai: Macro expansion: macros/big_map_get_add;0.421184;0.055369;0.476534;197608;186796 +1677/3917;Mumbai: Macro expansion: macros/big_map_mem;0.420716;0.064152;0.484807;197604;187064 +1678/3917;Mumbai: Macro expansion: macros/build_list;0.431118;0.044049;0.475185;197604;186668 +1679/3917;Mumbai: Macro expansion: macros/carn_and_cdrn;0.412194;0.06368;0.475891;197732;186844 +1680/3917;Mumbai: Macro expansion: macros/compare;0.397451;0.080364;0.477835;197608;186736 +1681/3917;Mumbai: Macro expansion: macros/compare_bytes;0.411343;0.067325;0.478639;197732;186716 +1682/3917;Mumbai: Macro expansion: macros/fail;0.439309;0.043982;0.483388;197604;186772 +1683/3917;Mumbai: Macro expansion: macros/guestbook;0.428934;0.056712;0.485556;197736;185372 +1684/3917;Mumbai: Macro expansion: macros/macro_annotations;0.404615;0.071706;0.476358;197604;187036 +1685/3917;Mumbai: Macro expansion: macros/map_caddaadr;0.417752;0.071899;0.489445;197608;187128 +1686/3917;Mumbai: Macro expansion: macros/max_in_list;0.438726;0.043991;0.482734;197600;186772 +1687/3917;Mumbai: Macro expansion: macros/min;0.431398;0.047703;0.479335;197472;186760 +1688/3917;Mumbai: Macro expansion: macros/pair_macro;0.41216;0.063592;0.47574;197608;186780 +1689/3917;Mumbai: Macro expansion: macros/set_caddaadr;0.428431;0.052003;0.480314;197736;186632 +1690/3917;Mumbai: Macro expansion: macros/take_my_money;0.424962;0.063771;0.488642;197472;185172 +1691/3917;Mumbai: Macro expansion: macros/unpair_macro;0.424488;0.05592;0.480387;197600;187268 +1692/3917;Nairobi: Macro expansion: macros/assert;0.422964;0.055358;0.478389;197732;187068 +1693/3917;Nairobi: Macro expansion: macros/assert_cmpeq;0.420933;0.060128;0.481117;197860;187072 +1694/3917;Nairobi: Macro expansion: macros/assert_cmpge;0.414437;0.06386;0.478437;197728;186824 +1695/3917;Nairobi: Macro expansion: macros/assert_cmpgt;0.424128;0.052025;0.476149;197728;187072 +1696/3917;Nairobi: Macro expansion: macros/assert_cmple;0.403748;0.067975;0.471727;197732;186752 +1697/3917;Nairobi: Macro expansion: macros/assert_cmplt;0.412721;0.06779;0.48055;197864;185372 +1698/3917;Nairobi: Macro expansion: macros/assert_cmpneq;0.42848;0.047959;0.476585;197860;186668 +1699/3917;Nairobi: Macro expansion: macros/assert_eq;0.408225;0.075555;0.483776;197736;185392 +1700/3917;Nairobi: Macro expansion: macros/assert_ge;0.44761;0.043937;0.491554;197732;185404 +1701/3917;Nairobi: Macro expansion: macros/assert_gt;0.431224;0.05992;0.49114;197736;185280 +1702/3917;Nairobi: Macro expansion: macros/assert_le;0.418325;0.067805;0.486389;197732;185336 +1703/3917;Nairobi: Macro expansion: macros/assert_lt;0.406786;0.079776;0.486559;197736;185476 +1704/3917;Nairobi: Macro expansion: macros/assert_neq;0.424122;0.056014;0.480173;197732;185248 +1705/3917;Nairobi: Macro expansion: macros/big_map_get_add;0.42863;0.060189;0.488848;197732;185428 +1706/3917;Nairobi: Macro expansion: macros/big_map_mem;0.422769;0.064108;0.486965;197736;185244 +1707/3917;Nairobi: Macro expansion: macros/build_list;0.405166;0.08764;0.492864;197732;185456 +1708/3917;Nairobi: Macro expansion: macros/carn_and_cdrn;0.418563;0.067789;0.486493;197732;185236 +1709/3917;Nairobi: Macro expansion: macros/compare;0.424431;0.064208;0.488778;197604;185256 +1710/3917;Nairobi: Macro expansion: macros/compare_bytes;0.432917;0.051796;0.484736;197732;185320 +1711/3917;Nairobi: Macro expansion: macros/fail;0.428509;0.055886;0.484348;197736;185192 +1712/3917;Nairobi: Macro expansion: macros/guestbook;0.41442;0.063869;0.478441;197732;185336 +1713/3917;Nairobi: Macro expansion: macros/macro_annotations;0.445273;0.043933;0.489207;197600;185292 +1714/3917;Nairobi: Macro expansion: macros/map_caddaadr;0.421044;0.067363;0.488298;197728;185420 +1715/3917;Nairobi: Macro expansion: macros/max_in_list;0.414216;0.067756;0.481975;197732;185276 +1716/3917;Nairobi: Macro expansion: macros/min;0.428264;0.051581;0.47983;197732;186820 +1717/3917;Nairobi: Macro expansion: macros/pair_macro;0.427965;0.047931;0.475936;197728;187032 +1718/3917;Nairobi: Macro expansion: macros/set_caddaadr;0.423178;0.05988;0.483;197732;186788 +1719/3917;Nairobi: Macro expansion: macros/take_my_money;0.402709;0.075921;0.478676;197604;186748 +1720/3917;Nairobi: Macro expansion: macros/unpair_macro;0.416133;0.057029;0.473291;197736;186812 +1721/3917;Alpha: test create contract balance;1.19475;0.250608;1.43868;198884;191332 +1722/3917;Mumbai: test create contract balance;1.25501;0.180606;1.43302;198888;193088 +1723/3917;Nairobi: test create contract balance;1.22761;0.212604;1.43596;198760;191512 +1724/3917;Alpha: test replay;0.668314;0.123664;0.78952;198624;189668 +1725/3917;Mumbai: test replay;0.697256;0.100008;0.795835;198632;189504 +1726/3917;Nairobi: test replay;0.711926;0.082751;0.792828;198628;189388 +1727/3917;Alpha: test default account originate and transfer;0.807194;0.156472;0.962116;198632;191072 +1728/3917;Mumbai: test default account originate and transfer;0.846195;0.112262;0.956711;198752;191024 +1729/3917;Nairobi: test default account originate and transfer;0.831051;0.143467;0.972132;198756;191716 +1730/3917;Alpha: test preimage and signature;0.933168;0.182615;1.11425;198884;192876 +1731/3917;Mumbai: test preimage and signature;0.91984;0.200211;1.11741;198632;192324 +1732/3917;Nairobi: test preimage and signature;0.958978;0.152562;1.1093;198756;192416 +1733/3917;Alpha: test vote for delegate;2.09864;0.463396;2.55409;203288;198640 +1734/3917;Mumbai: test vote for delegate;2.12435;0.395958;2.51641;200740;197868 +1735/3917;Nairobi: test vote for delegate;2.12126;0.417916;2.53599;200736;197868 +1736/3917;Alpha: test multiple entrypoints counter;0.840156;0.148018;0.977726;199008;188912 +1737/3917;Mumbai: test multiple entrypoints counter;0.807302;0.151923;0.956225;199140;190760 +1738/3917;Nairobi: test multiple entrypoints counter;0.846471;0.127529;0.972261;199012;191056 +1739/3917;Alpha: test contract noop;1.00406;0.107862;1.11083;198756;192584 +1740/3917;Mumbai: test contract noop;0.979714;0.135787;1.11443;198628;192404 +1741/3917;Nairobi: test contract noop;0.943773;0.171836;1.11459;198760;192960 +1742/3917;Alpha: test contract hardlimit;1.0462;0.236683;1.28094;198884;193196 +1743/3917;Mumbai: test contract hardlimit;1.07362;0.200701;1.27165;198628;192668 +1744/3917;Nairobi: test contract hardlimit;1.06342;0.231236;1.29229;198760;192472 +1745/3917;Alpha: Bootstrap contract with given hash;1.29268;0.244345;1.53836;388204;561064 +1746/3917;Alpha: Create contract;0.725881;0.091612;0.815363;198884;190644 +1747/3917;Mumbai: Create contract;0.710987;0.112298;0.821847;198752;190544 +1748/3917;Nairobi: Create contract;0.72782;0.100471;0.827015;198760;190768 +1749/3917;Mumbai: set deposits limit;1.33171;0.215266;1.54652;388204;560364 +1750/3917;Nairobi: set deposits limit;1.30689;0.23666;1.53303;388324;558992 +1751/3917;Mumbai: unset deposits limit;1.3155;0.20841;1.52287;388328;560428 +1752/3917;Nairobi: unset deposits limit;1.33904;0.205145;1.54543;388200;559936 +1753/3917;Alpha: double baking with accuser;6.0252;1.14582;5.8913;388068;1281364 +1754/3917;Mumbai: double baking with accuser;6.02486;1.29067;5.86628;388328;1279880 +1755/3917;Nairobi: double baking with accuser;6.10792;1.11453;5.84746;388196;1278996 +1756/3917;Alpha: double attestation using wrong slot;3.34459;0.599356;3.87429;388076;612504 +1757/3917;Nairobi: double attestation using wrong slot;3.2856;0.628368;3.83727;388076;613948 +1758/3917;Alpha: double preattestation using wrong slot;3.34927;0.534416;3.81021;388076;613068 +1759/3917;Nairobi: double preattestation using wrong slot;3.34848;0.550766;3.82464;388072;613524 +1760/3917;Alpha: double attestation using wrong block_payload_hash;3.56108;0.651793;4.14252;388200;615280 +1761/3917;Nairobi: double attestation using wrong block_payload_hash;3.5077;0.709519;4.1416;374380;600684 +1762/3917;Alpha: double preattestation using wrong block_payload_hash;3.53641;0.6827;4.13777;388200;612592 +1763/3917;Nairobi: double preattestation using wrong block_payload_hash;3.56307;0.650492;4.13445;388076;615528 +1764/3917;Alpha: double attestation using wrong branch;3.51477;0.681866;4.12235;388200;614436 +1765/3917;Nairobi: double attestation using wrong branch;3.49377;0.705888;4.12147;374376;602160 +1766/3917;Alpha: double preattestation using wrong branch;3.47577;0.737439;4.14268;388076;614644 +1767/3917;Nairobi: double preattestation using wrong branch;3.52196;0.692459;4.12777;387948;613268 +1768/3917;Alpha: operation too old;2.29272;0.474293;2.72565;374380;593256 +1769/3917;Nairobi: operation too old;2.2724;0.488059;2.71803;388076;608216 +1770/3917;Alpha: operation too far in the future;2.2832;0.452242;2.69684;388204;606676 +1771/3917;Nairobi: operation too far in the future;2.23409;0.480207;2.68446;388064;603084 +1772/3917;octez-codec dump encodings;23.898;0.255606;24.1029;841348;1061368 +1773/3917;shell encoding regression test: network_version;0.477303;0.068388;0.54552;192424;170372 +1774/3917;Alpha: protocol encoding regression test: block_header;0.489247;0.055514;0.544611;192424;170520 +1775/3917;Mumbai: protocol encoding regression test: block_header;0.465648;0.079892;0.5454;192544;170296 +1776/3917;Nairobi: protocol encoding regression test: block_header;0.457924;0.095562;0.553404;192336;170412 +1777/3917;Alpha: protocol encoding regression test: block_header.raw;0.468726;0.07982;0.548431;192420;170292 +1778/3917;Mumbai: protocol encoding regression test: block_header.raw;0.495347;0.064116;0.559416;190740;168896 +1779/3917;Nairobi: protocol encoding regression test: block_header.raw;0.474766;0.075923;0.550555;192676;170648 +1780/3917;Alpha: protocol encoding regression test: block_header.unsigned;0.476831;0.072231;0.548959;192800;170628 +1781/3917;Mumbai: protocol encoding regression test: block_header.unsigned;0.483878;0.07585;0.559583;190616;168772 +1782/3917;Nairobi: protocol encoding regression test: block_header.unsigned;0.469723;0.079601;0.549193;192548;170624 +1783/3917;Alpha: protocol encoding regression test: contract;0.657079;0.112302;0.768928;194380;172708 +1784/3917;Mumbai: protocol encoding regression test: contract;0.646481;0.131442;0.777468;194344;172608 +1785/3917;Nairobi: protocol encoding regression test: contract;0.663708;0.127967;0.791143;192924;170848 +1786/3917;Alpha: protocol encoding regression test: cycle;0.659704;0.115619;0.774823;194468;172668 +1787/3917;Mumbai: protocol encoding regression test: cycle;0.65676;0.11971;0.775972;194340;172780 +1788/3917;Nairobi: protocol encoding regression test: cycle;0.636526;0.136708;0.772836;194848;172820 +1789/3917;Alpha: protocol encoding regression test: fitness;0.486988;0.067876;0.554685;192152;170140 +1790/3917;Mumbai: protocol encoding regression test: fitness;0.483152;0.075858;0.558864;192420;170376 +1791/3917;Nairobi: protocol encoding regression test: fitness;0.479842;0.067835;0.547525;192288;170200 +1792/3917;Alpha: protocol encoding regression test: gas.cost;0.66013;0.119674;0.779345;194468;172748 +1793/3917;Mumbai: protocol encoding regression test: gas.cost;0.649434;0.127047;0.775997;194596;172664 +1794/3917;Nairobi: protocol encoding regression test: gas.cost;0.635893;0.139018;0.774488;194900;173068 +1795/3917;Alpha: protocol encoding regression test: gas;0.816944;0.183976;1.00015;196516;174420 +1796/3917;Mumbai: protocol encoding regression test: gas;0.864899;0.143851;1.00792;196904;175352 +1797/3917;Nairobi: protocol encoding regression test: gas;0.845404;0.156617;1.00122;196768;175224 +1798/3917;Alpha: protocol encoding regression test: level;0.501524;0.05194;0.553291;192164;170408 +1799/3917;Mumbai: protocol encoding regression test: level;0.462671;0.087409;0.549767;190872;168892 +1800/3917;Nairobi: protocol encoding regression test: level;0.507644;0.055898;0.563346;190744;169136 +1801/3917;Alpha: protocol encoding regression test: nonce;0.504814;0.055882;0.560494;190744;168844 +1802/3917;Mumbai: protocol encoding regression test: nonce;0.475802;0.079567;0.555193;190740;168872 +1803/3917;Nairobi: protocol encoding regression test: nonce;0.492796;0.071615;0.564462;190616;168592 +1804/3917;Alpha: protocol encoding regression test: operation.internal;1.23777;0.240632;1.47709;199188;177464 +1805/3917;Mumbai: protocol encoding regression test: operation.internal;1.19826;0.299797;1.49673;199320;177692 +1806/3917;Nairobi: protocol encoding regression test: operation.internal;1.21281;0.262805;1.47437;199192;177524 +1807/3917;Alpha: protocol encoding regression test: operation;3.01022;0.758724;3.76402;212764;191084 +1808/3917;Mumbai: protocol encoding regression test: operation;2.91605;0.626334;3.53786;213668;192044 +1809/3917;Nairobi: protocol encoding regression test: operation;2.83219;0.689816;3.51771;213536;191908 +1810/3917;Alpha: protocol encoding regression test: operation_with_attestation;3.05295;0.70741;3.75526;215592;193932 +1811/3917;Alpha: protocol encoding regression test: operation.raw;0.477384;0.068238;0.54543;192292;170404 +1812/3917;Mumbai: protocol encoding regression test: operation.raw;0.478718;0.067857;0.546415;192160;170252 +1813/3917;Nairobi: protocol encoding regression test: operation.raw;0.476397;0.076122;0.55242;192164;170344 +1814/3917;Alpha: protocol encoding regression test: operation.unsigned;3.05445;0.693807;3.74337;215584;193552 +1815/3917;Mumbai: protocol encoding regression test: operation.unsigned;2.66102;0.631762;3.28873;211404;189792 +1816/3917;Nairobi: protocol encoding regression test: operation.unsigned;2.74872;0.557814;3.30274;208796;187468 +1817/3917;Alpha: protocol encoding regression test: operation_with_attestation.unsigned;3.00805;0.760076;3.7635;215484;193808 +1818/3917;Alpha: protocol encoding regression test: period;0.624873;0.147921;0.772311;194596;173100 +1819/3917;Mumbai: protocol encoding regression test: period;0.65813;0.111153;0.768853;194472;172916 +1820/3917;Nairobi: protocol encoding regression test: period;0.665304;0.12309;0.787916;192920;170928 +1821/3917;Alpha: protocol encoding regression test: raw_level;0.643628;0.127293;0.770549;194896;173100 +1822/3917;Mumbai: protocol encoding regression test: raw_level;0.661191;0.115511;0.776216;194468;172328 +1823/3917;Nairobi: protocol encoding regression test: raw_level;0.671935;0.103799;0.775349;194468;172512 +1824/3917;Alpha: protocol encoding regression test: seed;0.464381;0.083788;0.547962;192420;170532 +1825/3917;Mumbai: protocol encoding regression test: seed;0.477265;0.076297;0.553396;192424;170628 +1826/3917;Nairobi: protocol encoding regression test: seed;0.471637;0.071908;0.543362;192464;170132 +1827/3917;Alpha: protocol encoding regression test: tez;0.624623;0.147264;0.771433;194592;172640 +1828/3917;Mumbai: protocol encoding regression test: tez;0.64115;0.131913;0.772793;194340;172612 +1829/3917;Nairobi: protocol encoding regression test: tez;0.629696;0.147291;0.776489;194468;172760 +1830/3917;Alpha: protocol encoding regression test: timestamp;0.483287;0.075967;0.559099;190872;168836 +1831/3917;Mumbai: protocol encoding regression test: timestamp;0.45227;0.095412;0.547541;192168;170108 +1832/3917;Nairobi: protocol encoding regression test: timestamp;0.481262;0.063366;0.544454;192464;170408 +1833/3917;Alpha: protocol encoding regression test: vote.ballot;0.825889;0.171206;0.99633;196648;175036 +1834/3917;Mumbai: protocol encoding regression test: vote.ballot;0.853949;0.176678;1.02974;194840;172880 +1835/3917;Nairobi: protocol encoding regression test: vote.ballot;0.844638;0.15206;0.996036;196776;175072 +1836/3917;Alpha: protocol encoding regression test: vote.ballots;0.480873;0.07137;0.550358;192420;170456 +1837/3917;Mumbai: protocol encoding regression test: vote.ballots;0.471418;0.075986;0.547234;192416;170392 +1838/3917;Nairobi: protocol encoding regression test: vote.ballots;0.44461;0.103902;0.54836;192416;170504 +1839/3917;Alpha: protocol encoding regression test: vote.listings;0.466844;0.079654;0.546362;192204;170404 +1840/3917;Mumbai: protocol encoding regression test: vote.listings;0.480891;0.071854;0.552666;192156;170368 +1841/3917;Nairobi: protocol encoding regression test: vote.listings;0.477364;0.071402;0.548585;192160;170152 +1842/3917;Alpha: protocol encoding regression test: voting_period.kind;1.03631;0.192088;1.22739;198564;176708 +1843/3917;Mumbai: protocol encoding regression test: voting_period.kind;1.01708;0.207696;1.22367;198992;177492 +1844/3917;Nairobi: protocol encoding regression test: voting_period.kind;1.04532;0.198849;1.24316;197012;174976 +1845/3917;Alpha: protocol encoding regression test: voting_period;0.666357;0.119851;0.785696;193044;171076 +1846/3917;Mumbai: protocol encoding regression test: voting_period;0.668812;0.116459;0.784823;192792;170688 +1847/3917;Nairobi: protocol encoding regression test: voting_period;0.709;0.088151;0.796643;192668;170884 +1848/3917;Alpha: Events: events from client;1.86338;0.35125;2.18188;388328;566416 +1849/3917;Mumbai: Events: events from client;1.85716;0.337255;2.1647;388196;566444 +1850/3917;Nairobi: Events: events from client;1.89706;0.318966;2.18548;388196;567164 +1851/3917;Alpha: external validator kill;2.23079;0.404079;3.586;375372;549080 +1852/3917;Mumbai: external validator kill;2.23754;0.395147;3.59092;372532;545776 +1853/3917;Nairobi: external validator kill;2.23057;0.394672;3.58028;372404;546544 +1854/3917;Alpha: forge;1.95218;0.370627;2.31451;388068;565316 +1855/3917;Mumbai: forge;1.93886;0.369048;2.29721;388196;565900 +1856/3917;Nairobi: forge;1.93606;0.363614;2.29047;388196;566468 +1857/3917;Alpha: fork;4.15894;0.721027;4.87485;388196;932252 +1858/3917;Mumbai: fork;4.10084;0.752458;4.84899;388200;933636 +1859/3917;Nairobi: fork;4.17415;0.662521;4.84;388076;932348 +1860/3917;Alpha: first explosion;0.63369;0.159646;0.792369;197984;189372 +1861/3917;Mumbai: first explosion;0.699625;0.104139;0.803016;197856;188900 +1862/3917;Nairobi: first explosion;0.669142;0.12407;0.792333;197988;189448 +1863/3917;Alpha: first explosion big type;0.386816;0.092426;0.478861;197864;187240 +1864/3917;Mumbai: first explosion big type;0.427206;0.055773;0.482498;197856;187604 +1865/3917;Nairobi: first explosion big type;0.423935;0.063779;0.487289;197988;187584 +1866/3917;Alpha: second explosion;0.62902;0.084737;0.706078;227556;221108 +1867/3917;Mumbai: second explosion;0.625514;0.099818;0.718305;227432;220344 +1868/3917;Nairobi: second explosion;0.621329;0.108233;0.72221;227428;220648 +1869/3917;Alpha: second explosion fail;0.400342;0.087447;0.487103;197864;187476 +1870/3917;Mumbai: second explosion fail;0.429333;0.065562;0.491344;197860;185804 +1871/3917;Nairobi: second explosion fail;0.407748;0.075955;0.483013;197984;187576 +1872/3917;Alpha: typecheck map dup key;0.560982;0.081042;0.641494;197732;188136 +1873/3917;Mumbai: typecheck map dup key;0.569004;0.071584;0.639964;197984;188932 +1874/3917;Nairobi: typecheck map dup key;0.523735;0.111752;0.634782;198112;188532 +1875/3917;Alpha: typecheck map bad ordering;0.553118;0.084405;0.635422;197732;188000 +1876/3917;Mumbai: typecheck map bad ordering;0.5709;0.072499;0.642744;197988;188240 +1877/3917;Nairobi: typecheck map bad ordering;0.580269;0.058911;0.63874;197988;187880 +1878/3917;Alpha: typecheck set bad ordering;0.535813;0.107601;0.642695;197864;188276 +1879/3917;Mumbai: typecheck set bad ordering;0.561171;0.072406;0.633161;197860;188632 +1880/3917;Nairobi: typecheck set bad ordering;0.557151;0.084951;0.64187;197992;188072 +1881/3917;Alpha: typecheck set no duplicates;0.560752;0.076895;0.637043;197864;188032 +1882/3917;Mumbai: typecheck set no duplicates;0.564861;0.07952;0.64142;197860;186320 +1883/3917;Nairobi: typecheck set no duplicates;0.530903;0.115808;0.644132;198116;186572 +1884/3917;Alpha: Originate a large, flat contract;1.81316;0.239428;2.02082;388456;602264 +1885/3917;Mumbai: Originate a large, flat contract;1.81615;0.263634;2.17447;388304;603252 +1886/3917;Nairobi: Originate a large, flat contract;1.81762;0.272936;2.14797;388456;603580 +1887/3917;Alpha: Global constants billion laughs attack;2.35793;0.393863;2.70641;388328;572776 +1888/3917;Mumbai: Global constants billion laughs attack;2.29846;0.436483;2.70011;388456;568976 +1889/3917;Nairobi: Global constants billion laughs attack;2.29903;0.442389;2.70558;388452;568732 +1890/3917;Alpha: Global constants are expanded on entrypoints RPC;1.92954;0.328153;2.22543;388328;566316 +1891/3917;Mumbai: Global constants are expanded on entrypoints RPC;1.84263;0.353042;2.17586;388328;565960 +1892/3917;Nairobi: Global constants are expanded on entrypoints RPC;1.84764;0.353696;2.18048;388080;565236 +1893/3917;Alpha: hash data ... of type ... (good);9.10817;1.80296;10.886;225832;221240 +1894/3917;Mumbai: hash data ... of type ... (good);9.13067;1.80894;10.9103;225956;221420 +1895/3917;Nairobi: hash data ... of type ... (good);9.11685;1.79525;10.8861;225956;221824 +1896/3917;Alpha: hash data ... of type ... (bad);1.14542;0.264132;1.40668;197856;193052 +1897/3917;Mumbai: hash data ... of type ... (bad);1.19466;0.219963;1.41229;197864;193488 +1898/3917;Nairobi: hash data ... of type ... (bad);1.1934;0.227836;1.42006;197988;193364 +1899/3917;Alpha: hash data ... of type ... (ugly);0.799205;0.155627;0.951265;197860;188292 +1900/3917;Mumbai: hash data ... of type ... (ugly);0.814228;0.13234;0.943329;197864;188248 +1901/3917;Nairobi: hash data ... of type ... (ugly);0.835345;0.142712;0.973966;197988;188388 +1902/3917;Alpha: increase paid storage;1.61764;0.282775;1.87723;388328;563916 +1903/3917;Mumbai: increase paid storage;1.62863;0.253162;1.85895;388328;563968 +1904/3917;Nairobi: increase paid storage;1.61509;0.28643;1.87663;388332;563628 +1905/3917;Alpha: Large metadata with default limit;8.94111;0.595271;9.47785;535416;1224300 +1906/3917;Mumbai: Large metadata with default limit;8.78056;0.616122;9.32585;524864;1211576 +1907/3917;Nairobi: Large metadata with default limit;8.82979;0.625679;9.39245;536288;1191012 +1908/3917;Alpha: Large metadata with a small limit;2.26787;0.410979;2.65059;388200;567904 +1909/3917;Mumbai: Large metadata with a small limit;2.27369;0.411767;2.65323;388328;567524 +1910/3917;Nairobi: Large metadata with a small limit;2.2319;0.438194;2.63968;388236;567564 +1911/3917;Alpha: Large metadata without limit;17.8766;0.522456;18.3449;580516;1255384 +1912/3917;Mumbai: Large metadata without limit;17.73;0.624199;18.2868;580508;1258516 +1913/3917;Nairobi: Large metadata without limit;17.7386;0.606031;18.2903;557836;1232028 +1914/3917;Alpha: Check recomputation and pruning of metadata;3.01114;0.484853;3.45103;388200;571712 +1915/3917;Mumbai: Check recomputation and pruning of metadata;2.93427;0.567162;3.45763;374504;558328 +1916/3917;Nairobi: Check recomputation and pruning of metadata;2.92797;0.52328;3.4105;388328;572224 +1917/3917;Alpha: (Light) transfer;2.60996;0.485924;2.18081;387816;938244 +1918/3917;Mumbai: (Light) transfer;2.65879;0.442828;2.16747;387688;939768 +1919/3917;Nairobi: (Light) transfer;2.62819;0.432043;2.1377;387944;939264 +1920/3917;Alpha: (Light) bake;2.77822;0.534024;2.36857;387568;940572 +1921/3917;Mumbai: (Light) bake;2.76989;0.525487;2.35196;387792;940720 +1922/3917;Nairobi: (Light) bake;2.79505;0.489629;2.3387;387808;941348 +1923/3917;Alpha: (Light) No useless RPC call;4.31095;0.820975;4.1464;388200;944204 +1924/3917;Mumbai: (Light) No useless RPC call;4.1598;0.7789;3.96519;387280;946804 +1925/3917;Nairobi: (Light) No useless RPC call;4.2464;0.686749;3.94091;387948;947728 +1926/3917;Alpha: (Light) Wrong proto;2.5598;0.485279;2.12185;386792;938228 +1927/3917;Mumbai: (Light) Wrong proto;2.53683;0.548315;2.15164;387944;938596 +1928/3917;Nairobi: (Light) Wrong proto;2.62924;0.443344;2.14715;387948;939232 +1929/3917;Alpha: (Light) RPC get's location;2.8539;0.563382;2.46845;387944;939892 +1930/3917;Mumbai: (Light) RPC get's location;2.90439;0.515453;2.48561;387048;938400 +1931/3917;Nairobi: (Light) RPC get's location;2.8832;0.485194;2.4467;387248;938776 +1932/3917;Alpha: (Light) Compare RPC get;8.06904;1.57708;5.49972;386792;1038720 +1933/3917;Mumbai: (Light) Compare RPC get;8.15685;1.5535;5.52254;388072;1053108 +1934/3917;Nairobi: (Light) Compare RPC get;8.14397;1.53395;5.49552;388076;1053936 +1935/3917;Alpha: liquidity baking with per-block votes;3.3493;0.442181;9.96019;388072;660328 +1936/3917;Alpha: Contract's body illtyped 1;3.18734;0.562462;2.79726;388076;939680 +1937/3917;Mumbai: Contract's body illtyped 1;3.18723;0.593996;2.82244;388200;941708 +1938/3917;Nairobi: Contract's body illtyped 1;3.17634;0.580276;2.78453;388072;941680 +1939/3917;Alpha: Contract's body illtyped 2;3.18987;0.567316;2.79393;388332;927100 +1940/3917;Mumbai: Contract's body illtyped 2;3.18115;0.602981;2.79977;388076;937212 +1941/3917;Nairobi: Contract's body illtyped 2;3.14968;0.611421;17.6398;387820;937380 +1942/3917;Alpha: Contract's initial storage illtyped;3.33445;0.55514;2.92265;388200;938408 +1943/3917;Mumbai: Contract's initial storage illtyped;3.33264;0.603733;2.97053;387692;938208 +1944/3917;Nairobi: Contract's initial storage illtyped;3.33495;0.60836;2.97018;387812;937976 +1945/3917;Alpha: Smart contract call that should succeeds with the provided gas limit;3.54922;0.593259;3.21738;388324;943852 +1946/3917;Mumbai: Smart contract call that should succeeds with the provided gas limit;3.57702;0.647834;3.26805;387812;930908 +1947/3917;Nairobi: Smart contract call that should succeeds with the provided gas limit;3.60656;0.546453;3.26545;387412;944548 +1948/3917;Alpha: Contract call with not enough gas to deserialize argument;3.49514;0.701926;3.10626;388072;1017756 +1949/3917;Mumbai: Contract call with not enough gas to deserialize argument;3.49066;0.668528;3.08058;387688;1033544 +1950/3917;Nairobi: Contract call with not enough gas to deserialize argument;3.53958;0.665117;3.08331;387688;1032636 +1951/3917;Alpha: Smart contract call that would succeed if we did not account deserialization gas correctly;3.50007;0.670466;3.23142;388204;944024 +1952/3917;Mumbai: Smart contract call that would succeed if we did not account deserialization gas correctly;3.59966;0.558919;3.28706;388324;941828 +1953/3917;Nairobi: Smart contract call that would succeed if we did not account deserialization gas correctly;3.54394;0.634598;3.29974;388204;929872 +1954/3917;Alpha: Batch below block limit with each operation below limit;3.34455;0.628126;7.83314;387052;936756 +1955/3917;Mumbai: Batch below block limit with each operation below limit;3.37832;0.584847;17.82;387432;937816 +1956/3917;Nairobi: Batch below block limit with each operation below limit;3.30595;0.647305;2.99867;387820;937404 +1957/3917;Alpha: Batch below block limit with operations over limit;3.3802;0.601836;2.90084;387296;1030072 +1958/3917;Mumbai: Batch below block limit with operations over limit;3.38036;0.618316;17.755;386792;1029976 +1959/3917;Nairobi: Batch below block limit with operations over limit;3.32828;0.611344;2.87304;388068;1016076 +1960/3917;Alpha: Batch over block limit with operations below limit;3.44016;0.569775;2.90894;387928;1032360 +1961/3917;Mumbai: Batch over block limit with operations below limit;3.31956;0.620592;2.87153;388204;1033788 +1962/3917;Nairobi: Batch over block limit with operations below limit;3.38057;0.585424;2.8911;387196;1029268 +1963/3917;Alpha: Simple revelation with a wrong public key;4.62113;0.873644;4.37259;387176;1036916 +1964/3917;Mumbai: Simple revelation with a wrong public key;4.66162;0.831466;4.38514;387944;1024340 +1965/3917;Nairobi: Simple revelation with a wrong public key;4.54229;0.908267;4.35228;386924;1037712 +1966/3917;Alpha: Simple revelation with something that is not a public key;4.15353;0.688398;3.74973;387792;1020408 +1967/3917;Mumbai: Simple revelation with something that is not a public key;4.06516;0.750921;3.72416;387432;1021800 +1968/3917;Nairobi: Simple revelation with something that is not a public key;4.10979;0.770994;3.77894;386636;1035352 +1969/3917;Alpha: Correct public key revealed twice in a batch;4.30523;0.867795;4.07853;388072;1034772 +1970/3917;Mumbai: Correct public key revealed twice in a batch;4.36602;0.831095;4.11639;387960;1034592 +1971/3917;Nairobi: Correct public key revealed twice in a batch;4.33853;0.829348;4.08519;387932;1036364 +1972/3917;Alpha: Two reveals in a batch. First key is wrong;4.41815;0.773261;4.10169;387436;1035628 +1973/3917;Mumbai: Two reveals in a batch. First key is wrong;4.39498;0.817392;4.11337;388204;1034848 +1974/3917;Nairobi: Two reveals in a batch. First key is wrong;4.37857;0.851206;4.11415;387948;1035836 +1975/3917;Alpha: Two reveals in a batch. Second key is wrong;4.42109;0.845688;4.14512;387988;1032596 +1976/3917;Mumbai: Two reveals in a batch. Second key is wrong;4.36999;0.818243;4.08591;388076;1032656 +1977/3917;Nairobi: Two reveals in a batch. Second key is wrong;4.38585;0.815009;4.10819;387560;1035484 +1978/3917;Alpha: Simple transfer applied;3.19601;0.562011;2.78657;387172;936588 +1979/3917;Mumbai: Simple transfer applied;3.21379;0.55011;2.8035;387276;937160 +1980/3917;Nairobi: Simple transfer applied;3.14197;0.615543;2.79175;386556;936528 +1981/3917;Alpha: Simple transfer not enough balance to pay fees;3.68551;0.594391;3.197;387200;1029672 +1982/3917;Mumbai: Simple transfer not enough balance to pay fees;3.48879;0.743279;3.15421;388204;1034372 +1983/3917;Nairobi: Simple transfer not enough balance to pay fees;3.69086;0.531863;3.15532;386788;1029364 +1984/3917;Alpha: Simple transfer not enough balance to make transfer;3.59947;0.633353;3.26258;387432;940008 +1985/3917;Mumbai: Simple transfer not enough balance to make transfer;3.5785;0.62806;3.25103;387688;940264 +1986/3917;Nairobi: Simple transfer not enough balance to make transfer;3.52548;0.700012;3.24993;386664;939368 +1987/3917;Alpha: Simple transfer counter in the past;3.58704;0.641395;3.15017;387680;1029560 +1988/3917;Mumbai: Simple transfer counter in the past;3.57932;0.667755;3.16727;386916;1029896 +1989/3917;Nairobi: Simple transfer counter in the past;3.61168;0.6489;23.0196;387176;1028164 +1990/3917;Alpha: Simple transfer counter in the future;3.50283;0.727404;3.1769;387560;1027016 +1991/3917;Mumbai: Simple transfer counter in the future;3.54415;0.687119;3.15895;387668;1029296 +1992/3917;Nairobi: Simple transfer counter in the future;3.57313;0.639616;3.14341;387412;1029396 +1993/3917;Alpha: Simple transfer with wrong signature;3.61789;0.628185;8.0254;388200;1031948 +1994/3917;Mumbai: Simple transfer with wrong signature;3.57335;0.64793;3.14546;387556;1015672 +1995/3917;Nairobi: Simple transfer with wrong signature;3.59278;0.692753;18.0393;387688;1029788 +1996/3917;Alpha: Simple transfer with not enough gas;3.1692;0.592647;2.69679;387692;1028904 +1997/3917;Mumbai: Simple transfer with not enough gas;3.1135;0.611139;2.66562;387692;1028000 +1998/3917;Nairobi: Simple transfer with not enough gas;3.08681;0.629888;2.65924;387308;1014684 +1999/3917;Alpha: Simple transfer with not enough fees to cover gas;3.1699;0.612531;2.81583;388200;941932 +2000/3917;Mumbai: Simple transfer with not enough fees to cover gas;3.14996;0.613749;2.81815;388068;927248 +2001/3917;Nairobi: Simple transfer with not enough fees to cover gas;3.17186;0.609322;2.82858;388324;941624 +2002/3917;Alpha: Test simple transfer with low balance to pay allocation (1);5.44645;1.03149;5.47756;387816;955576 +2003/3917;Mumbai: Test simple transfer with low balance to pay allocation (1);5.51786;1.009;10.3516;387268;955532 +2004/3917;Nairobi: Test simple transfer with low balance to pay allocation (1);5.46078;1.03822;5.49603;387560;955092 +2005/3917;Alpha: Test simple transfer with low balance to pay allocation (2);5.58934;0.932615;20.3641;386812;955212 +2006/3917;Mumbai: Test simple transfer with low balance to pay allocation (2);5.46672;1.03636;5.49152;387308;953932 +2007/3917;Nairobi: Test simple transfer with low balance to pay allocation (2);5.59362;0.931737;5.53511;386924;954988 +2008/3917;Alpha: Test simple transfer of the whole balance;4.97706;0.968815;4.96063;388204;949424 +2009/3917;Mumbai: Test simple transfer of the whole balance;5.03993;0.909346;4.95789;388328;934692 +2010/3917;Nairobi: Test simple transfer of the whole balance;4.93485;0.972867;4.91889;388072;934248 +2011/3917;Alpha: Test succesive injections with same manager;5.53535;1.00955;5.29353;387660;1042708 +2012/3917;Mumbai: Test succesive injections with same manager;5.47231;1.01788;5.26496;387688;1047456 +2013/3917;Nairobi: Test succesive injections with same manager;5.49374;0.967181;5.25141;388200;1046604 +2014/3917;Alpha: Test batch with wrong counters (+1, +2, +2);3.18656;0.598745;2.72472;387812;1028420 +2015/3917;Mumbai: Test batch with wrong counters (+1, +2, +2);3.23362;0.594355;2.75354;388200;1032360 +2016/3917;Nairobi: Test batch with wrong counters (+1, +2, +2);3.20352;0.602534;2.71792;386536;1028512 +2017/3917;Alpha: Test batch with wrong counters (+1, +2, +4);3.24449;0.583996;2.75634;387684;1026708 +2018/3917;Mumbai: Test batch with wrong counters (+1, +2, +4);3.21988;0.572453;2.72362;386516;1028488 +2019/3917;Nairobi: Test batch with wrong counters (+1, +2, +4);3.21739;0.60586;47.5796;387304;1028640 +2020/3917;Alpha: Successful smart contract call;3.65457;0.62874;3.33038;388236;938528 +2021/3917;Mumbai: Successful smart contract call;3.58964;0.679467;3.31652;387668;939080 +2022/3917;Nairobi: Successful smart contract call;3.59597;0.670181;3.30113;387552;940264 +2023/3917;Alpha: Smart contract call with illtyped argument;3.63043;0.604899;3.30681;387692;939700 +2024/3917;Mumbai: Smart contract call with illtyped argument;3.5973;0.676207;3.31635;387168;940928 +2025/3917;Nairobi: Smart contract call with illtyped argument;3.61134;0.629928;3.29567;388216;943840 +2026/3917;Alpha: Smart contract call that throws a failwith;3.58953;0.703711;3.32511;387940;939484 +2027/3917;Mumbai: Smart contract call that throws a failwith;3.64841;0.657875;3.35844;388328;944624 +2028/3917;Nairobi: Smart contract call that throws a failwith;3.62972;0.675618;3.36327;388328;944784 +2029/3917;Alpha: Smart contract call that loops/fails with 'not enough gas' at exec;3.74224;0.627115;3.38669;388328;939072 +2030/3917;Mumbai: Smart contract call that loops/fails with 'not enough gas' at exec;3.62775;0.716326;3.35385;387696;940752 +2031/3917;Nairobi: Smart contract call that loops/fails with 'not enough gas' at exec;3.61857;0.697942;3.34582;387576;940280 +2032/3917;Alpha: (Mockup) RPC list;31.7497;0.140308;31.886;386736;377824 +2033/3917;Mumbai: (Mockup) RPC list;43.128;0.095892;43.2198;400040;390900 +2034/3917;Nairobi: (Mockup) RPC list;24.2558;0.112311;24.3646;344420;335568 +2035/3917;Alpha: (Mockup) Same transfer twice (asynchronous);0.686142;0.1159;0.799251;198376;190448 +2036/3917;Mumbai: (Mockup) Same transfer twice (asynchronous);0.681308;0.119715;0.798973;198248;190508 +2037/3917;Nairobi: (Mockup) Same transfer twice (asynchronous);0.693718;0.104453;0.796623;198628;190000 +2038/3917;Alpha: (Mockup) Transfer same participants (asynchronous);0.699901;0.108087;0.805309;198884;188872 +2039/3917;Mumbai: (Mockup) Transfer same participants (asynchronous);0.698017;0.125169;0.820141;198628;188300 +2040/3917;Nairobi: (Mockup) Transfer same participants (asynchronous);0.697933;0.127834;0.821715;198884;188748 +2041/3917;Alpha: (Mockup) Transfer;1.09584;0.200589;1.29293;198756;190212 +2042/3917;Mumbai: (Mockup) Transfer;1.0963;0.181233;1.2739;198500;190204 +2043/3917;Nairobi: (Mockup) Transfer;1.12;0.164339;1.28097;198756;190392 +2044/3917;Alpha: (Mockup) Transfer (empty, asynchronous);0.565262;0.091534;0.653766;199144;188444 +2045/3917;Mumbai: (Mockup) Transfer (empty, asynchronous);0.568929;0.083157;0.649263;199008;188000 +2046/3917;Nairobi: (Mockup) Transfer (empty, asynchronous);0.564007;0.084051;0.644786;198884;188744 +2047/3917;Alpha: (Mockup) Transfer (asynchronous);0.661043;0.164424;0.821611;198884;189060 +2048/3917;Mumbai: (Mockup) Transfer (asynchronous);0.671407;0.144457;0.814812;199008;190996 +2049/3917;Nairobi: (Mockup) Transfer (asynchronous);0.674675;0.132715;0.805713;199140;190828 +2050/3917;Alpha: (Mockup) Multi transfer/multi baking (asynchronous);6.89091;1.51152;8.38895;223648;220452 +2051/3917;Mumbai: (Mockup) Multi transfer/multi baking (asynchronous);6.87925;1.53878;8.40511;223524;220392 +2052/3917;Nairobi: (Mockup) Multi transfer/multi baking (asynchronous);6.91777;1.43831;8.34261;225828;222952 +2053/3917;Alpha: (Mockup) RPC header/shell;0.543979;0.09593;0.639222;197988;187924 +2054/3917;Mumbai: (Mockup) RPC header/shell;0.559702;0.076056;0.63496;197984;188312 +2055/3917;Nairobi: (Mockup) RPC header/shell;0.546748;0.087542;0.633472;197988;187872 +2056/3917;Alpha: (Mockup) origination fees from unrevealed;0.862548;0.117067;0.976837;198628;189676 +2057/3917;Mumbai: (Mockup) origination fees from unrevealed;0.858414;0.108351;0.965461;198628;191588 +2058/3917;Nairobi: (Mockup) origination fees from unrevealed;0.803323;0.147509;0.949584;198752;191352 +2059/3917;Alpha: (Mockup) multiple transfer simulation;0.603482;0.091985;0.691442;205028;196484 +2060/3917;Mumbai: (Mockup) multiple transfer simulation;0.582382;0.116608;0.689537;205028;194800 +2061/3917;Nairobi: (Mockup) multiple transfer simulation;0.594562;0.087414;0.678139;205028;196356 +2062/3917;Alpha: (Mockup) Load storage and input from file.;0.563587;0.07993;0.643007;197864;188340 +2063/3917;Mumbai: (Mockup) Load storage and input from file.;0.518203;0.111247;0.629107;197860;187628 +2064/3917;Nairobi: (Mockup) Load storage and input from file.;0.547929;0.092408;0.637611;197992;185976 +2065/3917;Alpha: (Mockup) Create mockup in existing base dir;0.438987;0.039991;0.47887;197608;186604 +2066/3917;Mumbai: (Mockup) Create mockup in existing base dir;0.420002;0.05576;0.475701;197608;186784 +2067/3917;Nairobi: (Mockup) Create mockup in existing base dir;0.419507;0.055756;0.475304;197984;187276 +2068/3917;Alpha: (Mockup) Retrieve addresses;0.522999;0.107887;0.63038;197864;187748 +2069/3917;Mumbai: (Mockup) Retrieve addresses;0.561409;0.083264;0.643788;197860;187616 +2070/3917;Nairobi: (Mockup) Retrieve addresses;0.56304;0.076093;0.636271;198120;185728 +2071/3917;Alpha: (Mockup) Create mockup when already initialized.;0.536904;0.103999;0.640256;197984;187696 +2072/3917;Mumbai: (Mockup) Create mockup when already initialized.;0.544536;0.095974;0.639901;197860;187904 +2073/3917;Nairobi: (Mockup) Create mockup when already initialized.;0.551999;0.087845;0.639561;197984;187652 +2074/3917;Alpha: (Mockup) Create mockup with mockup-custom protocol constants.;1.55707;0.380947;1.93512;200480;197840 +2075/3917;Mumbai: (Mockup) Create mockup with mockup-custom protocol constants.;1.68529;0.279073;1.96142;199068;196464 +2076/3917;Nairobi: (Mockup) Create mockup with mockup-custom protocol constants.;1.65074;0.309192;1.95709;199064;196928 +2077/3917;Alpha: (Mockup) Create mockup with mockup-custom bootstrap accounts.;0.570418;0.075868;0.645959;198244;186280 +2078/3917;Mumbai: (Mockup) Create mockup with mockup-custom bootstrap accounts.;0.549094;0.100384;0.649121;198368;186296 +2079/3917;Nairobi: (Mockup) Create mockup with mockup-custom bootstrap accounts.;0.560604;0.092184;0.652459;198628;186500 +2080/3917;Alpha: (Mockup) Transfer bad base dir.;0.590973;0.067543;0.657823;198756;188460 +2081/3917;Mumbai: (Mockup) Transfer bad base dir.;0.581528;0.082268;0.66327;198756;188856 +2082/3917;Nairobi: (Mockup) Transfer bad base dir.;0.582589;0.079744;0.66161;198756;189052 +2083/3917;Alpha: (Mockup) Show config.;0.543249;0.108439;0.645574;197988;186324 +2084/3917;Mumbai: (Mockup) Show config.;0.562698;0.095023;0.654575;197864;186720 +2085/3917;Nairobi: (Mockup) Show config.;0.546388;0.100201;0.640128;198116;186424 +2086/3917;Alpha: (Mockup) Show config failure.;0.586637;0.078456;0.662211;197728;187208 +2087/3917;Mumbai: (Mockup) Show config failure.;0.57657;0.08045;0.654099;197864;187436 +2088/3917;Nairobi: (Mockup) Show config failure.;0.565394;0.083157;0.645879;197860;187276 +2089/3917;Alpha: (Mockup) Mockup config initialization.;0.537381;0.10381;0.638309;197992;186372 +2090/3917;Mumbai: (Mockup) Mockup config initialization.;0.578378;0.067893;0.643324;197984;186224 +2091/3917;Nairobi: (Mockup) Mockup config initialization.;0.535471;0.10769;0.642664;198116;188540 +2092/3917;Alpha: (Mockup) Mockup config initialization failure.;0.524669;0.114859;0.638705;197860;189280 +2093/3917;Mumbai: (Mockup) Mockup config initialization failure.;0.582476;0.072474;0.652441;197860;187712 +2094/3917;Nairobi: (Mockup) Mockup config initialization failure.;0.545312;0.104436;0.649151;197992;189108 +2095/3917;Alpha: (Mockup) Mockup transfer RPC.;1.06043;0.195226;1.25445;198752;192044 +2096/3917;Mumbai: (Mockup) Mockup transfer RPC.;1.04962;0.208622;1.25675;198496;191780 +2097/3917;Nairobi: (Mockup) Mockup transfer RPC.;1.09068;0.171784;1.26114;198760;192292 +2098/3917;Alpha: (Mockup) Mockup mixed protocols.;4.19285;0.857296;5.04139;214944;210768 +2099/3917;Mumbai: (Mockup) Mockup mixed protocols.;1.53793;0.350936;1.88583;200612;195948 +2100/3917;Nairobi: (Mockup) Mockup mixed protocols.;4.10086;0.92776;5.02016;215200;210848 +2101/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [None,None,show,show];0.808739;0.149131;0.955925;198624;190280 +2102/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [None,None,show,show];0.813013;0.144543;0.955369;198504;190952 +2103/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [None,None,show,show];0.80649;0.155592;0.959654;198884;190360 +2104/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [None,None,show,init];0.84871;0.116548;0.963604;198628;190380 +2105/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [None,None,show,init];0.837851;0.143525;0.975855;198632;188876 +2106/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [None,None,show,init];0.760831;0.204199;0.963193;198884;190744 +2107/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [None,None,init,show];0.797768;0.156253;0.952684;198496;190340 +2108/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [None,None,init,show];0.804982;0.147824;0.951321;198500;190604 +2109/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [None,None,init,show];0.844439;0.115691;0.957886;198760;190680 +2110/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [None,None,init,init];0.824925;0.136722;0.96092;198624;190368 +2111/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [None,None,init,init];0.815957;0.135436;0.950616;198500;190472 +2112/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [None,None,init,init];0.838878;0.127931;0.965706;198756;190872 +2113/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [None,protocol_constants,show,show];1.28896;0.177632;1.44644;198632;192096 +2114/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [None,protocol_constants,show,show];1.25327;0.216345;1.45735;198632;192404 +2115/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [None,protocol_constants,show,show];1.24877;0.219844;1.46077;198760;192448 +2116/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [None,protocol_constants,show,init];1.20021;0.259707;1.44451;198628;192268 +2117/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [None,protocol_constants,show,init];1.21199;0.248548;1.4537;198632;192532 +2118/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [None,protocol_constants,show,init];1.21484;0.239349;1.4468;198880;192296 +2119/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [None,protocol_constants,init,show];1.25906;0.211741;1.45617;198628;192992 +2120/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [None,protocol_constants,init,show];1.21183;0.255783;1.45683;198756;192292 +2121/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [None,protocol_constants,init,show];1.24524;0.219559;1.45081;198760;192096 +2122/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [None,protocol_constants,init,init];1.20615;0.245416;1.44205;198632;192548 +2123/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [None,protocol_constants,init,init];1.23344;0.236574;1.45993;198628;192076 +2124/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [None,protocol_constants,init,init];1.23517;0.224181;1.44861;199012;191992 +2125/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [test_accounts,None,show,show];0.813777;0.156835;0.963164;198372;188540 +2126/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [test_accounts,None,show,show];0.819169;0.148156;0.959445;198376;188808 +2127/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [test_accounts,None,show,show];0.801507;0.180129;0.973832;198628;189244 +2128/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [test_accounts,None,show,init];0.831639;0.142268;0.96921;198504;188624 +2129/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [test_accounts,None,show,init];0.840342;0.136561;0.972027;198372;188820 +2130/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [test_accounts,None,show,init];0.809024;0.155925;0.960403;198628;188852 +2131/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [test_accounts,None,init,show];0.802897;0.178227;0.979662;198504;188652 +2132/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [test_accounts,None,init,show];0.794301;0.17134;0.964828;198500;188724 +2133/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [test_accounts,None,init,show];0.820406;0.151115;0.970251;198628;188736 +2134/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [test_accounts,None,init,init];0.798302;0.173064;0.97057;198500;188528 +2135/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [test_accounts,None,init,init];0.800213;0.16539;0.964373;198372;188780 +2136/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [test_accounts,None,init,init];0.81219;0.153617;0.965095;198628;189128 +2137/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [test_accounts,protocol_constants,show,show];1.24018;0.228311;1.45276;198520;192272 +2138/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [test_accounts,protocol_constants,show,show];1.25207;0.192438;1.43123;198504;192192 +2139/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [test_accounts,protocol_constants,show,show];1.27978;0.196541;1.46403;198760;192180 +2140/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [test_accounts,protocol_constants,show,init];1.22047;0.24529;1.44955;198632;192316 +2141/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [test_accounts,protocol_constants,show,init];1.2693;0.188739;1.44834;198504;191936 +2142/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [test_accounts,protocol_constants,show,init];1.23153;0.212647;1.43773;198760;192208 +2143/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [test_accounts,protocol_constants,init,show];1.24506;0.231577;1.46204;198628;192568 +2144/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [test_accounts,protocol_constants,init,show];1.19511;0.243662;1.43181;198632;192400 +2145/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [test_accounts,protocol_constants,init,show];1.23898;0.233162;1.46539;198760;192564 +2146/3917;Alpha: (Mockup) Create mockup config show / init roundtrip [test_accounts,protocol_constants,init,init];1.20331;0.247106;1.4415;198624;191868 +2147/3917;Mumbai: (Mockup) Create mockup config show / init roundtrip [test_accounts,protocol_constants,init,init];1.23621;0.216656;1.44605;198632;192332 +2148/3917;Nairobi: (Mockup) Create mockup config show / init roundtrip [test_accounts,protocol_constants,init,init];1.23998;0.216732;1.44517;198756;192284 +2149/3917;Alpha: (Mockup) Register Global Constant success;0.549532;0.0879;0.636572;198756;189908 +2150/3917;Mumbai: (Mockup) Register Global Constant success;0.541295;0.112195;0.650797;198500;187424 +2151/3917;Nairobi: (Mockup) Register Global Constant success;0.544167;0.104035;0.647384;198756;189348 +2152/3917;Alpha: (Mockup) Register Global Constant failure;0.52467;0.115184;0.638532;197732;188120 +2153/3917;Mumbai: (Mockup) Register Global Constant failure;0.552603;0.087725;0.639722;197860;187660 +2154/3917;Nairobi: (Mockup) Register Global Constant failure;0.584342;0.071965;0.655816;197988;188048 +2155/3917;Alpha: (Mockup) Calling a contract with a global constant success;0.684625;0.124065;0.807079;198760;189060 +2156/3917;Mumbai: (Mockup) Calling a contract with a global constant success;0.702416;0.099702;0.800407;198500;188756 +2157/3917;Nairobi: (Mockup) Calling a contract with a global constant success;0.710772;0.084068;0.794197;198752;189176 +2158/3917;Alpha: (Mockup) Calling a contract with a global constant failure;0.566853;0.075648;0.641695;197988;188392 +2159/3917;Mumbai: (Mockup) Calling a contract with a global constant failure;0.542728;0.09529;0.637411;197860;188012 +2160/3917;Nairobi: (Mockup) Calling a contract with a global constant failure;0.557332;0.08023;0.637405;197992;188340 +2161/3917;Alpha: (Mockup) Originate Contract with Global Constant success;0.690342;0.115713;0.804623;198756;190864 +2162/3917;Mumbai: (Mockup) Originate Contract with Global Constant success;0.719555;0.091944;0.810085;198500;190636 +2163/3917;Nairobi: (Mockup) Originate Contract with Global Constant success;0.686641;0.11609;0.801446;198760;190596 +2164/3917;Alpha: (Mockup) Typechecking and normalization work with constants;0.92477;0.19226;1.11513;198884;191708 +2165/3917;Mumbai: (Mockup) Typechecking and normalization work with constants;0.941355;0.167145;1.10675;198504;190728 +2166/3917;Nairobi: (Mockup) Typechecking and normalization work with constants;0.926835;0.18071;1.10623;198888;191788 +2167/3917;Alpha: Test monitor_operations RPC;1.68613;0.374315;2.02851;388332;566444 +2168/3917;Mumbai: Test monitor_operations RPC;1.72965;0.350142;2.0395;388328;568752 +2169/3917;Nairobi: Test monitor_operations RPC;1.72374;0.330784;2.02215;388328;566828 +2170/3917;Alpha: Test Empty;0.549555;0.083706;0.632954;197856;187884 +2171/3917;Mumbai: Test Empty;0.568668;0.080063;0.647908;197864;187804 +2172/3917;Nairobi: Test Empty;0.541321;0.096276;0.637283;197988;187828 +2173/3917;Alpha: Test transfer JSON to entrypoint with args;1.97429;0.38876;2.35958;198884;194476 +2174/3917;Mumbai: Test transfer JSON to entrypoint with args;2.03473;0.36336;2.39321;202264;198232 +2175/3917;Nairobi: Test transfer JSON to entrypoint with args;1.99289;0.383779;2.36828;202388;197672 +2176/3917;Alpha: Test multiple transfers;2.3918;0.457819;2.84522;204180;200012 +2177/3917;Mumbai: Test multiple transfers;2.37081;0.46428;2.83007;204056;199780 +2178/3917;Nairobi: Test multiple transfers;2.40439;0.45727;2.85677;203932;200176 +2179/3917;Alpha: Unsupported multisig;0.678413;0.119693;0.795983;198628;189456 +2180/3917;Mumbai: Unsupported multisig;0.693812;0.104211;0.796957;198628;189088 +2181/3917;Nairobi: Unsupported multisig;0.660499;0.134787;0.794056;198628;189224 +2182/3917;Alpha: Multisig [by_address:true, generic, sig_algs:None,secp256k1,ed25519];15.0551;3.13699;10.8763;239784;419836 +2183/3917;Mumbai: Multisig [by_address:true, generic, sig_algs:None,secp256k1,ed25519];15.1388;3.09892;10.9171;239552;419656 +2184/3917;Nairobi: Multisig [by_address:true, generic, sig_algs:None,secp256k1,ed25519];15.172;3.00949;10.8893;239664;420280 +2185/3917;Alpha: Multisig [by_address:true, legacy, sig_algs:None,secp256k1,ed25519];11.3503;2.21219;8.56014;237136;417116 +2186/3917;Mumbai: Multisig [by_address:true, legacy, sig_algs:None,secp256k1,ed25519];11.3104;2.29642;8.57532;233068;412716 +2187/3917;Nairobi: Multisig [by_address:true, legacy, sig_algs:None,secp256k1,ed25519];11.3155;2.26865;8.575;233012;412936 +2188/3917;Alpha: Multisig [by_address:false, generic, sig_algs:None,secp256k1,ed25519];14.9732;3.23739;10.8912;239548;419784 +2189/3917;Mumbai: Multisig [by_address:false, generic, sig_algs:None,secp256k1,ed25519];15.0225;3.15931;10.9065;239536;419444 +2190/3917;Nairobi: Multisig [by_address:false, generic, sig_algs:None,secp256k1,ed25519];15.2612;2.97037;10.9205;239664;420056 +2191/3917;Alpha: Multisig [by_address:false, legacy, sig_algs:None,secp256k1,ed25519];11.2152;2.3647;8.56045;236828;417008 +2192/3917;Mumbai: Multisig [by_address:false, legacy, sig_algs:None,secp256k1,ed25519];11.3413;2.26321;8.58813;233068;413316 +2193/3917;Nairobi: Multisig [by_address:false, legacy, sig_algs:None,secp256k1,ed25519];11.2242;2.34165;8.55086;233080;412876 +2194/3917;Alpha: Multisig [by_address:true, generic, sig_algs:p256,ed25519,None];15.1403;3.08547;10.9131;239660;419844 +2195/3917;Mumbai: Multisig [by_address:true, generic, sig_algs:p256,ed25519,None];15.2697;2.94725;10.9119;239740;419920 +2196/3917;Nairobi: Multisig [by_address:true, generic, sig_algs:p256,ed25519,None];15.1802;2.98717;10.8945;239736;419732 +2197/3917;Alpha: Multisig [by_address:true, legacy, sig_algs:p256,ed25519,None];11.3723;2.21709;8.55172;237032;417164 +2198/3917;Mumbai: Multisig [by_address:true, legacy, sig_algs:p256,ed25519,None];11.5823;2.09933;8.64571;233120;413160 +2199/3917;Nairobi: Multisig [by_address:true, legacy, sig_algs:p256,ed25519,None];11.3469;2.2704;8.574;232904;412928 +2200/3917;Alpha: Multisig [by_address:false, generic, sig_algs:p256,ed25519,None];15.0523;3.10589;10.8881;239616;419740 +2201/3917;Mumbai: Multisig [by_address:false, generic, sig_algs:p256,ed25519,None];15.2261;3.0105;10.9005;239724;419516 +2202/3917;Nairobi: Multisig [by_address:false, generic, sig_algs:p256,ed25519,None];15.1034;3.08;10.8929;239636;420152 +2203/3917;Alpha: Multisig [by_address:false, legacy, sig_algs:p256,ed25519,None];11.3498;2.24579;8.57764;237140;416648 +2204/3917;Mumbai: Multisig [by_address:false, legacy, sig_algs:p256,ed25519,None];11.3423;2.28783;8.5978;232964;413276 +2205/3917;Nairobi: Multisig [by_address:false, legacy, sig_algs:p256,ed25519,None];11.3534;2.30935;8.61495;232964;412676 +2206/3917;Alpha: Multisig [by_address:true, generic, sig_algs:None,bls,None];15.2988;2.93248;10.9334;239592;419764 +2207/3917;Mumbai: Multisig [by_address:true, generic, sig_algs:None,bls,None];15.2599;2.95339;10.9239;239788;419720 +2208/3917;Nairobi: Multisig [by_address:true, generic, sig_algs:None,bls,None];15.0846;3.06929;10.8629;239644;419980 +2209/3917;Alpha: Multisig [by_address:true, legacy, sig_algs:None,bls,None];11.3265;2.29778;8.59382;237072;417316 +2210/3917;Mumbai: Multisig [by_address:true, legacy, sig_algs:None,bls,None];11.3359;2.27645;8.57648;237020;416268 +2211/3917;Nairobi: Multisig [by_address:true, legacy, sig_algs:None,bls,None];11.4494;2.23672;8.63789;233168;413044 +2212/3917;Alpha: Multisig [by_address:false, generic, sig_algs:None,bls,None];15.2345;2.98619;10.899;239744;419472 +2213/3917;Mumbai: Multisig [by_address:false, generic, sig_algs:None,bls,None];15.2363;3.02115;10.9282;239592;419716 +2214/3917;Nairobi: Multisig [by_address:false, generic, sig_algs:None,bls,None];15.2098;2.97546;10.8947;239596;419364 +2215/3917;Alpha: Multisig [by_address:false, legacy, sig_algs:None,bls,None];11.4709;2.12837;8.58166;237012;417172 +2216/3917;Mumbai: Multisig [by_address:false, legacy, sig_algs:None,bls,None];11.3491;2.24648;8.59133;236924;416644 +2217/3917;Nairobi: Multisig [by_address:false, legacy, sig_algs:None,bls,None];11.3063;2.3318;8.61159;232768;413412 +2218/3917;Alpha: CORS preflight;1.14327;0.232537;1.37958;388204;559804 +2219/3917;Mumbai: CORS preflight;1.18204;0.172199;1.35808;388200;559944 +2220/3917;Nairobi: CORS preflight;1.15018;0.195095;1.349;388072;559748 +2221/3917;Alpha: CORS request;1.19809;0.164174;1.36594;387948;559720 +2222/3917;Mumbai: CORS request;1.21112;0.174279;1.38902;388072;559372 +2223/3917;Nairobi: CORS request;1.17958;0.20528;1.3881;388204;559172 +2224/3917;Alpha: event level debug;2.01779;0.335844;2.32414;377104;554376 +2225/3917;Mumbai: event level debug;1.99253;0.388361;2.34023;377208;557184 +2226/3917;Nairobi: event level debug;2.01525;0.368348;2.35669;376972;554468 +2227/3917;Alpha: event levels;3.83643;0.69323;2.57127;386660;1369384 +2228/3917;Mumbai: event levels;3.85469;0.63821;2.54569;388092;1368216 +2229/3917;Nairobi: event levels;3.7962;0.720198;2.55513;376308;1353740 +2230/3917;Alpha: Nonce seed revelation;8.15055;1.33633;17.3127;372300;2419032 +2231/3917;Mumbai: Nonce seed revelation;8.24695;1.34487;16.8892;372364;2409596 +2232/3917;Nairobi: Nonce seed revelation;8.00544;1.40719;16.8918;372592;2407552 +2233/3917;Alpha: Test normalize in unparsing mode;0.972453;0.147769;1.1185;197736;190288 +2234/3917;Mumbai: Test normalize in unparsing mode;0.948793;0.164096;1.11172;197992;190004 +2235/3917;Nairobi: Test normalize in unparsing mode;0.93228;0.184394;1.11545;198116;190936 +2236/3917;Alpha: Test normalize with legacy flag;0.686913;0.112505;0.79888;197864;189476 +2237/3917;Mumbai: Test normalize with legacy flag;0.65747;0.144418;0.800975;197992;189168 +2238/3917;Nairobi: Test normalize with legacy flag;0.72011;0.084345;0.803857;198240;189688 +2239/3917;Alpha: Test Michelson stack normalization;7.10154;1.5269;8.61373;222628;218464 +2240/3917;Nairobi: Test Michelson stack normalization;7.15413;1.52906;8.66267;222884;218076 +2241/3917;Alpha: Test normalize script;0.948409;0.171969;1.11912;197860;190928 +2242/3917;Mumbai: Test normalize script;0.954671;0.16405;1.11665;197864;191120 +2243/3917;Nairobi: Test normalize script;0.944838;0.176085;1.11849;197984;191176 +2244/3917;Alpha: Test normalize type;1.46791;0.263767;1.73038;197864;192104 +2245/3917;Mumbai: Test normalize type;1.44486;0.279212;1.72262;197860;192232 +2246/3917;Nairobi: Test normalize type;1.45145;0.294227;1.74377;197992;192028 +2247/3917;Alpha: Check 1M restriction with and without precheck in the plugin;4.18214;0.739797;4.88331;388200;943712 +2248/3917;Mumbai: Check 1M restriction with and without precheck in the plugin;4.06016;0.83699;4.85569;388200;940740 +2249/3917;Nairobi: Check 1M restriction with and without precheck in the plugin;4.12871;0.789539;4.87569;388072;927096 +2250/3917;Alpha: operation size munch and bytes contract;7.50101;0.929371;8.75583;389484;645176 +2251/3917;Mumbai: operation size munch and bytes contract;7.51159;0.992814;8.77307;389736;641860 +2252/3917;Nairobi: operation size munch and bytes contract;7.41576;1.01035;8.83526;389608;643868 +2253/3917;Alpha: Order in top level of the script does not matter.;1.1801;0.220861;1.39982;197856;193752 +2254/3917;Mumbai: Order in top level of the script does not matter.;1.18998;0.212758;1.4017;197728;192800 +2255/3917;Nairobi: Order in top level of the script does not matter.;1.20173;0.212789;1.41349;197992;193264 +2256/3917;Alpha: check peer option;1.97073;0.313041;2.24035;388072;825940 +2257/3917;Mumbai: check peer option;1.96053;0.337596;2.2572;388200;839108 +2258/3917;Nairobi: check peer option;1.98201;0.344457;2.28325;388204;838044 +2259/3917;Alpha: check --connection=1 option;1.91851;0.397081;2.27823;388072;839060 +2260/3917;Mumbai: check --connection=1 option;2.01596;0.298004;2.26577;388200;839900 +2261/3917;Nairobi: check --connection=1 option;1.96056;0.350654;2.27301;388204;839292 +2262/3917;Alpha: precheck block;5.68679;0.981305;2.83291;388140;2025948 +2263/3917;Mumbai: precheck block;5.6854;0.971043;2.83498;387932;2039720 +2264/3917;Nairobi: precheck block;5.70364;0.943331;2.81131;387496;2028964 +2265/3917;Alpha: forge fake block;8.09896;1.35425;5.28317;388192;2420156 +2266/3917;Mumbai: forge fake block;8.21967;1.32879;5.42083;388204;2420364 +2267/3917;Nairobi: forge fake block;8.00522;1.41974;10.3528;388204;2420664 +2268/3917;Alpha: forge block with wrong payload;10.4095;1.8712;8.32916;388204;2451200 +2269/3917;Mumbai: forge block with wrong payload;10.5086;1.80998;8.43553;388204;2452836 +2270/3917;Nairobi: forge block with wrong payload;10.4476;1.88554;8.31755;388200;2466716 +2271/3917;Alpha: Flush mempool;6.62949;1.23343;7.79733;388324;585688 +2272/3917;Mumbai: Flush mempool;6.63523;1.25598;7.80705;374504;578392 +2273/3917;Nairobi: Flush mempool;6.57098;1.29085;7.79407;388076;588132 +2274/3917;Alpha: Ensure that branch_refused operation is not recycled when we increment our head;5.80022;1.09862;5.80437;387160;1021768 +2275/3917;Mumbai: Ensure that branch_refused operation is not recycled when we increment our head;5.81034;1.0692;5.82318;387820;1021104 +2276/3917;Nairobi: Ensure that branch_refused operation is not recycled when we increment our head;5.90495;1.07313;5.83412;388072;1005396 +2277/3917;Alpha: ban_operation_branch_delayed_reevaluated;2.66856;0.563774;3.22774;388204;565960 +2278/3917;Mumbai: ban_operation_branch_delayed_reevaluated;2.66847;0.547318;3.21153;388200;565684 +2279/3917;Nairobi: ban_operation_branch_delayed_reevaluated;2.70333;0.495348;3.19383;388196;565912 +2280/3917;Alpha: Manager_restriction_injection;3.95355;0.780142;4.73333;388200;945892 +2281/3917;Mumbai: Manager_restriction_injection;3.90767;0.780267;4.68998;388072;946016 +2282/3917;Nairobi: Manager_restriction_injection;3.99916;0.704089;4.69731;388076;942180 +2283/3917;Alpha: Manager_restriction_propagation;5.35887;0.987518;5.90438;388204;1393072 +2284/3917;Mumbai: Manager_restriction_propagation;5.43069;0.964623;5.94799;388072;1403548 +2285/3917;Nairobi: Manager_restriction_propagation;5.36813;0.955239;5.90041;388072;1407524 +2286/3917;Alpha: Manager_restriction_flush;3.11895;0.592508;3.69333;388196;571700 +2287/3917;Mumbai: Manager_restriction_flush;3.10607;0.617688;3.70727;388068;572180 +2288/3917;Nairobi: Manager_restriction_flush;3.19836;0.528591;3.70914;388068;571420 +2289/3917;Alpha: Manager_restriction_ban;2.4369;0.480428;2.91488;388196;564308 +2290/3917;Mumbai: Manager_restriction_ban;2.47092;0.445833;2.91484;388072;564676 +2291/3917;Nairobi: Manager_restriction_ban;2.43061;0.497323;2.92391;388196;563908 +2292/3917;Alpha: Manager_restriction_flush_on_ban;3.096;0.589315;3.67333;388200;569772 +2293/3917;Mumbai: Manager_restriction_flush_on_ban;3.14663;0.56627;3.70042;388076;569144 +2294/3917;Nairobi: Manager_restriction_flush_on_ban;3.15707;0.580265;3.72464;388196;569512 +2295/3917;Alpha: Manager_restriction_inject_isolated_node;4.3095;0.78454;5.0832;388076;578240 +2296/3917;Mumbai: Manager_restriction_inject_isolated_node;4.24807;0.812964;5.04987;388204;578792 +2297/3917;Nairobi: Manager_restriction_inject_isolated_node;4.20215;0.900493;5.0831;388072;575824 +2298/3917;Alpha: Max refused operations branch_delayed;4.26292;0.857543;5.08752;388072;580196 +2299/3917;Mumbai: Max refused operations branch_delayed;4.37802;0.769804;5.11702;388200;582544 +2300/3917;Nairobi: Max refused operations branch_delayed;4.35587;0.789057;5.11746;388072;582768 +2301/3917;Alpha: Max refused operations branch_refused;4.18457;0.929856;5.0872;388068;583044 +2302/3917;Mumbai: Max refused operations branch_refused;4.28374;0.848942;5.10057;388200;579580 +2303/3917;Nairobi: Max refused operations branch_refused;4.3238;0.810624;5.10606;388204;582872 +2304/3917;Alpha: Max refused operations refused;4.55929;0.872014;5.40229;388200;584308 +2305/3917;Mumbai: Max refused operations refused;4.50531;0.925267;5.39264;388200;581676 +2306/3917;Nairobi: Max refused operations refused;4.60165;0.884428;5.45309;388200;584636 +2307/3917;Alpha: Max refused operations outdated;2.5194;0.484169;2.97115;388196;572892 +2308/3917;Mumbai: Max refused operations outdated;2.48097;0.520642;2.96869;388204;573080 +2309/3917;Nairobi: Max refused operations outdated;2.49443;0.489178;2.95942;388200;568668 +2310/3917;Alpha: mempool ban operation;5.73233;1.12241;6.86622;388204;1308332 +2311/3917;Mumbai: mempool ban operation;5.84226;1.05883;6.88499;388204;1323112 +2312/3917;Nairobi: mempool ban operation;5.85792;1.04602;6.93589;388204;1326008 +2313/3917;Alpha: mempool unban operation and reinject;7.5718;1.55811;9.08568;388076;588976 +2314/3917;Mumbai: mempool unban operation and reinject;7.62855;1.43223;9.01976;388068;588796 +2315/3917;Nairobi: mempool unban operation and reinject;7.65224;1.39304;9.00335;388072;588992 +2316/3917;Alpha: mempool unban all operations;5.43586;0.910931;6.24216;388076;953488 +2317/3917;Mumbai: mempool unban all operations;5.29535;1.04468;6.2499;388076;953416 +2318/3917;Nairobi: mempool unban all operations;5.39612;0.999818;6.2775;388204;949420 +2319/3917;Alpha: test full mempool;8.13519;1.43653;6.22788;388200;1212924 +2320/3917;Mumbai: test full mempool;8.10622;1.52103;6.2528;387044;1195104 +2321/3917;Nairobi: test full mempool;8.04689;1.50551;6.22479;388200;1210128 +2322/3917;Alpha: test full mempool and replace same manager;5.38281;0.902097;5.01753;387048;1012116 +2323/3917;Mumbai: test full mempool and replace same manager;5.31644;0.93815;4.99948;388204;1026560 +2324/3917;Nairobi: test full mempool and replace same manager;5.25088;1.02553;5.01069;387180;1012512 +2325/3917;Alpha: Precheck refused an operation which empties a balance;1.80132;0.329257;2.12878;388196;562452 +2326/3917;Mumbai: Precheck refused an operation which empties a balance;1.77982;0.335018;2.11292;388072;562276 +2327/3917;Nairobi: Precheck refused an operation which empties a balance;1.80442;0.339847;2.14266;388196;562176 +2328/3917;Alpha: Test private/injection/operations RPC;4.15733;0.793706;4.94139;387948;577752 +2329/3917;Mumbai: Test private/injection/operations RPC;4.19302;0.75531;4.93822;388200;576156 +2330/3917;Nairobi: Test private/injection/operations RPC;4.14957;0.767801;4.89793;374380;560412 +2331/3917;Alpha: Inject manager batch;1.87559;0.322378;2.18849;388196;563028 +2332/3917;Mumbai: Inject manager batch;1.79938;0.397066;2.18755;388200;562680 +2333/3917;Nairobi: Inject manager batch;1.82656;0.308707;2.13227;388200;562452 +2334/3917;Alpha: Mempool disabled;4.96522;0.887205;5.73524;388204;1316216 +2335/3917;Mumbai: Mempool disabled;4.86314;0.958618;5.68931;388200;1316284 +2336/3917;Nairobi: Mempool disabled;5.01078;0.893314;5.77731;388076;1316352 +2337/3917;Alpha: Ensure that future endorsements are propagated;7.42161;1.30272;5.42668;387896;1571552 +2338/3917;Mumbai: Ensure that future endorsements are propagated;7.38444;1.39869;5.43244;387856;1581512 +2339/3917;Nairobi: Ensure that future endorsements are propagated;7.38227;1.41558;5.44652;388084;1584316 +2340/3917;Alpha: Forge pre-filtered operation and check mempool;3.18551;0.640221;2.70396;387944;1020920 +2341/3917;Mumbai: Forge pre-filtered operation and check mempool;3.21404;0.577858;2.67639;387560;1008404 +2342/3917;Nairobi: Forge pre-filtered operation and check mempool;3.25793;0.573593;2.70971;387924;1022084 +2343/3917;Alpha: Fetch failed operation;3.42911;0.622731;3.92976;388196;1020768 +2344/3917;Mumbai: Fetch failed operation;3.39236;0.662374;3.92091;388204;1004208 +2345/3917;Nairobi: Fetch failed operation;3.3752;0.634637;3.88044;388072;1006028 +2346/3917;Alpha: mempool ban operation and check applied;3.33603;0.564856;2.98562;388196;937440 +2347/3917;Mumbai: mempool ban operation and check applied;3.21082;0.635021;2.94891;387024;935024 +2348/3917;Nairobi: mempool ban operation and check applied;3.35074;0.494986;2.95762;388204;935584 +2349/3917;Alpha: mempool do not reclassify;4.22325;0.704973;3.72093;387024;1205240 +2350/3917;Mumbai: mempool do not reclassify;4.12481;0.80411;3.676;388332;1217440 +2351/3917;Nairobi: mempool do not reclassify;4.18001;0.755293;3.70693;387688;1205608 +2352/3917;Alpha: pending operation version;1.98034;0.367358;2.34155;388072;565192 +2353/3917;Mumbai: pending operation version;2.01434;0.328746;2.32787;388068;566608 +2354/3917;Nairobi: pending operation version;1.92163;0.412247;2.32706;388196;565460 +2355/3917;Alpha: force invalid operation injection;3.10813;0.530853;3.47605;388324;1023416 +2356/3917;Mumbai: force invalid operation injection;2.96979;0.600095;3.3799;388196;1021712 +2357/3917;Nairobi: force invalid operation injection;3.01331;0.538322;3.35976;388204;1019532 +2358/3917;Alpha: Injecting old operation fails;2.14363;0.381598;2.50521;388200;567188 +2359/3917;Mumbai: Injecting old operation fails;2.10958;0.417784;2.49386;388200;569664 +2360/3917;Nairobi: Injecting old operation fails;2.09029;0.40988;2.48062;388068;567676 +2361/3917;Alpha: get post mempool filter;4.55658;0.990866;5.53556;388068;581724 +2362/3917;Mumbai: get post mempool filter;4.67878;0.871752;5.54074;387944;581260 +2363/3917;Nairobi: get post mempool filter;4.61279;0.935929;5.5327;387836;578412 +2364/3917;Alpha: mempool filter arrival;4.87741;0.939975;4.0699;388200;1395148 +2365/3917;Mumbai: mempool filter arrival;4.86465;0.936434;4.01258;387692;1397232 +2366/3917;Nairobi: mempool filter arrival;4.85327;0.912725;4.00052;387296;1412384 +2367/3917;Alpha: Test request_operations rpc;3.09473;0.562395;2.5275;387276;1026544 +2368/3917;Mumbai: Test request_operations rpc;3.14914;0.538635;2.5507;388324;1030448 +2369/3917;Nairobi: Test request_operations rpc;3.04371;0.613978;2.53434;387688;1026652 +2370/3917;Alpha: protocol limits;1.07222;0.196711;1.26755;198500;192080 +2371/3917;Mumbai: protocol limits;1.09797;0.187436;1.28382;198628;191788 +2372/3917;Nairobi: protocol limits;1.08942;0.200736;1.2866;198632;190508 +2373/3917;Alpha: (Proxy) Bake;2.62644;0.527221;3.0889;388204;576432 +2374/3917;Mumbai: (Proxy) Bake;2.68493;0.479529;3.09635;388200;577124 +2375/3917;Nairobi: (Proxy) Bake;2.60674;0.530879;3.07035;388068;577132 +2376/3917;Alpha: (Proxy) Transfer;1.90007;0.383505;2.25368;388328;566940 +2377/3917;Mumbai: (Proxy) Transfer;1.87735;0.38835;2.23616;388336;567680 +2378/3917;Nairobi: (Proxy) Transfer;1.86259;0.376416;2.21172;388200;568140 +2379/3917;Alpha: (Proxy) Wrong proto;1.44199;0.267336;1.70355;388196;564952 +2380/3917;Mumbai: (Proxy) Wrong proto;1.44583;0.27674;1.71337;388068;564920 +2381/3917;Nairobi: (Proxy) Wrong proto;1.4778;0.267889;1.73969;388196;565132 +2382/3917;Alpha: (Proxy) (/chains/main/blocks/head/helpers/baking_rights) No useless RPC call;1.50074;0.241077;1.73494;388200;564336 +2383/3917;Alpha: (Proxy) (/chains/main/blocks/head/helpers/baking_rights?all=true) No useless RPC call;1.46661;0.282613;1.73144;388200;562908 +2384/3917;Alpha: (Proxy) (/chains/main/blocks/head/context/contracts) No useless RPC call;1.48737;0.25604;1.72493;388200;563080 +2385/3917;Alpha: (Proxy) (/chains/main/blocks/head/context/delegates) No useless RPC call;1.51843;0.227097;1.72821;388216;562896 +2386/3917;Alpha: (Proxy) (/chains/main/blocks/head/context/nonces/3) No useless RPC call;1.44277;0.283795;1.70995;388048;563048 +2387/3917;Alpha: (Proxy) (/chains/main/blocks/head/helpers/endorsing_rights) No useless RPC call;1.51042;0.252036;1.74562;388076;562716 +2388/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/current_period) No useless RPC call;1.47034;0.284181;1.73659;387964;562836 +2389/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/successor_period) No useless RPC call;1.44696;0.279085;1.70898;388200;562460 +2390/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/total_voting_power) No useless RPC call;1.43779;0.273243;1.70366;388200;564732 +2391/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/ballot_list) No useless RPC call;1.4381;0.276078;1.70693;388076;564132 +2392/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/ballots) No useless RPC call;1.44253;0.273023;1.70784;388200;564556 +2393/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/current_proposal) No useless RPC call;1.44202;0.288096;1.72505;388204;564264 +2394/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/current_quorum) No useless RPC call;1.43023;0.270806;1.69462;388204;564732 +2395/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/listings) No useless RPC call;1.4728;0.25345;1.71075;388068;563112 +2396/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/proposals) No useless RPC call;1.47955;0.251748;1.72408;388204;564496 +2397/3917;Mumbai: (Proxy) (/chains/main/blocks/head/helpers/baking_rights) No useless RPC call;1.40075;0.299361;1.69227;388200;564892 +2398/3917;Mumbai: (Proxy) (/chains/main/blocks/head/helpers/baking_rights?all=true) No useless RPC call;1.49842;0.256488;1.73347;388072;563488 +2399/3917;Mumbai: (Proxy) (/chains/main/blocks/head/context/contracts) No useless RPC call;1.42917;0.278884;1.69927;374504;551892 +2400/3917;Mumbai: (Proxy) (/chains/main/blocks/head/context/delegates) No useless RPC call;1.46312;0.29893;1.74369;388204;563952 +2401/3917;Mumbai: (Proxy) (/chains/main/blocks/head/context/nonces/3) No useless RPC call;1.47073;0.247619;1.70841;388072;565172 +2402/3917;Mumbai: (Proxy) (/chains/main/blocks/head/helpers/endorsing_rights) No useless RPC call;1.47637;0.268825;1.73655;388072;565576 +2403/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/current_period) No useless RPC call;1.46703;0.284923;1.74258;388200;565072 +2404/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/successor_period) No useless RPC call;1.43207;0.287372;1.71037;388028;565280 +2405/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/total_voting_power) No useless RPC call;1.43533;0.272293;1.69884;388200;564204 +2406/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/ballot_list) No useless RPC call;1.45667;0.249388;1.69856;388204;565204 +2407/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/ballots) No useless RPC call;1.45898;0.267651;1.71821;388200;564300 +2408/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/current_proposal) No useless RPC call;1.43097;0.291848;1.7133;388196;565240 +2409/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/current_quorum) No useless RPC call;1.42342;0.28464;1.69798;388196;565192 +2410/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/listings) No useless RPC call;1.4663;0.258418;1.71587;388072;564612 +2411/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/proposals) No useless RPC call;1.43809;0.300876;1.72008;388200;563696 +2412/3917;Nairobi: (Proxy) (/chains/main/blocks/head/helpers/baking_rights) No useless RPC call;1.47781;0.235279;1.70446;388200;564396 +2413/3917;Nairobi: (Proxy) (/chains/main/blocks/head/helpers/baking_rights?all=true) No useless RPC call;1.40477;0.334434;1.72083;388200;563232 +2414/3917;Nairobi: (Proxy) (/chains/main/blocks/head/context/contracts) No useless RPC call;1.48486;0.234497;1.71067;388204;565100 +2415/3917;Nairobi: (Proxy) (/chains/main/blocks/head/context/delegates) No useless RPC call;1.41993;0.285922;1.6958;388076;564952 +2416/3917;Nairobi: (Proxy) (/chains/main/blocks/head/context/nonces/3) No useless RPC call;1.39545;0.31312;1.70254;388200;564480 +2417/3917;Nairobi: (Proxy) (/chains/main/blocks/head/helpers/endorsing_rights) No useless RPC call;1.50219;0.24149;1.726;388072;563132 +2418/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/current_period) No useless RPC call;1.47969;0.259605;1.72157;388200;563292 +2419/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/successor_period) No useless RPC call;1.43507;0.286507;1.70306;388072;562952 +2420/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/total_voting_power) No useless RPC call;1.40573;0.314134;1.70374;388204;562924 +2421/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/ballot_list) No useless RPC call;1.41558;0.316172;1.715;388196;563260 +2422/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/ballots) No useless RPC call;1.50028;0.265228;1.74872;374136;549272 +2423/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/current_proposal) No useless RPC call;1.45777;0.250621;1.70206;387876;565452 +2424/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/current_quorum) No useless RPC call;1.4463;0.285409;1.72466;388084;564724 +2425/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/listings) No useless RPC call;1.47181;0.257038;1.72069;388200;564616 +2426/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/proposals) No useless RPC call;1.43188;0.286886;1.71249;388076;565208 +2427/3917;Alpha: (Proxy) (/chains/main/blocks/head/helpers/baking_rights) Cache at most once;1.48806;0.247883;1.71978;388064;562512 +2428/3917;Mumbai: (Proxy) (/chains/main/blocks/head/helpers/baking_rights) Cache at most once;1.44695;0.289657;1.72823;388328;565512 +2429/3917;Nairobi: (Proxy) (/chains/main/blocks/head/helpers/baking_rights) Cache at most once;1.44328;0.248921;1.68493;388200;565016 +2430/3917;Alpha: (Proxy) (/chains/main/blocks/head/helpers/baking_rights?all=true) Cache at most once;1.5087;0.230637;1.72455;388072;562948 +2431/3917;Mumbai: (Proxy) (/chains/main/blocks/head/helpers/baking_rights?all=true) Cache at most once;1.48797;0.293987;1.76171;388200;563092 +2432/3917;Nairobi: (Proxy) (/chains/main/blocks/head/helpers/baking_rights?all=true) Cache at most once;1.50217;0.23128;1.71564;388200;562596 +2433/3917;Alpha: (Proxy) (/chains/main/blocks/head/helpers/current_level) Cache at most once;1.47538;0.26805;1.72691;387936;562184 +2434/3917;Mumbai: (Proxy) (/chains/main/blocks/head/helpers/current_level) Cache at most once;1.4071;0.306387;1.70331;388204;564888 +2435/3917;Nairobi: (Proxy) (/chains/main/blocks/head/helpers/current_level) Cache at most once;1.45693;0.282497;1.73206;388200;564784 +2436/3917;Alpha: (Proxy) (/chains/main/blocks/head/context/constants) Cache at most once;1.44428;0.29083;1.72719;388196;565108 +2437/3917;Mumbai: (Proxy) (/chains/main/blocks/head/context/constants) Cache at most once;1.52415;0.221769;1.73666;388332;565504 +2438/3917;Nairobi: (Proxy) (/chains/main/blocks/head/context/constants) Cache at most once;1.45383;0.267494;1.71352;388072;565012 +2439/3917;Alpha: (Proxy) (/chains/main/blocks/head/context/constants/errors) Cache at most once;1.49357;0.26418;1.74954;388064;569132 +2440/3917;Mumbai: (Proxy) (/chains/main/blocks/head/context/constants/errors) Cache at most once;1.48881;0.259423;1.73768;388196;569604 +2441/3917;Nairobi: (Proxy) (/chains/main/blocks/head/context/constants/errors) Cache at most once;1.46382;0.285405;1.74142;388200;570112 +2442/3917;Alpha: (Proxy) (/chains/main/blocks/head/context/delegates) Cache at most once;1.48229;0.239979;1.71396;388200;564212 +2443/3917;Mumbai: (Proxy) (/chains/main/blocks/head/context/delegates) Cache at most once;1.43719;0.2898;1.71876;388084;564816 +2444/3917;Nairobi: (Proxy) (/chains/main/blocks/head/context/delegates) Cache at most once;1.42988;0.275199;1.69754;388200;564468 +2445/3917;Alpha: (Proxy) (/chains/main/blocks/head/context/nonces/3) Cache at most once;1.48195;0.254317;1.72839;387984;564156 +2446/3917;Mumbai: (Proxy) (/chains/main/blocks/head/context/nonces/3) Cache at most once;1.48016;0.263094;1.7339;388204;565064 +2447/3917;Nairobi: (Proxy) (/chains/main/blocks/head/context/nonces/3) Cache at most once;1.49042;0.239367;1.72341;388200;564992 +2448/3917;Alpha: (Proxy) (/chains/main/blocks/head/helpers/endorsing_rights) Cache at most once;1.44529;0.260507;1.69855;388200;564808 +2449/3917;Mumbai: (Proxy) (/chains/main/blocks/head/helpers/endorsing_rights) Cache at most once;1.41989;0.303005;1.71412;388196;564692 +2450/3917;Nairobi: (Proxy) (/chains/main/blocks/head/helpers/endorsing_rights) Cache at most once;1.45055;0.279884;1.72199;388200;564656 +2451/3917;Alpha: (Proxy) (/chains/main/blocks/head/helpers/levels_in_current_cycle) Cache at most once;1.45172;0.280622;1.71485;388196;563112 +2452/3917;Mumbai: (Proxy) (/chains/main/blocks/head/helpers/levels_in_current_cycle) Cache at most once;1.48037;0.252743;1.71384;388204;562808 +2453/3917;Nairobi: (Proxy) (/chains/main/blocks/head/helpers/levels_in_current_cycle) Cache at most once;1.41095;0.324226;1.71851;388200;563452 +2454/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/current_period) Cache at most once;1.47481;0.269281;1.72716;388200;562768 +2455/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/current_period) Cache at most once;1.44582;0.290424;1.71743;388196;563676 +2456/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/current_period) Cache at most once;1.48703;0.270047;1.73966;388200;562500 +2457/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/successor_period) Cache at most once;1.48923;0.257561;1.73671;388196;562516 +2458/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/successor_period) Cache at most once;1.4745;0.270027;1.72645;388196;563592 +2459/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/successor_period) Cache at most once;1.47356;0.269119;1.7273;388200;563528 +2460/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/total_voting_power) Cache at most once;1.45618;0.275021;1.71388;388204;562236 +2461/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/total_voting_power) Cache at most once;1.49969;0.230324;1.71434;374376;550112 +2462/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/total_voting_power) Cache at most once;1.45247;0.270103;1.70376;388200;563404 +2463/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/ballot_list) Cache at most once;1.45802;0.285547;1.72491;388196;562836 +2464/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/ballot_list) Cache at most once;1.45829;0.281459;1.72075;388200;563584 +2465/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/ballot_list) Cache at most once;1.49059;0.243611;1.71545;388196;563120 +2466/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/ballots) Cache at most once;1.39928;0.340372;1.72372;388196;562416 +2467/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/ballots) Cache at most once;1.49154;0.264555;1.73686;388204;563088 +2468/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/ballots) Cache at most once;1.48621;0.273086;1.7407;388200;562776 +2469/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/current_proposal) Cache at most once;1.49915;0.245757;1.72861;388072;562824 +2470/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/current_proposal) Cache at most once;1.45242;0.282899;1.71876;374376;549552 +2471/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/current_proposal) Cache at most once;1.42903;0.289337;1.70151;388200;563164 +2472/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/current_quorum) Cache at most once;1.51549;0.240011;1.73821;388204;562632 +2473/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/current_quorum) Cache at most once;1.50845;0.251511;1.74391;388204;564020 +2474/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/current_quorum) Cache at most once;1.39559;0.326559;1.70383;388072;562844 +2475/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/listings) Cache at most once;1.4486;0.281523;1.71456;388196;563072 +2476/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/listings) Cache at most once;1.48906;0.266647;1.73428;388064;563376 +2477/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/listings) Cache at most once;1.43235;0.304483;1.71821;388196;563164 +2478/3917;Alpha: (Proxy) (/chains/main/blocks/head/votes/proposals) Cache at most once;1.49972;0.282178;1.76355;388204;562432 +2479/3917;Mumbai: (Proxy) (/chains/main/blocks/head/votes/proposals) Cache at most once;1.43973;0.288569;1.71281;374380;549496 +2480/3917;Nairobi: (Proxy) (/chains/main/blocks/head/votes/proposals) Cache at most once;1.53483;0.237822;1.75677;388196;562976 +2481/3917;Alpha: (Proxy) RPC get's location;1.71762;0.326434;2.02103;388204;563996 +2482/3917;Mumbai: (Proxy) RPC get's location;1.74196;0.296924;2.01896;388200;564936 +2483/3917;Nairobi: (Proxy) RPC get's location;1.76184;0.309169;2.04707;388200;565492 +2484/3917;Alpha: (Proxy) Compare RPC get;6.84011;1.31716;4.91127;388204;682796 +2485/3917;Mumbai: (Proxy) Compare RPC get;6.84834;1.32568;4.92263;387948;679288 +2486/3917;Nairobi: (Proxy) Compare RPC get;6.76181;1.36757;4.88208;388200;683728 +2487/3917;Alpha: (Proxy) split_key heuristic;3.32905;0.68493;3.95099;387948;572296 +2488/3917;Mumbai: (Proxy) split_key heuristic;3.32253;0.688914;3.9499;388064;573544 +2489/3917;Nairobi: (Proxy) split_key heuristic;3.27578;0.673171;3.88516;388204;573368 +2490/3917;Alpha: big_map_perf (node);3.1274;0.59342;3.69667;374328;559280 +2491/3917;Mumbai: big_map_perf (node);3.07404;0.678546;3.72144;388324;573596 +2492/3917;Nairobi: big_map_perf (node);3.1367;0.598547;3.70631;388332;573808 +2493/3917;Alpha: big_map_perf (proxy_server_data_dir);3.4153;0.660255;4.02021;388328;659304 +2494/3917;Mumbai: big_map_perf (proxy_server_data_dir);3.40401;0.66267;4.00681;388324;658640 +2495/3917;Nairobi: big_map_perf (proxy_server_data_dir);3.36301;0.700797;4.00681;388328;658516 +2496/3917;Alpha: big_map_perf (proxy_server);3.39496;0.71975;4.05191;388324;658872 +2497/3917;Mumbai: big_map_perf (proxy_server);3.43373;0.704983;4.07685;374508;644816 +2498/3917;Nairobi: big_map_perf (proxy_server);3.39072;0.704884;4.03356;388328;658372 +2499/3917;Alpha: proxy_server serve unsupported curl;1.28551;0.238588;1.5162;374252;543540 +2500/3917;Mumbai: proxy_server serve unsupported curl;1.26757;0.261057;1.51887;388076;557552 +2501/3917;Nairobi: proxy_server serve unsupported curl;1.28072;0.263568;1.54375;388200;557440 +2502/3917;Alpha: (Vanilla, proxy_server endpoint) Compare RPC get;6.92272;1.29364;4.99844;388064;770964 +2503/3917;Mumbai: (Vanilla, proxy_server endpoint) Compare RPC get;6.95312;1.31946;5.03292;388068;772872 +2504/3917;Nairobi: (Vanilla, proxy_server endpoint) Compare RPC get;6.88168;1.35342;5.01444;387944;775092 +2505/3917;Alpha: proxy_server wrong data_dir;1.26318;0.247519;1.50464;388200;557996 +2506/3917;Mumbai: proxy_server wrong data_dir;1.2552;0.257399;1.50537;388072;557244 +2507/3917;Nairobi: proxy_server wrong data_dir;1.2816;0.25168;1.52596;387932;557664 +2508/3917;Alpha: proxy_server multi protocols;2.38185;0.476494;2.80522;388072;657532 +2509/3917;Mumbai: proxy_server multi protocols;0.317457;0.012055;0.329613;189208;92460 +2510/3917;Nairobi: proxy_server multi protocols;2.25589;0.455492;2.66033;388200;655968 +2511/3917;Binary RPC regression tests;1.4767;0.202429;1.67654;388072;558056 +2512/3917;Alpha: (mode client) RPC regression tests: contracts;8.57583;1.77246;10.2476;388076;594824 +2513/3917;Mumbai: (mode client) RPC regression tests: contracts;8.59579;1.71263;10.2011;388332;595204 +2514/3917;Nairobi: (mode client) RPC regression tests: contracts;8.72968;1.55693;10.1677;388092;595056 +2515/3917;Alpha: (mode client) RPC regression tests: delegates;3.75016;0.76537;4.49173;387944;571180 +2516/3917;Mumbai: (mode client) RPC regression tests: delegates;3.82042;0.673431;4.46957;388076;571608 +2517/3917;Nairobi: (mode client) RPC regression tests: delegates;3.81492;0.713026;4.50196;388200;571500 +2518/3917;Alpha: (mode client) RPC regression tests: adaptive_inflation;2.13525;0.357257;2.47769;387940;565452 +2519/3917;Alpha: (mode client) RPC regression tests: votes;4.66856;0.851295;5.45589;388332;582480 +2520/3917;Mumbai: (mode client) RPC regression tests: votes;4.64197;0.910612;5.4836;388328;582804 +2521/3917;Nairobi: (mode client) RPC regression tests: votes;4.78943;0.804387;5.53105;388224;582720 +2522/3917;Alpha: (mode client) RPC regression tests: misc_protocol;2.35644;0.438162;2.77918;388204;567492 +2523/3917;Mumbai: (mode client) RPC regression tests: misc_protocol;2.14268;0.385256;2.51671;387948;565332 +2524/3917;Nairobi: (mode client) RPC regression tests: misc_protocol;2.10942;0.378083;2.48023;388068;565444 +2525/3917;Alpha: (mode client) RPC regression tests: mempool;10.4858;1.89564;12.2329;388200;970200 +2526/3917;Mumbai: (mode client) RPC regression tests: mempool;10.4055;1.89268;12.1649;388072;969616 +2527/3917;Nairobi: (mode client) RPC regression tests: mempool;10.3326;2.00107;12.1966;388076;969588 +2528/3917;Alpha: (mode client) RPC tests: network;4.84703;0.854883;5.62048;388200;945196 +2529/3917;Mumbai: (mode client) RPC tests: network;4.74258;0.948888;5.62211;388072;945632 +2530/3917;Nairobi: (mode client) RPC tests: network;4.72745;0.957835;5.61937;388196;931056 +2531/3917;Alpha: (mode client) RPC tests: workers;2.09362;0.36421;2.44959;388072;564976 +2532/3917;Mumbai: (mode client) RPC tests: workers;2.07733;0.393142;2.4637;388076;565036 +2533/3917;Nairobi: (mode client) RPC tests: workers;2.02499;0.463312;2.48101;388076;565112 +2534/3917;Alpha: (mode client) RPC tests: misc_shell;4.61407;0.463981;5.04787;388972;639160 +2535/3917;Mumbai: (mode client) RPC tests: misc_shell;4.66606;0.39381;5.02658;388836;645040 +2536/3917;Nairobi: (mode client) RPC tests: misc_shell;4.75723;0.385376;5.11453;388840;640140 +2537/3917;Alpha: (mode client) RPC tests: chain;5.48162;1.03037;6.44962;388072;590780 +2538/3917;Mumbai: (mode client) RPC tests: chain;5.52843;0.94925;6.41403;388048;590148 +2539/3917;Nairobi: (mode client) RPC tests: chain;5.38247;1.09114;6.41763;388052;590668 +2540/3917;Alpha: (mode client) RPC tests: deprecated;1.73931;0.292872;2.02237;388456;561844 +2541/3917;Mumbai: (mode client) RPC tests: deprecated;1.7141;0.320072;2.01884;388200;562188 +2542/3917;Nairobi: (mode client) RPC tests: deprecated;1.76129;0.289448;2.03979;388204;561880 +2543/3917;Alpha: (mode light) RPC regression tests: contracts;10.3832;1.86268;10.9895;388288;965184 +2544/3917;Mumbai: (mode light) RPC regression tests: contracts;10.2037;1.97983;10.9704;388324;965548 +2545/3917;Nairobi: (mode light) RPC regression tests: contracts;10.055;1.99958;10.8635;388196;965964 +2546/3917;Alpha: (mode light) RPC regression tests: delegates;5.06283;0.995878;4.99819;387944;946660 +2547/3917;Mumbai: (mode light) RPC regression tests: delegates;5.08178;0.882026;4.92782;388040;931888 +2548/3917;Nairobi: (mode light) RPC regression tests: delegates;4.98585;0.935269;4.89574;388204;946360 +2549/3917;Alpha: (mode light) RPC regression tests: adaptive_inflation;3.18424;0.545647;2.75821;387964;924320 +2550/3917;Alpha: (mode light) RPC regression tests: votes;6.03217;1.14939;6.04756;388328;957828 +2551/3917;Mumbai: (mode light) RPC regression tests: votes;6.01973;1.15159;6.0293;388232;958644 +2552/3917;Nairobi: (mode light) RPC regression tests: votes;5.88481;1.17479;5.97051;388328;958352 +2553/3917;Alpha: (mode light) RPC regression tests: misc_protocol;3.55866;0.591211;3.15001;388328;939072 +2554/3917;Mumbai: (mode light) RPC regression tests: misc_protocol;3.13576;0.611387;2.77096;388096;922180 +2555/3917;Nairobi: (mode light) RPC regression tests: misc_protocol;3.1711;0.560078;2.77001;388204;935928 +2556/3917;Alpha: (mode light) RPC tests: network;4.76852;0.93879;4.72376;388200;944836 +2557/3917;Mumbai: (mode light) RPC tests: network;4.83381;0.859556;4.72389;388204;945140 +2558/3917;Nairobi: (mode light) RPC tests: network;4.69611;0.997216;4.72498;388204;945096 +2559/3917;Alpha: (mode light) RPC tests: workers;3.11579;0.528097;2.69437;388200;939064 +2560/3917;Mumbai: (mode light) RPC tests: workers;3.11472;0.54346;2.72369;388076;938812 +2561/3917;Nairobi: (mode light) RPC tests: workers;3.1542;0.519627;2.71355;388048;938784 +2562/3917;Alpha: (mode light) RPC tests: misc_shell;5.74724;0.571595;5.32873;388840;1017632 +2563/3917;Mumbai: (mode light) RPC tests: misc_shell;5.67265;0.629908;5.34238;388968;1016244 +2564/3917;Nairobi: (mode light) RPC tests: misc_shell;1.44636;0.300172;1.22686;388204;467180 +2565/3917;Alpha: (mode light) RPC tests: chain;70.4833;1.2365;70.6659;405224;984776 +2566/3917;Mumbai: (mode light) RPC tests: chain;101.425;1.27999;101.657;411536;992000 +2567/3917;Nairobi: (mode light) RPC tests: chain;61.4683;1.21408;61.6302;413532;988024 +2568/3917;Alpha: (mode light) RPC tests: deprecated;2.7547;0.45547;2.24312;388072;920828 +2569/3917;Mumbai: (mode light) RPC tests: deprecated;2.65987;0.506812;2.23314;387304;921372 +2570/3917;Nairobi: (mode light) RPC tests: deprecated;2.73053;0.485014;2.25275;387692;935220 +2571/3917;Alpha: (mode proxy) RPC regression tests: contracts;8.77446;1.80754;10.378;388200;595752 +2572/3917;Mumbai: (mode proxy) RPC regression tests: contracts;8.84588;1.71591;10.3654;388328;595904 +2573/3917;Nairobi: (mode proxy) RPC regression tests: contracts;8.81323;1.72011;10.3496;387964;596168 +2574/3917;Alpha: (mode proxy) RPC regression tests: delegates;3.72687;0.871603;4.52929;374248;557632 +2575/3917;Mumbai: (mode proxy) RPC regression tests: delegates;3.86938;0.751892;4.55364;388076;571976 +2576/3917;Nairobi: (mode proxy) RPC regression tests: delegates;3.91507;0.718058;4.5719;388204;570964 +2577/3917;Alpha: (mode proxy) RPC regression tests: adaptive_inflation;2.07716;0.404611;2.46796;387948;562296 +2578/3917;Alpha: (mode proxy) RPC regression tests: votes;4.76293;0.914071;5.56505;388332;585604 +2579/3917;Mumbai: (mode proxy) RPC regression tests: votes;4.69338;1.00059;5.58465;388324;585276 +2580/3917;Nairobi: (mode proxy) RPC regression tests: votes;4.76542;0.91038;5.57406;388332;584796 +2581/3917;Alpha: (mode proxy) RPC regression tests: misc_protocol;2.39806;0.450979;2.82643;388072;563176 +2582/3917;Mumbai: (mode proxy) RPC regression tests: misc_protocol;2.09095;0.413933;2.49069;388064;561972 +2583/3917;Nairobi: (mode proxy) RPC regression tests: misc_protocol;2.05821;0.436045;2.4779;388064;562316 +2584/3917;Alpha: (mode proxy) RPC regression tests: mempool;11.0734;2.06556;12.9212;388200;967128 +2585/3917;Mumbai: (mode proxy) RPC regression tests: mempool;11.4652;2.03007;13.3058;388200;967252 +2586/3917;Nairobi: (mode proxy) RPC regression tests: mempool;10.9036;2.16046;12.8784;388076;965888 +2587/3917;Alpha: (mode proxy) RPC tests: network;4.84532;0.908525;5.68129;388204;948032 +2588/3917;Mumbai: (mode proxy) RPC tests: network;4.91119;0.924298;5.74662;388204;945440 +2589/3917;Nairobi: (mode proxy) RPC tests: network;4.89443;0.903582;5.73102;388200;948488 +2590/3917;Alpha: (mode proxy) RPC tests: workers;2.13637;0.339685;2.47094;387948;563092 +2591/3917;Mumbai: (mode proxy) RPC tests: workers;2.07738;0.404553;2.47524;374248;549764 +2592/3917;Nairobi: (mode proxy) RPC tests: workers;2.09469;0.382838;2.47046;374248;550932 +2593/3917;Alpha: (mode proxy) RPC tests: misc_shell;4.86872;0.433713;5.27334;388836;642856 +2594/3917;Mumbai: (mode proxy) RPC tests: misc_shell;4.61711;0.439206;5.02853;388972;643648 +2595/3917;Nairobi: (mode proxy) RPC tests: misc_shell;4.91768;0.417739;5.30914;388840;643492 +2596/3917;Alpha: (mode proxy) RPC tests: chain;62.7223;1.11496;63.7394;413928;619732 +2597/3917;Mumbai: (mode proxy) RPC tests: chain;108.092;1.11763;109.116;408556;614620 +2598/3917;Nairobi: (mode proxy) RPC tests: chain;56.6493;1.16033;57.7203;413924;614680 +2599/3917;Alpha: (mode proxy) RPC tests: deprecated;1.69776;0.345063;2.03596;388200;562272 +2600/3917;Mumbai: (mode proxy) RPC tests: deprecated;1.6927;0.319319;2.0058;388200;562408 +2601/3917;Nairobi: (mode proxy) RPC tests: deprecated;1.66442;0.351876;2.00962;388200;562244 +2602/3917;Alpha: (mode proxy_server_data_dir) RPC regression tests: contracts;8.8466;1.84974;10.5229;388200;684100 +2603/3917;Mumbai: (mode proxy_server_data_dir) RPC regression tests: contracts;9.07341;1.68803;10.5738;388200;687064 +2604/3917;Nairobi: (mode proxy_server_data_dir) RPC regression tests: contracts;8.89669;1.82494;10.5383;388324;682820 +2605/3917;Alpha: (mode proxy_server_data_dir) RPC regression tests: delegates;4.01494;0.830452;4.78778;388200;666656 +2606/3917;Mumbai: (mode proxy_server_data_dir) RPC regression tests: delegates;4.05661;0.814895;4.80642;388068;666576 +2607/3917;Nairobi: (mode proxy_server_data_dir) RPC regression tests: delegates;4.08002;0.771959;4.80206;388200;666516 +2608/3917;Alpha: (mode proxy_server_data_dir) RPC regression tests: adaptive_inflation;2.41028;0.408404;2.78903;388200;653552 +2609/3917;Alpha: (mode proxy_server_data_dir) RPC regression tests: votes;4.90095;0.982602;5.77342;388200;673232 +2610/3917;Mumbai: (mode proxy_server_data_dir) RPC regression tests: votes;4.90154;1.0197;5.81618;388332;674460 +2611/3917;Nairobi: (mode proxy_server_data_dir) RPC regression tests: votes;4.87417;1.03381;5.79478;388332;672944 +2612/3917;Alpha: (mode proxy_server_data_dir) RPC regression tests: misc_protocol;2.73148;0.426548;3.11778;388008;654620 +2613/3917;Mumbai: (mode proxy_server_data_dir) RPC regression tests: misc_protocol;2.32911;0.484696;2.77696;388204;656152 +2614/3917;Nairobi: (mode proxy_server_data_dir) RPC regression tests: misc_protocol;2.32809;0.464764;2.76799;388200;649576 +2615/3917;Alpha: (mode proxy_server_data_dir) RPC tests: network;1.43976;0.249933;1.68478;388204;563076 +2616/3917;Mumbai: (mode proxy_server_data_dir) RPC tests: network;1.45229;0.238923;1.68123;388200;564388 +2617/3917;Nairobi: (mode proxy_server_data_dir) RPC tests: network;1.3788;0.27096;1.64065;388204;564228 +2618/3917;Alpha: (mode proxy_server_data_dir) RPC tests: deprecated;1.92641;0.371214;2.27752;388328;647712 +2619/3917;Mumbai: (mode proxy_server_data_dir) RPC tests: deprecated;1.98729;0.328724;2.29504;388324;648064 +2620/3917;Nairobi: (mode proxy_server_data_dir) RPC tests: deprecated;1.92907;0.372947;2.28082;388328;648664 +2621/3917;Alpha: (mode proxy_server_rpc) RPC regression tests: contracts;8.99812;1.67551;10.4907;388200;683448 +2622/3917;Mumbai: (mode proxy_server_rpc) RPC regression tests: contracts;8.91643;1.79411;10.5531;374504;670604 +2623/3917;Nairobi: (mode proxy_server_rpc) RPC regression tests: contracts;9.00167;1.66254;10.5023;388204;683648 +2624/3917;Alpha: (mode proxy_server_rpc) RPC regression tests: delegates;4.01534;0.824542;4.7961;388068;666404 +2625/3917;Mumbai: (mode proxy_server_rpc) RPC regression tests: delegates;3.99789;0.820195;4.76001;388076;664220 +2626/3917;Nairobi: (mode proxy_server_rpc) RPC regression tests: delegates;4.05397;0.794961;4.7911;388068;664200 +2627/3917;Alpha: (mode proxy_server_rpc) RPC regression tests: adaptive_inflation;2.38089;0.456079;2.81499;388196;649712 +2628/3917;Alpha: (mode proxy_server_rpc) RPC regression tests: votes;5.00157;0.904659;5.80981;388200;671528 +2629/3917;Mumbai: (mode proxy_server_rpc) RPC regression tests: votes;4.93938;0.913246;5.75746;388328;671772 +2630/3917;Nairobi: (mode proxy_server_rpc) RPC regression tests: votes;4.87944;0.969078;5.75777;388328;671072 +2631/3917;Alpha: (mode proxy_server_rpc) RPC regression tests: misc_protocol;2.65527;0.481093;3.10116;388204;652368 +2632/3917;Mumbai: (mode proxy_server_rpc) RPC regression tests: misc_protocol;2.31656;0.477228;2.7794;388204;650008 +2633/3917;Nairobi: (mode proxy_server_rpc) RPC regression tests: misc_protocol;2.36317;0.420248;2.76884;388200;650400 +2634/3917;Alpha: (mode proxy_server_rpc) RPC tests: network;1.43151;0.269562;1.68115;388200;561892 +2635/3917;Mumbai: (mode proxy_server_rpc) RPC tests: network;1.41074;0.261589;1.66369;388076;563928 +2636/3917;Nairobi: (mode proxy_server_rpc) RPC tests: network;1.40716;0.272627;1.66955;388200;563228 +2637/3917;Alpha: (mode proxy_server_rpc) RPC tests: deprecated;1.96349;0.371015;2.32193;388196;648056 +2638/3917;Mumbai: (mode proxy_server_rpc) RPC tests: deprecated;1.96356;0.350024;2.30258;388332;648548 +2639/3917;Nairobi: (mode proxy_server_rpc) RPC tests: deprecated;1.92867;0.38964;2.30617;388332;649016 +2640/3917;Test RPC whitelist @ localhost;1.31197;0.203008;1.51888;388072;559684 +2641/3917;Test RPC blacklist @ localhost;1.2668;0.237822;1.50854;388200;558884 +2642/3917;Test RPC no_service_at_valid_prefix @ localhost;1.11103;0.261381;1.37694;374252;544688 +2643/3917;Test RPC node_binary_mode @ localhost;1.18332;0.204825;1.3861;388196;557012 +2644/3917;Test RPC whitelist @ 127.0.0.1;1.23669;0.301175;1.53842;388068;558064 +2645/3917;Test RPC blacklist @ 127.0.0.1;1.32862;0.203671;1.52655;388200;557440 +2646/3917;Test RPC no_service_at_valid_prefix @ 127.0.0.1;1.15902;0.207598;1.36513;388072;556208 +2647/3917;Test RPC node_binary_mode @ 127.0.0.1;1.15757;0.207469;1.36214;374252;542724 +2648/3917;Alpha: Forge consensus operations;2.00038;0.368859;2.36075;388072;564200 +2649/3917;Alpha: Forge pre-consensus operations;1.90469;0.385922;2.28952;374120;549004 +2650/3917;Alpha: Forge double consensus evidence operations;4.06605;0.875819;4.92547;388328;579604 +2651/3917;Alpha: Forge double pre-consensus evidence operations;4.20949;0.755482;4.94683;388068;579648 +2652/3917;Alpha: Forge invalid double consensus evidence operations;3.36597;0.664994;4.01513;388204;573624 +2653/3917;Alpha: Forge invalid double pre-consensus evidence operations;3.3817;0.644965;4.01022;388200;573268 +2654/3917;Alpha: Parse raw consensus operations;2.05155;0.376686;2.42617;388072;563124 +2655/3917;Alpha: Parse raw pre-consensus operations;2.03419;0.390017;2.42178;388068;562732 +2656/3917;Alpha: Parse raw double consensus evidence operations;3.1661;0.66301;3.81867;388076;573244 +2657/3917;Alpha: Parse raw double pre-consensus evidence operations;3.09895;0.722317;3.80866;388068;572672 +2658/3917;Alpha: Pending consensus operations;2.07505;0.373595;2.44668;387944;563304 +2659/3917;Alpha: Pending pre-consensus operations;2.06999;0.390457;2.45734;388200;563216 +2660/3917;Alpha: Pending double consensus evidence operations;3.18752;0.697867;3.87446;388072;572080 +2661/3917;Alpha: Pending double pre-consensus evidence operations;3.19047;0.657433;3.83467;388068;572856 +2662/3917;Alpha: Monitor consensus operations;1.83815;0.388845;2.17609;388064;568524 +2663/3917;Alpha: Monitor pre-consensus operations;1.86399;0.445758;2.25688;388200;571336 +2664/3917;Alpha: Monitor double consensus evidence operations;3.04621;0.630826;3.61102;388072;579892 +2665/3917;Alpha: Monitor double pre-consensus evidence operations;3.08865;0.583479;3.60213;388072;580396 +2666/3917;Alpha: Run operation with consensus operations;2.21293;0.435892;2.64083;388200;566300 +2667/3917;Alpha: Run operation with preconsensus operations;2.18191;0.41887;2.59904;388204;563040 +2668/3917;Alpha: Simulate operation with consensus operations;2.20109;0.41718;2.61691;387944;563524 +2669/3917;Alpha: Simulate operation with preconsensus operations;2.20703;0.400748;2.6043;388068;563280 +2670/3917;Alpha: Run operation with double consensus evidence operations;4.86594;1.0263;5.87156;388068;585904 +2671/3917;Alpha: Run operation with double preconsensus evidence operations;4.90274;0.9858;5.86985;388072;585392 +2672/3917;Alpha: Simulate operation with double consensus evidence operations;5.00033;0.909414;5.89163;388076;585880 +2673/3917;Alpha: Simulate operation with double preconsensus evidence operations;4.87002;1.01401;5.86379;388072;585612 +2674/3917;Alpha: Preapply operation with consensus operations;3.15583;0.727076;3.87108;388200;572204 +2675/3917;Alpha: Preapply operation with preconsensus operations;3.24116;0.630459;3.8589;388076;572380 +2676/3917;Alpha: Preapply operation with double consensus evidence operations;4.62965;0.963338;5.5758;388232;583636 +2677/3917;Alpha: Preapply operation with duoble preconsensus evidence operations;4.70218;0.878176;5.56097;388204;583904 +2678/3917;Alpha: Block consensus operations;3.87292;0.806047;4.65048;388204;576196 +2679/3917;Alpha: Block double consensus evidence operations;4.90666;1.02683;5.88793;388200;584008 +2680/3917;Alpha: Block double preconsensus evidence operations;4.83283;1.05307;5.85177;388328;587004 +2681/3917;Alpha: Block metadata consensus rewards encoding;2.97531;0.555089;3.46443;388196;575944 +2682/3917;Alpha: Reject malformed micheline;1.19114;0.196464;1.38381;388200;557844 +2683/3917;Mumbai: Reject malformed micheline;1.1985;0.186752;1.38747;388200;559208 +2684/3917;Nairobi: Reject malformed micheline;1.16912;0.204326;1.37617;388200;559812 +2685/3917;Alpha: Injecting the same operation twice;3.59011;0.711196;92.3274;387816;938468 +2686/3917;Mumbai: Injecting the same operation twice;3.6646;0.64054;92.3175;388204;941256 +2687/3917;Nairobi: Injecting the same operation twice;3.60149;0.652326;92.2922;387816;938436 +2688/3917;Alpha: Inject two different operations with same gas and fee;3.7208;0.706563;3.44683;388204;940548 +2689/3917;Mumbai: Inject two different operations with same gas and fee;3.71444;0.663156;3.43323;388204;938944 +2690/3917;Nairobi: Inject two different operations with same gas and fee;3.60861;0.741758;3.40609;387408;939460 +2691/3917;Alpha: Second op's fees are below threshold by 1 mutez;3.72755;0.666777;3.4317;387596;940224 +2692/3917;Mumbai: Second op's fees are below threshold by 1 mutez;3.72342;0.66664;3.43259;387664;939228 +2693/3917;Nairobi: Second op's fees are below threshold by 1 mutez;3.67062;0.734418;8.2848;387348;938968 +2694/3917;Alpha: Second op's fees are equal to replacement fees threshold;3.79593;0.730904;3.5789;387820;939876 +2695/3917;Mumbai: Second op's fees are equal to replacement fees threshold;3.85981;0.69167;3.5853;387564;926692 +2696/3917;Nairobi: Second op's fees are equal to replacement fees threshold;3.93827;0.65802;3.60925;388200;940872 +2697/3917;Alpha: Second op's fees are above replacement fees threshold by 1 mutez;3.84097;0.712736;3.58091;387172;939816 +2698/3917;Mumbai: Second op's fees are above replacement fees threshold by 1 mutez;3.90583;0.65635;3.58557;387316;927652 +2699/3917;Nairobi: Second op's fees are above replacement fees threshold by 1 mutez;3.90573;0.68722;3.62497;388000;941308 +2700/3917;Alpha: Replace a replacement requires bumping fees again;4.72442;0.890683;4.65203;373972;920212 +2701/3917;Mumbai: Replace a replacement requires bumping fees again;4.83139;0.86194;4.69947;387560;947404 +2702/3917;Nairobi: Replace a replacement requires bumping fees again;4.73499;0.883384;4.65703;387944;945264 +2703/3917;Alpha: Replace a replacement op with enough fees;4.96388;0.941494;29.7254;388204;946004 +2704/3917;Mumbai: Replace a replacement op with enough fees;4.93456;0.881551;4.83012;387788;948724 +2705/3917;Nairobi: Replace a replacement op with enough fees;4.92407;0.93942;19.6971;387684;934880 +2706/3917;Alpha: Second op's fees are equal to replacement fees. But gas increased;3.75381;0.669136;3.43761;388332;940972 +2707/3917;Mumbai: Second op's fees are equal to replacement fees. But gas increased;3.70162;0.705176;3.44541;388100;940804 +2708/3917;Nairobi: Second op's fees are equal to replacement fees. But gas increased;3.72337;0.679216;3.45592;388204;939060 +2709/3917;Alpha: Second op's gas descreased by 1, but still no enough replacement fees;3.71576;0.691555;3.46007;387028;939176 +2710/3917;Mumbai: Second op's gas descreased by 1, but still no enough replacement fees;3.66218;0.690837;3.40875;388204;939372 +2711/3917;Nairobi: Second op's gas descreased by 1, but still no enough replacement fees;3.7311;0.663685;3.45217;386536;939948 +2712/3917;Alpha: Op2's gas/fee is more important, but fees are not higher than max;3.66776;0.761489;3.46424;387560;939644 +2713/3917;Mumbai: Op2's gas/fee is more important, but fees are not higher than max;3.72306;0.70623;3.45047;387564;939812 +2714/3917;Nairobi: Op2's gas/fee is more important, but fees are not higher than max;3.60203;0.797759;3.44211;387000;939416 +2715/3917;Alpha: Much more fees in second op, but counter in the future;3.72856;0.674112;18.2789;387948;940036 +2716/3917;Mumbai: Much more fees in second op, but counter in the future;3.7558;0.639544;3.44555;387432;940104 +2717/3917;Nairobi: Much more fees in second op, but counter in the future;3.65983;0.744496;3.44503;387664;939956 +2718/3917;Alpha: First operation not validated, second one validated with default fees;3.48749;0.62339;3.15383;387280;937756 +2719/3917;Mumbai: First operation not validated, second one validated with default fees;3.47683;0.620088;3.1308;388204;939448 +2720/3917;Nairobi: First operation not validated, second one validated with default fees;3.44842;0.68077;17.9881;388120;939684 +2721/3917;Alpha: Gas limit doubled in batch. More fees needed;3.6533;0.731271;3.42265;387560;925876 +2722/3917;Mumbai: Gas limit doubled in batch. More fees needed;3.73906;0.642102;3.42579;387668;939988 +2723/3917;Nairobi: Gas limit doubled in batch. More fees needed;3.70735;0.681243;3.42849;387560;940004 +2724/3917;Alpha: 2nd operation's gas limit is constant. Replacement possible.;3.93241;0.689785;18.4606;387816;940780 +2725/3917;Mumbai: 2nd operation's gas limit is constant. Replacement possible.;3.88998;0.689152;3.60985;387948;940624 +2726/3917;Nairobi: 2nd operation's gas limit is constant. Replacement possible.;3.83699;0.708352;3.57598;387752;940584 +2727/3917;Alpha: Replacing a batched operation not possible due to low fees;3.76795;0.689474;3.47976;388200;927184 +2728/3917;Mumbai: Replacing a batched operation not possible due to low fees;3.61245;0.778028;8.29616;388200;939440 +2729/3917;Nairobi: Replacing a batched operation not possible due to low fees;3.7306;0.721052;3.49313;387432;939196 +2730/3917;Alpha: Replacing a batched op is possible if enough fees are provided;3.86073;0.73042;18.452;387436;940916 +2731/3917;Mumbai: Replacing a batched op is possible if enough fees are provided;3.93599;0.654168;3.61031;388076;939912 +2732/3917;Nairobi: Replacing a batched op is possible if enough fees are provided;3.73582;0.823959;3.60588;387688;940312 +2733/3917;Alpha: Low balance - second op's fees are equal to max_int64-1;3.74722;0.698219;3.45639;386792;938864 +2734/3917;Mumbai: Low balance - second op's fees are equal to max_int64-1;3.6747;0.710736;3.43107;387368;939600 +2735/3917;Nairobi: Low balance - second op's fees are equal to max_int64-1;3.72137;0.6997;3.44687;387820;940020 +2736/3917;Alpha: Sum of fees of the 2nd operation overflow on int64;3.6842;0.725056;3.45387;388204;939852 +2737/3917;Mumbai: Sum of fees of the 2nd operation overflow on int64;3.6825;0.733077;18.2986;387944;939808 +2738/3917;Nairobi: Sum of fees of the 2nd operation overflow on int64;3.75221;0.667392;3.43682;388200;941124 +2739/3917;Alpha: Test retro compatibility for format of transfer;1.30234;0.28741;1.42295;199628;281108 +2740/3917;Mumbai: Test retro compatibility for format of transfer;1.3201;0.288431;1.44381;199528;279604 +2741/3917;Nairobi: Test retro compatibility for format of transfer;1.79014;0.455819;1.90004;199840;375652 +2742/3917;Alpha: Test retro compatibility for format of call;1.34134;0.261181;1.43741;200100;281216 +2743/3917;Mumbai: Test retro compatibility for format of call;1.27825;0.326748;1.4356;199712;280996 +2744/3917;Nairobi: Test retro compatibility for format of call;1.82762;0.423045;1.90737;199716;375032 +2745/3917;Alpha: logging configuration RPCs;3.1155;0.614923;3.69131;388204;579004 +2746/3917;Mumbai: logging configuration RPCs;3.10885;0.634331;3.69492;388068;579864 +2747/3917;Nairobi: logging configuration RPCs;3.13849;0.595219;3.68958;388196;580784 +2748/3917;Alpha: Run_operation proposals;1.51474;0.328721;1.83591;388196;560996 +2749/3917;Mumbai: Run_operation proposals;1.52425;0.309425;1.83174;374244;547948 +2750/3917;Nairobi: Run_operation proposals;1.55683;0.306572;1.8625;388196;561460 +2751/3917;Alpha: Run_operation inconsistent sources ko;1.97254;0.356717;2.32102;388456;565248 +2752/3917;Mumbai: Run_operation inconsistent sources ko;1.94516;0.382859;2.31764;388324;565812 +2753/3917;Nairobi: Run_operation inconsistent sources ko;1.9654;0.374103;2.32876;388328;566428 +2754/3917;Alpha: Run_operation inconsistent counters;2.30239;0.467309;2.76738;388200;563496 +2755/3917;Mumbai: Run_operation inconsistent counters;2.3135;0.471818;2.77677;388200;567188 +2756/3917;Nairobi: Run_operation inconsistent counters;2.27602;0.480812;2.7542;388200;562528 +2757/3917;Alpha: Run_operation bad revelations;3.25366;0.650902;3.88673;388076;572428 +2758/3917;Mumbai: Run_operation bad revelations;3.32975;0.562805;3.87107;388072;572040 +2759/3917;Nairobi: Run_operation bad revelations;3.22077;0.6694;3.87132;388200;572368 +2760/3917;Alpha: Run_operation correct batch;1.56218;0.289864;1.8512;388200;561884 +2761/3917;Mumbai: Run_operation correct batch;1.57631;0.273816;1.84843;388196;562236 +2762/3917;Nairobi: Run_operation correct batch;1.54307;0.293159;1.83499;388204;562208 +2763/3917;Alpha: Run_operation misc manager ops from fresh account;3.61876;0.765439;4.36521;388200;576916 +2764/3917;Mumbai: Run_operation misc manager ops from fresh account;3.70933;0.66221;4.35279;388200;576812 +2765/3917;Nairobi: Run_operation misc manager ops from fresh account;3.67132;0.675805;4.32756;388200;577004 +2766/3917;Alpha: Test that failing_noop operations are never validated;3.26983;0.587755;3.85074;388200;570108 +2767/3917;Mumbai: Test that failing_noop operations are never validated;3.17187;0.670875;3.83494;388204;570032 +2768/3917;Nairobi: Test that failing_noop operations are never validated;3.13886;0.707452;3.8393;388072;569932 +2769/3917;Alpha: Run script with balance and self address;1.34169;0.248273;1.58791;198756;194400 +2770/3917;Mumbai: Run script with balance and self address;1.33217;0.24932;1.57965;198944;195192 +2771/3917;Nairobi: Run script with balance and self address;1.30876;0.278965;1.58599;198692;194004 +2772/3917;Alpha: Run script with source and sender;1.47041;0.264636;1.73351;200096;195604 +2773/3917;Mumbai: Run script with source and sender;1.45711;0.285708;1.74161;199588;195584 +2774/3917;Nairobi: Run script with source and sender;1.4689;0.259734;1.72683;199840;195848 +2775/3917;Alpha: Runtime Script Failure: client force;1.88439;0.346663;2.21294;388328;565572 +2776/3917;Mumbai: Runtime Script Failure: client force;1.86396;0.371898;2.21536;388460;566204 +2777/3917;Nairobi: Runtime Script Failure: client force;1.84356;0.3819;2.20781;388196;565884 +2778/3917;Alpha: insufficient_funds.shield;3.26848;0.359905;2.60125;388332;634660 +2779/3917;Mumbai: insufficient_funds.shield;3.17445;0.453515;2.59682;388328;633792 +2780/3917;Nairobi: insufficient_funds.shield;3.28074;0.340324;2.59224;388200;634724 +2781/3917;Alpha: insufficient_funds.transfer;4.04937;0.522121;3.53398;388328;632904 +2782/3917;Mumbai: insufficient_funds.transfer;4.05201;0.494313;3.51863;388456;633140 +2783/3917;Nairobi: insufficient_funds.transfer;4.01354;0.546398;3.53328;388456;633168 +2784/3917;Alpha: insufficient_funds.unshield;14.4549;0.628285;5.11756;374500;757664 +2785/3917;Mumbai: insufficient_funds.unshield;14.2413;0.788607;5.09574;388712;768076 +2786/3917;Nairobi: insufficient_funds.unshield;14.3632;0.636705;5.05482;388332;767720 +2787/3917;Alpha: successful_roundtrip;25.3083;1.16678;8.58712;388460;783244 +2788/3917;Mumbai: successful_roundtrip;25.1852;1.17516;8.47868;388348;781308 +2789/3917;Nairobi: successful_roundtrip;25.3452;1.12242;8.55975;388460;784144 +2790/3917;Alpha: import key in sapling wallet;1.55604;0.380004;1.93202;199064;194456 +2791/3917;Mumbai: import key in sapling wallet;1.58582;0.351024;1.93324;198936;194768 +2792/3917;Nairobi: import key in sapling wallet;1.63896;0.308238;1.94284;198932;195080 +2793/3917;Alpha: address generation in sapling wallet;4.29362;0.857538;5.1424;212116;208640 +2794/3917;Mumbai: address generation in sapling wallet;4.27189;0.8945;5.15439;215116;211044 +2795/3917;Nairobi: address generation in sapling wallet;4.21685;0.910493;5.11926;211864;207944 +2796/3917;Alpha: test sapling with shielded tez;66.7923;2.14145;15.6336;381460;403064 +2797/3917;Mumbai: test sapling with shielded tez;66.8863;1.96298;15.5934;381832;405096 +2798/3917;Nairobi: test sapling with shielded tez;66.7421;2.0348;15.5834;382024;404960 +2799/3917;Alpha: test sapling state corruption;0.824504;0.137041;0.959331;198888;190892 +2800/3917;Mumbai: test sapling state corruption;0.813712;0.148003;0.959967;198756;190720 +2801/3917;Nairobi: test sapling state corruption;0.802269;0.171646;0.972033;199012;190820 +2802/3917;Alpha: test sapling memo size;2.58442;0.56085;3.1392;202148;199732 +2803/3917;Mumbai: test sapling memo size;2.57921;0.547351;3.12042;202192;199576 +2804/3917;Nairobi: test sapling memo size;2.6284;0.5162;3.13667;204312;200976 +2805/3917;Alpha: test sapling different memo size;2.24138;0.294192;1.5251;264764;259656 +2806/3917;Mumbai: test sapling different memo size;2.28058;0.251295;1.53975;264808;260660 +2807/3917;Nairobi: test sapling different memo size;2.32013;0.23596;1.54184;264988;260036 +2808/3917;Alpha: test sapling right memo size;8.10927;0.587795;3.65496;266936;266792 +2809/3917;Mumbai: test sapling right memo size;8.17657;0.520999;3.63217;267124;263516 +2810/3917;Nairobi: test sapling right memo size;8.165;0.516299;3.6374;267000;266528 +2811/3917;Alpha: Tests of Michelson annotations;2.43199;0.571305;3.00103;202152;197844 +2812/3917;Mumbai: Tests of Michelson annotations;2.50154;0.499563;2.99865;202016;198440 +2813/3917;Nairobi: Tests of Michelson annotations;2.52056;0.471399;2.98938;201804;198092 +2814/3917;Alpha: Chain ID Opcode;0.673565;0.135397;0.80776;198628;190532 +2815/3917;Mumbai: Chain ID Opcode;0.692724;0.116837;0.807667;198756;190536 +2816/3917;Nairobi: Chain ID Opcode;0.691045;0.12058;0.80948;198624;190840 +2817/3917;Alpha: Chain ID Authentication;1.08542;0.192499;1.27619;198884;193568 +2818/3917;Mumbai: Chain ID Authentication;1.13086;0.159421;1.28763;198632;193256 +2819/3917;Nairobi: Chain ID Authentication;1.0491;0.231965;1.2797;198884;194020 +2820/3917;Alpha: Test contract execution order.;5.10206;1.15255;6.23621;218280;215820 +2821/3917;Mumbai: Test contract execution order.;5.18075;1.06614;6.23158;218388;214788 +2822/3917;Nairobi: Test contract execution order.;5.09971;1.15589;6.22914;218392;214840 +2823/3917;Alpha: Test script hash regression;0.651646;0.104108;0.752966;221808;213276 +2824/3917;Mumbai: Test script hash regression;0.694844;0.080971;0.77222;222320;213520 +2825/3917;Nairobi: Test script hash regression;0.671338;0.088368;0.756362;222320;213384 +2826/3917;Alpha: Script hash multiple;1.57308;0.29751;1.86864;200860;196128 +2827/3917;Mumbai: Script hash multiple;1.53774;0.363045;1.89885;200740;196500 +2828/3917;Nairobi: Script hash multiple;1.54043;0.342457;1.88112;200868;196396 +2829/3917;Alpha: Manager;6.82908;1.59964;8.41226;222496;220268 +2830/3917;Mumbai: Manager;6.90946;1.55396;8.44726;221220;219072 +2831/3917;Nairobi: Manager;6.84415;1.53401;8.36319;222888;220844 +2832/3917;Alpha: convert script;1.94774;0.406139;2.3521;200996;196556 +2833/3917;Mumbai: convert script;1.96888;0.407641;2.37444;201296;197112 +2834/3917;Nairobi: convert script;1.96627;0.392021;2.3562;200908;196228 +2835/3917;Alpha: convert data;3.52175;0.755296;4.27369;209824;205636 +2836/3917;Mumbai: convert data;3.51848;0.745071;4.2591;210212;205664 +2837/3917;Nairobi: convert data;3.50004;0.769481;4.26475;210084;206220 +2838/3917;Alpha: Test Deprecated Typecheck Breaks - legacy/create_account;0.546799;0.100009;0.643934;197864;186120 +2839/3917;Alpha: Test Deprecated Typecheck in Legacy - legacy/create_account;0.525164;0.122543;0.646263;197856;187884 +2840/3917;Alpha: Test Deprecated Typecheck Breaks - legacy/create_contract;0.572345;0.072365;0.643894;197860;187876 +2841/3917;Alpha: Test Deprecated Typecheck in Legacy - legacy/create_contract;0.549039;0.096391;0.64482;197728;188344 +2842/3917;Alpha: Test Deprecated Typecheck Breaks - legacy/create_contract_flags;0.538411;0.115704;0.650924;197860;186044 +2843/3917;Alpha: Test Deprecated Typecheck in Legacy - legacy/create_contract_flags;0.554925;0.088013;0.641693;197856;188556 +2844/3917;Alpha: Test Deprecated Typecheck Breaks - legacy/create_contract_rootname;0.560707;0.084249;0.644277;197984;188912 +2845/3917;Alpha: Test Deprecated Typecheck in Legacy - legacy/create_contract_rootname;0.577188;0.072254;0.647925;197864;187960 +2846/3917;Alpha: Test Deprecated Typecheck Breaks - legacy/originator;0.573128;0.07591;0.646197;197864;185948 +2847/3917;Alpha: Test Deprecated Typecheck in Legacy - legacy/originator;0.585909;0.068187;0.653047;197860;187800 +2848/3917;Alpha: Test Deprecated Typecheck Breaks - legacy/steps_to_quota;0.552974;0.083864;0.636385;197860;187848 +2849/3917;Alpha: Test Deprecated Typecheck in Legacy - legacy/steps_to_quota;0.545133;0.095945;0.640344;197860;187596 +2850/3917;Mumbai: Test Deprecated Typecheck Breaks - legacy/create_account;0.551672;0.091797;0.642443;197860;188208 +2851/3917;Mumbai: Test Deprecated Typecheck in Legacy - legacy/create_account;0.555776;0.084166;0.639257;197840;188264 +2852/3917;Mumbai: Test Deprecated Typecheck Breaks - legacy/create_contract;0.583216;0.064114;0.646046;197860;188148 +2853/3917;Mumbai: Test Deprecated Typecheck in Legacy - legacy/create_contract;0.550586;0.092125;0.642171;197860;188892 +2854/3917;Mumbai: Test Deprecated Typecheck Breaks - legacy/create_contract_flags;0.565264;0.079405;0.643172;197860;188444 +2855/3917;Mumbai: Test Deprecated Typecheck in Legacy - legacy/create_contract_flags;0.564327;0.083953;0.647102;197988;188672 +2856/3917;Mumbai: Test Deprecated Typecheck Breaks - legacy/create_contract_rootname;0.537439;0.10006;0.636823;197864;188028 +2857/3917;Mumbai: Test Deprecated Typecheck in Legacy - legacy/create_contract_rootname;0.555452;0.091328;0.644665;197984;188320 +2858/3917;Mumbai: Test Deprecated Typecheck Breaks - legacy/originator;0.547154;0.095565;0.642059;197864;188468 +2859/3917;Mumbai: Test Deprecated Typecheck in Legacy - legacy/originator;0.533442;0.107881;0.640574;197988;188448 +2860/3917;Mumbai: Test Deprecated Typecheck Breaks - legacy/steps_to_quota;0.550112;0.088066;0.637602;197864;188316 +2861/3917;Mumbai: Test Deprecated Typecheck in Legacy - legacy/steps_to_quota;0.55624;0.09228;0.64793;197860;188596 +2862/3917;Nairobi: Test Deprecated Typecheck Breaks - legacy/create_account;0.544656;0.107097;0.650424;197992;188496 +2863/3917;Nairobi: Test Deprecated Typecheck in Legacy - legacy/create_account;0.541698;0.096125;0.636493;197988;188516 +2864/3917;Nairobi: Test Deprecated Typecheck Breaks - legacy/create_contract;0.581348;0.068201;0.649007;197864;188508 +2865/3917;Nairobi: Test Deprecated Typecheck in Legacy - legacy/create_contract;0.558455;0.083779;0.641509;197992;188320 +2866/3917;Nairobi: Test Deprecated Typecheck Breaks - legacy/create_contract_flags;0.530796;0.111728;0.64137;197992;188028 +2867/3917;Nairobi: Test Deprecated Typecheck in Legacy - legacy/create_contract_flags;0.543456;0.095817;0.638541;197988;187792 +2868/3917;Nairobi: Test Deprecated Typecheck Breaks - legacy/create_contract_rootname;0.540064;0.099553;0.638642;197864;188544 +2869/3917;Nairobi: Test Deprecated Typecheck in Legacy - legacy/create_contract_rootname;0.544132;0.100729;0.643923;197992;188280 +2870/3917;Nairobi: Test Deprecated Typecheck Breaks - legacy/originator;0.580576;0.072252;0.652228;197992;188592 +2871/3917;Nairobi: Test Deprecated Typecheck in Legacy - legacy/originator;0.54677;0.092609;0.63869;197984;188420 +2872/3917;Nairobi: Test Deprecated Typecheck Breaks - legacy/steps_to_quota;0.54302;0.095829;0.638345;197988;187852 +2873/3917;Nairobi: Test Deprecated Typecheck in Legacy - legacy/steps_to_quota;0.524657;0.119345;0.643437;197988;187984 +2874/3917;Alpha: Test Ill Typecheck - stack_bottom_unfailwithable;0.545939;0.099154;0.644515;197736;188472 +2875/3917;Mumbai: Test Ill Typecheck - stack_bottom_unfailwithable;0.552188;0.092671;0.644443;197864;187880 +2876/3917;Nairobi: Test Ill Typecheck - stack_bottom_unfailwithable;0.573682;0.068075;0.640873;197860;188260 +2877/3917;Alpha: Test Ill Typecheck - stack_bottom_unrightable;0.551464;0.087541;0.638478;197732;187660 +2878/3917;Mumbai: Test Ill Typecheck - stack_bottom_unrightable;0.552259;0.087303;0.638994;197860;188256 +2879/3917;Nairobi: Test Ill Typecheck - stack_bottom_unrightable;0.574982;0.075843;0.65006;197992;188084 +2880/3917;Alpha: Test Ill Typecheck - stack_bottom_unleftable;0.555678;0.087698;0.642541;197856;187800 +2881/3917;Mumbai: Test Ill Typecheck - stack_bottom_unleftable;0.558708;0.095807;0.651615;197856;186772 +2882/3917;Nairobi: Test Ill Typecheck - stack_bottom_unleftable;0.579669;0.068841;0.646058;197988;188092 +2883/3917;Alpha: Test Ill Typecheck - stack_bottom_ungetable;0.564582;0.07991;0.643631;197732;188156 +2884/3917;Mumbai: Test Ill Typecheck - stack_bottom_ungetable;0.554034;0.083848;0.637519;197988;188200 +2885/3917;Nairobi: Test Ill Typecheck - stack_bottom_ungetable;0.557352;0.092569;0.647539;198248;186536 +2886/3917;Alpha: Test Ill Typecheck - stack_bottom_unpairable;0.575622;0.075855;0.650762;197732;188136 +2887/3917;Mumbai: Test Ill Typecheck - stack_bottom_unpairable;0.558876;0.079184;0.637569;197856;188212 +2888/3917;Nairobi: Test Ill Typecheck - stack_bottom_unpairable;0.533285;0.108334;0.640974;197988;187764 +2889/3917;Alpha: Test Ill Typecheck - stack_bottom_undug2able;0.557219;0.091295;0.645835;197860;186236 +2890/3917;Mumbai: Test Ill Typecheck - stack_bottom_undug2able;0.57761;0.068113;0.645441;197860;188420 +2891/3917;Nairobi: Test Ill Typecheck - stack_bottom_undug2able;0.584969;0.056052;0.640177;197984;187924 +2892/3917;Alpha: Test Ill Typecheck - stack_bottom_undugable;0.556874;0.083803;0.639987;197736;187820 +2893/3917;Mumbai: Test Ill Typecheck - stack_bottom_undugable;0.547966;0.095232;0.642445;197864;188416 +2894/3917;Nairobi: Test Ill Typecheck - stack_bottom_undugable;0.553829;0.087973;0.641493;197988;188024 +2895/3917;Alpha: Test Ill Typecheck - stack_bottom_undig2able;0.524841;0.116056;0.640149;197732;188376 +2896/3917;Mumbai: Test Ill Typecheck - stack_bottom_undig2able;0.511031;0.135709;0.646177;197856;188316 +2897/3917;Nairobi: Test Ill Typecheck - stack_bottom_undig2able;0.547389;0.092883;0.639871;197992;188024 +2898/3917;Alpha: Test Ill Typecheck - stack_bottom_undigable;0.560736;0.091627;0.652006;197732;187596 +2899/3917;Mumbai: Test Ill Typecheck - stack_bottom_undigable;0.559717;0.08394;0.643016;197860;188236 +2900/3917;Nairobi: Test Ill Typecheck - stack_bottom_undigable;0.548986;0.100153;0.64863;197988;188088 +2901/3917;Alpha: Test Ill Typecheck - stack_bottom_undip2able;0.556267;0.08809;0.643591;197736;188132 +2902/3917;Mumbai: Test Ill Typecheck - stack_bottom_undip2able;0.540655;0.103182;0.642939;197860;188532 +2903/3917;Nairobi: Test Ill Typecheck - stack_bottom_undip2able;0.5413;0.100757;0.641692;197988;187948 +2904/3917;Alpha: Test Ill Typecheck - stack_bottom_undipable;0.568957;0.072039;0.640432;197860;188216 +2905/3917;Mumbai: Test Ill Typecheck - stack_bottom_undipable;0.534106;0.108296;0.641891;197860;188644 +2906/3917;Nairobi: Test Ill Typecheck - stack_bottom_undipable;0.546782;0.104299;0.647922;197988;186568 +2907/3917;Alpha: Test Ill Typecheck - stack_bottom_undup2able;0.541811;0.119874;0.659245;197856;186500 +2908/3917;Mumbai: Test Ill Typecheck - stack_bottom_undup2able;0.578466;0.075691;0.651294;197864;186588 +2909/3917;Nairobi: Test Ill Typecheck - stack_bottom_undup2able;0.565857;0.08386;0.647108;197992;186268 +2910/3917;Alpha: Test Ill Typecheck - stack_bottom_undropable;0.56279;0.088052;0.648263;197860;186268 +2911/3917;Mumbai: Test Ill Typecheck - stack_bottom_undropable;0.549748;0.100261;0.647143;197860;186816 +2912/3917;Nairobi: Test Ill Typecheck - stack_bottom_undropable;0.563879;0.080311;0.641365;197988;186304 +2913/3917;Alpha: Test Ill Typecheck - stack_bottom_unpopable;0.537706;0.115908;0.650861;197732;186512 +2914/3917;Mumbai: Test Ill Typecheck - stack_bottom_unpopable;0.559006;0.095983;0.652342;197860;186852 +2915/3917;Nairobi: Test Ill Typecheck - stack_bottom_unpopable;0.555039;0.094987;0.647456;197988;186376 +2916/3917;Alpha: Test Ill Typecheck - stack_bottom_unpopable_in_lambda;0.542203;0.099832;0.639511;197736;185964 +2917/3917;Mumbai: Test Ill Typecheck - stack_bottom_unpopable_in_lambda;0.551223;0.100246;0.648996;197856;186708 +2918/3917;Nairobi: Test Ill Typecheck - stack_bottom_unpopable_in_lambda;0.552843;0.103402;0.653285;197860;186128 +2919/3917;Alpha: Test Ill Typecheck - pack_operation;0.538091;0.09641;0.633765;197860;188360 +2920/3917;Mumbai: Test Ill Typecheck - pack_operation;0.57595;0.072052;0.64548;197856;186860 +2921/3917;Nairobi: Test Ill Typecheck - pack_operation;0.577526;0.067544;0.644596;197988;187692 +2922/3917;Alpha: Test Ill Typecheck - pack_big_map;0.545198;0.092386;0.637077;197860;188080 +2923/3917;Mumbai: Test Ill Typecheck - pack_big_map;0.548202;0.084221;0.631796;197860;188004 +2924/3917;Nairobi: Test Ill Typecheck - pack_big_map;0.549292;0.093166;0.642112;197984;188124 +2925/3917;Alpha: Test Ill Typecheck - invalid_self_entrypoint;0.552826;0.096096;0.648243;197732;188052 +2926/3917;Mumbai: Test Ill Typecheck - invalid_self_entrypoint;0.539835;0.103988;0.642997;197732;188224 +2927/3917;Nairobi: Test Ill Typecheck - invalid_self_entrypoint;0.545032;0.095222;0.639754;197988;188380 +2928/3917;Alpha: Test Ill Typecheck - contract_annotation_default;0.554886;0.091611;0.645724;197736;187944 +2929/3917;Mumbai: Test Ill Typecheck - contract_annotation_default;0.548127;0.092613;0.640188;197860;188596 +2930/3917;Nairobi: Test Ill Typecheck - contract_annotation_default;0.551391;0.095975;0.647071;197988;188008 +2931/3917;Alpha: Test Ill Typecheck - missing_only_storage_field;0.553167;0.092128;0.64479;197864;188348 +2932/3917;Mumbai: Test Ill Typecheck - missing_only_storage_field;0.545258;0.095179;0.639959;197984;188404 +2933/3917;Nairobi: Test Ill Typecheck - missing_only_storage_field;0.578462;0.071924;0.649735;197988;188072 +2934/3917;Alpha: Test Ill Typecheck - missing_only_code_field;0.550353;0.095741;0.645523;197864;187928 +2935/3917;Mumbai: Test Ill Typecheck - missing_only_code_field;0.529933;0.115901;0.643072;197864;186448 +2936/3917;Nairobi: Test Ill Typecheck - missing_only_code_field;0.543861;0.099978;0.643119;197988;187772 +2937/3917;Alpha: Test Ill Typecheck - missing_only_parameter_field;0.527077;0.113741;0.640185;197732;188416 +2938/3917;Mumbai: Test Ill Typecheck - missing_only_parameter_field;0.539397;0.099622;0.638328;197860;188436 +2939/3917;Nairobi: Test Ill Typecheck - missing_only_parameter_field;0.566891;0.080142;0.644541;197988;186308 +2940/3917;Alpha: Test Ill Typecheck - missing_parameter_and_storage_fields;0.541608;0.105055;0.646146;197864;188132 +2941/3917;Mumbai: Test Ill Typecheck - missing_parameter_and_storage_fields;0.545117;0.100095;0.6448;197992;188292 +2942/3917;Nairobi: Test Ill Typecheck - missing_parameter_and_storage_fields;0.540962;0.103905;0.64426;197988;188256 +2943/3917;Alpha: Test Ill Typecheck - multiple_parameter_field;0.549494;0.08838;0.637413;197856;187544 +2944/3917;Mumbai: Test Ill Typecheck - multiple_parameter_field;0.561121;0.075864;0.636257;197860;188528 +2945/3917;Nairobi: Test Ill Typecheck - multiple_parameter_field;0.549256;0.096064;0.6447;198116;188368 +2946/3917;Alpha: Test Ill Typecheck - multiple_code_field;0.548673;0.091377;0.639313;197856;187832 +2947/3917;Mumbai: Test Ill Typecheck - multiple_code_field;0.562047;0.083791;0.645288;197856;188088 +2948/3917;Nairobi: Test Ill Typecheck - multiple_code_field;0.531557;0.103813;0.63489;197984;187788 +2949/3917;Alpha: Test Ill Typecheck - multiple_storage_field;0.540935;0.100336;0.640887;197864;188224 +2950/3917;Mumbai: Test Ill Typecheck - multiple_storage_field;0.546111;0.09993;0.643297;197864;186540 +2951/3917;Nairobi: Test Ill Typecheck - multiple_storage_field;0.531635;0.10714;0.63812;197988;187932 +2952/3917;Alpha: Test Ill Typecheck - multiple_storage_and_code_fields;0.556044;0.075978;0.631462;197860;187928 +2953/3917;Mumbai: Test Ill Typecheck - multiple_storage_and_code_fields;0.546322;0.092942;0.638635;197856;188500 +2954/3917;Nairobi: Test Ill Typecheck - multiple_storage_and_code_fields;0.565147;0.088077;0.650826;197856;186264 +2955/3917;Alpha: Test Ill Typecheck - set_update_non_comparable;0.554675;0.084305;0.638127;197736;187556 +2956/3917;Mumbai: Test Ill Typecheck - set_update_non_comparable;0.541864;0.096299;0.637588;197864;188148 +2957/3917;Nairobi: Test Ill Typecheck - set_update_non_comparable;0.559447;0.079865;0.638573;197988;188560 +2958/3917;Alpha: Test Ill Typecheck - chain_id_arity;0.572635;0.075765;0.647949;197732;188212 +2959/3917;Mumbai: Test Ill Typecheck - chain_id_arity;0.585362;0.059989;0.644738;197992;188604 +2960/3917;Nairobi: Test Ill Typecheck - chain_id_arity;0.556849;0.079789;0.635987;197984;187856 +2961/3917;Alpha: Test Ill Typecheck - big_dip;0.552209;0.095418;0.647187;197732;188192 +2962/3917;Mumbai: Test Ill Typecheck - big_dip;0.541824;0.104396;0.645653;197856;187988 +2963/3917;Nairobi: Test Ill Typecheck - big_dip;0.531099;0.112036;0.642498;197988;188244 +2964/3917;Alpha: Test Ill Typecheck - big_drop;0.562415;0.08775;0.649484;197860;188148 +2965/3917;Mumbai: Test Ill Typecheck - big_drop;0.566486;0.075847;0.641856;197860;188080 +2966/3917;Nairobi: Test Ill Typecheck - big_drop;0.56933;0.071084;0.63988;197988;187992 +2967/3917;Alpha: Test Ill Typecheck - never_literal;0.548138;0.092859;0.64049;197856;187860 +2968/3917;Mumbai: Test Ill Typecheck - never_literal;0.538904;0.111898;0.650035;197860;188712 +2969/3917;Nairobi: Test Ill Typecheck - never_literal;0.558353;0.092056;0.647651;198120;186304 +2970/3917;Alpha: Test Ill Typecheck - comb0;0.574304;0.072286;0.646147;197864;188152 +2971/3917;Mumbai: Test Ill Typecheck - comb0;0.559955;0.084013;0.643146;197856;188440 +2972/3917;Nairobi: Test Ill Typecheck - comb0;0.55339;0.087813;0.640572;197984;187972 +2973/3917;Alpha: Test Ill Typecheck - comb1;0.574944;0.076029;0.648191;197864;186068 +2974/3917;Mumbai: Test Ill Typecheck - comb1;0.528784;0.112033;0.639995;197860;188524 +2975/3917;Nairobi: Test Ill Typecheck - comb1;0.561;0.083844;0.644072;197992;188052 +2976/3917;Alpha: Test Ill Typecheck - uncomb0;0.561562;0.084258;0.64535;197732;188116 +2977/3917;Mumbai: Test Ill Typecheck - uncomb0;0.547738;0.103713;0.649011;197860;186628 +2978/3917;Nairobi: Test Ill Typecheck - uncomb0;0.544362;0.107073;0.65083;197988;188624 +2979/3917;Alpha: Test Ill Typecheck - uncomb1;0.565126;0.080413;0.64509;197992;187688 +2980/3917;Mumbai: Test Ill Typecheck - uncomb1;0.532172;0.112124;0.643739;197860;187968 +2981/3917;Nairobi: Test Ill Typecheck - uncomb1;0.543138;0.10008;0.64062;197988;186156 +2982/3917;Alpha: Test Ill Typecheck - dup0;0.55841;0.084004;0.641933;197856;187844 +2983/3917;Mumbai: Test Ill Typecheck - dup0;0.536649;0.10756;0.643807;197864;188528 +2984/3917;Nairobi: Test Ill Typecheck - dup0;0.543317;0.095975;0.638835;197992;188152 +2985/3917;Alpha: Test Ill Typecheck - push_big_map_with_id_with_parens;0.519347;0.123726;0.642405;197736;188288 +2986/3917;Mumbai: Test Ill Typecheck - push_big_map_with_id_with_parens;0.550714;0.091946;0.642315;197864;188064 +2987/3917;Nairobi: Test Ill Typecheck - push_big_map_with_id_with_parens;0.55722;0.095589;0.650051;197984;186244 +2988/3917;Alpha: Test Ill Typecheck - push_big_map_with_id_without_parens;0.533274;0.116886;0.647266;197860;185960 +2989/3917;Mumbai: Test Ill Typecheck - push_big_map_with_id_without_parens;0.57948;0.072621;0.649937;197860;186456 +2990/3917;Nairobi: Test Ill Typecheck - push_big_map_with_id_without_parens;0.572618;0.088749;0.658523;198116;186380 +2991/3917;Alpha: Test Ill Typecheck - pack_sapling_state;0.563894;0.083702;0.645074;197860;186140 +2992/3917;Mumbai: Test Ill Typecheck - pack_sapling_state;0.536077;0.120248;0.653418;197988;186400 +2993/3917;Nairobi: Test Ill Typecheck - pack_sapling_state;0.551116;0.098959;0.64735;197992;186280 +2994/3917;Alpha: Test Ill Typecheck - unpack_sapling_state;0.563851;0.088059;0.649321;197860;186320 +2995/3917;Mumbai: Test Ill Typecheck - unpack_sapling_state;0.558515;0.091747;0.647665;197864;186536 +2996/3917;Nairobi: Test Ill Typecheck - unpack_sapling_state;0.550578;0.092103;0.63975;198120;186216 +2997/3917;Alpha: Test Ill Typecheck - ticket_dup;0.535531;0.116918;0.64989;197860;186060 +2998/3917;Mumbai: Test Ill Typecheck - ticket_dup;0.580184;0.076005;0.653513;197864;186756 +2999/3917;Nairobi: Test Ill Typecheck - ticket_dup;0.556791;0.096466;0.650843;198112;186304 +3000/3917;Alpha: Test Ill Typecheck - ticket_unpack;0.557457;0.084581;0.641373;197736;187632 +3001/3917;Mumbai: Test Ill Typecheck - ticket_unpack;0.55118;0.091707;0.642161;197864;188468 +3002/3917;Nairobi: Test Ill Typecheck - ticket_unpack;0.527866;0.115324;0.642515;197988;188012 +3003/3917;Alpha: Test Ill Typecheck - ticket_apply;0.553883;0.088245;0.641638;197856;188296 +3004/3917;Mumbai: Test Ill Typecheck - ticket_apply;0.541497;0.100177;0.640811;197864;188252 +3005/3917;Nairobi: Test Ill Typecheck - ticket_apply;0.554746;0.092505;0.646838;197988;187816 +3006/3917;Alpha: Test Ill Typecheck - ticket_in_ticket;0.548725;0.092025;0.639171;197732;187872 +3007/3917;Mumbai: Test Ill Typecheck - ticket_in_ticket;0.536691;0.111132;0.647697;197860;188244 +3008/3917;Nairobi: Test Ill Typecheck - ticket_in_ticket;0.545823;0.098358;0.643418;197992;187968 +3009/3917;Alpha: Test Ill Typecheck - dip_failwith;0.540699;0.103661;0.643648;197736;187916 +3010/3917;Mumbai: Test Ill Typecheck - dip_failwith;0.536509;0.099921;0.635709;198120;188444 +3011/3917;Nairobi: Test Ill Typecheck - dip_failwith;0.531082;0.112967;0.643415;197992;188228 +3012/3917;Alpha: Test Ill Typecheck - map_failwith;0.562238;0.080131;0.639416;197860;185832 +3013/3917;Mumbai: Test Ill Typecheck - map_failwith;0.556086;0.083674;0.639027;197732;188460 +3014/3917;Nairobi: Test Ill Typecheck - map_failwith;0.548476;0.096059;0.644019;198116;187864 +3015/3917;Mumbai: Test deprecated instructions typecheck conditionally - timelock;0.698232;0.095873;0.79349;197860;189744 +3016/3917;Alpha: Rollup node exit if at initialisation, there is one or multiple preimage(s) missing.;1.11191;0.285379;1.39102;388072;558076 +3017/3917;Mumbai: Rollup node exit if at initialisation, there is one or multiple preimage(s) missing.;1.13539;0.243966;1.37306;388200;558164 +3018/3917;Nairobi: Rollup node exit if at initialisation, there is one or multiple preimage(s) missing.;1.17214;0.211338;1.37725;388204;557584 +3019/3917;Alpha: wasm_2_0_0 - configuration of a smart rollup node is robust;2.16492;0.418138;2.56912;388328;567392 +3020/3917;Mumbai: wasm_2_0_0 - configuration of a smart rollup node is robust;2.16623;0.454511;2.60509;374368;553112 +3021/3917;Nairobi: wasm_2_0_0 - configuration of a smart rollup node is robust;2.16859;0.418924;2.57375;388088;567672 +3022/3917;Alpha: list originated rollups;4.36637;0.730101;4.97752;388328;588576 +3023/3917;Mumbai: list originated rollups;4.28733;0.790718;4.95607;374500;574188 +3024/3917;Nairobi: list originated rollups;4.26145;0.844621;4.99168;374244;574948 +3025/3917;Alpha: test the client wallet for smart rollup;4.89257;0.823034;5.5971;388332;592668 +3026/3917;Mumbai: test the client wallet for smart rollup;4.7568;0.968673;5.60527;388460;592660 +3027/3917;Nairobi: test the client wallet for smart rollup;4.882;0.878898;5.64849;388332;589916 +3028/3917;Alpha: wasm_2_0_0 - rollup client wallet is valid (show address);1.56196;0.270809;1.81018;388328;562984 +3029/3917;Mumbai: wasm_2_0_0 - rollup client wallet is valid (show address);1.55581;0.295139;1.82847;388328;563700 +3030/3917;Nairobi: wasm_2_0_0 - rollup client wallet is valid (show address);1.48391;0.330311;1.80891;388328;564880 +3031/3917;Alpha: wasm_2_0_0 - rollup client wallet is valid (gen address);1.55154;0.325122;1.86675;388332;564340 +3032/3917;Mumbai: wasm_2_0_0 - rollup client wallet is valid (gen address);1.55391;0.332631;1.87737;388332;564760 +3033/3917;Nairobi: wasm_2_0_0 - rollup client wallet is valid (gen address);1.54605;0.321612;1.85902;388328;565368 +3034/3917;Alpha: wasm_2_0_0 - rollup client wallet is valid (list alias);1.54675;0.276025;1.81372;388172;564852 +3035/3917;Mumbai: wasm_2_0_0 - rollup client wallet is valid (list alias);1.51518;0.304201;1.81262;388452;564904 +3036/3917;Nairobi: wasm_2_0_0 - rollup client wallet is valid (list alias);1.50721;0.323235;1.82242;388460;565340 +3037/3917;Alpha: arith - rollup with a commitment dispute (valid dispute dissection);11.8273;2.25669;13.6825;388200;632736 +3038/3917;Mumbai: arith - rollup with a commitment dispute (valid dispute dissection);11.8267;2.31163;13.7122;388328;633496 +3039/3917;Nairobi: arith - rollup with a commitment dispute (valid dispute dissection);11.8007;2.30456;13.685;388192;628184 +3040/3917;Alpha: arith - participant of a refutation game are slashed/rewarded;6.14444;1.266;7.28203;388200;602768 +3041/3917;Mumbai: arith - participant of a refutation game are slashed/rewarded;6.24492;1.2217;7.35387;388328;599560 +3042/3917;Nairobi: arith - participant of a refutation game are slashed/rewarded;6.11735;1.25952;7.27049;388180;599512 +3043/3917;Alpha: arith - rollup with a commitment dispute (timeout);12.6777;2.60195;14.7811;388188;639568 +3044/3917;Mumbai: arith - rollup with a commitment dispute (timeout);12.8309;2.52885;14.8085;374500;625364 +3045/3917;Nairobi: arith - rollup with a commitment dispute (timeout);12.7483;2.52666;14.7548;388328;639748 +3046/3917;Alpha: arith - rollup with a commitment dispute (publish, and cement on wrong commitment);13.8266;2.70853;15.9743;388332;636084 +3047/3917;Mumbai: arith - rollup with a commitment dispute (publish, and cement on wrong commitment);13.5834;2.89014;15.8791;388580;635856 +3048/3917;Nairobi: arith - rollup with a commitment dispute (publish, and cement on wrong commitment);13.7307;2.693;15.8776;374504;624388 +3049/3917;Alpha: arith - refutation games winning strategies (inbox_proof_at_genesis);10.7033;2.10604;11.7668;388200;768524 +3050/3917;Mumbai: arith - refutation games winning strategies (inbox_proof_at_genesis);10.6154;2.11524;11.716;388460;770620 +3051/3917;Nairobi: arith - refutation games winning strategies (inbox_proof_at_genesis);10.6829;2.16444;11.7722;388460;770060 +3052/3917;Alpha: arith - refutation games winning strategies (pvm_proof_at_genesis);10.7104;2.16799;11.8397;388192;770068 +3053/3917;Mumbai: arith - refutation games winning strategies (pvm_proof_at_genesis);10.7431;2.10099;11.8084;388332;769740 +3054/3917;Nairobi: arith - refutation games winning strategies (pvm_proof_at_genesis);10.6274;2.19949;11.8021;388200;768024 +3055/3917;Alpha: arith - refutation games winning strategies (inbox_proof);10.7704;2.12106;11.785;388328;770040 +3056/3917;Mumbai: arith - refutation games winning strategies (inbox_proof);10.8199;2.0223;11.8126;388328;770252 +3057/3917;Nairobi: arith - refutation games winning strategies (inbox_proof);10.7083;2.07359;11.7604;388324;769948 +3058/3917;Alpha: arith - refutation games winning strategies (inbox_proof_with_new_content);29.6621;5.97199;33.2349;388460;772816 +3059/3917;Mumbai: arith - refutation games winning strategies (inbox_proof_with_new_content);30.4564;6.06949;33.1431;388332;772496 +3060/3917;Nairobi: arith - refutation games winning strategies (inbox_proof_with_new_content);29.8871;5.68291;33.1653;387988;772384 +3061/3917;Alpha: arith - refutation games winning strategies (inbox_proof_one_empty_level);10.765;2.04093;11.7966;388200;770232 +3062/3917;Mumbai: arith - refutation games winning strategies (inbox_proof_one_empty_level);10.6556;2.16523;11.7928;388456;769668 +3063/3917;Nairobi: arith - refutation games winning strategies (inbox_proof_one_empty_level);10.7111;2.08829;11.7776;388072;770972 +3064/3917;Alpha: arith - refutation games winning strategies (inbox_proof_many_empty_levels);10.6589;2.10243;11.7322;374372;755120 +3065/3917;Mumbai: arith - refutation games winning strategies (inbox_proof_many_empty_levels);10.5678;2.28171;11.8161;388324;770020 +3066/3917;Nairobi: arith - refutation games winning strategies (inbox_proof_many_empty_levels);10.5933;2.14789;11.7546;388328;770868 +3067/3917;Alpha: arith - refutation games winning strategies (pvm_proof_0);10.7375;2.02513;11.7702;374376;756320 +3068/3917;Mumbai: arith - refutation games winning strategies (pvm_proof_0);10.6795;2.17804;11.8321;388324;767216 +3069/3917;Nairobi: arith - refutation games winning strategies (pvm_proof_0);10.5763;2.21614;11.7348;388200;765872 +3070/3917;Alpha: arith - refutation games winning strategies (pvm_proof_1);10.6095;2.20151;11.7719;388196;770876 +3071/3917;Mumbai: arith - refutation games winning strategies (pvm_proof_1);10.6876;2.16773;11.7839;374504;756656 +3072/3917;Nairobi: arith - refutation games winning strategies (pvm_proof_1);10.7345;2.10254;11.8162;388188;768876 +3073/3917;Alpha: arith - refutation games winning strategies (pvm_proof_2);10.1885;2.05875;11.2688;388200;769440 +3074/3917;Mumbai: arith - refutation games winning strategies (pvm_proof_2);10.2182;2.12373;11.3217;388328;767052 +3075/3917;Nairobi: arith - refutation games winning strategies (pvm_proof_2);10.3062;1.96345;11.2677;374244;750352 +3076/3917;Alpha: arith - refutation games winning strategies (pvm_proof_3);10.1256;2.10953;11.2779;388196;768272 +3077/3917;Mumbai: arith - refutation games winning strategies (pvm_proof_3);10.2256;2.02762;11.2496;388456;767764 +3078/3917;Nairobi: arith - refutation games winning strategies (pvm_proof_3);10.1758;2.11059;11.2666;388332;768292 +3079/3917;Alpha: arith - refutation games winning strategies (timeout);10.6591;2.11213;11.7469;374376;756296 +3080/3917;Mumbai: arith - refutation games winning strategies (timeout);10.6824;2.11864;11.7749;388192;766388 +3081/3917;Nairobi: arith - refutation games winning strategies (timeout);10.7657;2.05521;11.7658;388332;770380 +3082/3917;Alpha: arith - refutation games winning strategies (reset_honest_during_game);10.9267;2.19984;11.7964;388204;767292 +3083/3917;Mumbai: arith - refutation games winning strategies (reset_honest_during_game);10.7651;2.30413;11.7916;388456;767060 +3084/3917;Nairobi: arith - refutation games winning strategies (reset_honest_during_game);10.8997;2.15155;11.781;374376;753744 +3085/3917;Alpha: arith - refutation games winning strategies (degraded_new);10.4094;2.14016;11.6054;388328;768020 +3086/3917;Mumbai: arith - refutation games winning strategies (degraded_new);10.4978;2.11191;11.6327;388324;764944 +3087/3917;Nairobi: arith - refutation games winning strategies (degraded_new);10.8063;2.126;11.949;388196;768636 +3088/3917;Alpha: arith - refutation games winning strategies (degraded_ongoing);10.3349;2.27536;11.6471;388324;769520 +3089/3917;Mumbai: arith - refutation games winning strategies (degraded_ongoing);10.4703;2.13533;11.6203;388328;769692 +3090/3917;Nairobi: arith - refutation games winning strategies (degraded_ongoing);10.4454;2.17749;11.6106;388320;768612 +3091/3917;Alpha: arith - refutation games winning strategies (parallel_games_0);11.1479;2.3235;11.8163;388200;846964 +3092/3917;Mumbai: arith - refutation games winning strategies (parallel_games_0);11.3024;2.26864;11.8483;388328;846256 +3093/3917;Nairobi: arith - refutation games winning strategies (parallel_games_0);11.1646;2.30975;11.7963;388192;846360 +3094/3917;Alpha: arith - refutation games winning strategies (parallel_games_1);11.7538;2.4278;11.8173;388200;922448 +3095/3917;Mumbai: arith - refutation games winning strategies (parallel_games_1);11.899;2.30145;11.8766;388140;920272 +3096/3917;Nairobi: arith - refutation games winning strategies (parallel_games_1);11.7506;2.40411;11.7862;388200;922464 +3097/3917;Alpha: wasm_2_0_0 - refutation games winning strategies (inbox_proof_0);15.2288;3.0238;16.3136;388328;809920 +3098/3917;Mumbai: wasm_2_0_0 - refutation games winning strategies (inbox_proof_0);15.2469;3.04037;16.3074;388328;808720 +3099/3917;Nairobi: wasm_2_0_0 - refutation games winning strategies (inbox_proof_0);15.3443;3.06518;16.4002;388328;809580 +3100/3917;Alpha: wasm_2_0_0 - refutation games winning strategies (inbox_proof_1);15.2964;3.12393;16.3166;388328;807752 +3101/3917;Mumbai: wasm_2_0_0 - refutation games winning strategies (inbox_proof_1);15.3346;3.02979;16.3192;388452;809324 +3102/3917;Nairobi: wasm_2_0_0 - refutation games winning strategies (inbox_proof_1);15.2561;3.13946;16.3211;388324;808776 +3103/3917;Alpha: wasm_2_0_0 - refutation games winning strategies (pvm_proof_0);15.2249;3.06573;16.3235;388072;809760 +3104/3917;Mumbai: wasm_2_0_0 - refutation games winning strategies (pvm_proof_0);15.3794;2.98099;16.3357;388332;809996 +3105/3917;Nairobi: wasm_2_0_0 - refutation games winning strategies (pvm_proof_0);15.1935;3.03515;16.3198;388204;809256 +3106/3917;Alpha: wasm_2_0_0 - refutation games winning strategies (pvm_proof_1);15.285;2.96499;16.31;388204;809612 +3107/3917;Mumbai: wasm_2_0_0 - refutation games winning strategies (pvm_proof_1);15.3106;2.99119;16.3473;388452;810096 +3108/3917;Nairobi: wasm_2_0_0 - refutation games winning strategies (pvm_proof_1);15.3231;3.13744;16.3594;388200;809712 +3109/3917;Alpha: wasm_2_0_0 - refutation games winning strategies (pvm_proof_2);15.4355;2.90135;16.3333;388204;809828 +3110/3917;Mumbai: wasm_2_0_0 - refutation games winning strategies (pvm_proof_2);15.1772;3.01193;16.3201;388196;811524 +3111/3917;Nairobi: wasm_2_0_0 - refutation games winning strategies (pvm_proof_2);15.0461;3.11723;16.3119;388332;810456 +3112/3917;Alpha: wasm_2_0_0 - refutation games winning strategies (pvm_proof_3);15.2317;3.09172;16.299;388200;810060 +3113/3917;Mumbai: wasm_2_0_0 - refutation games winning strategies (pvm_proof_3);15.4452;2.92476;16.3241;388328;810680 +3114/3917;Nairobi: wasm_2_0_0 - refutation games winning strategies (pvm_proof_3);15.2944;3.16461;16.327;388456;809564 +3115/3917;Alpha: wasm_2_0_0 - refutation games winning strategies (parallel_games_0);17.7113;3.47872;17.1133;388200;934808 +3116/3917;Mumbai: wasm_2_0_0 - refutation games winning strategies (parallel_games_0);17.8743;3.40298;17.1444;388332;932888 +3117/3917;Nairobi: wasm_2_0_0 - refutation games winning strategies (parallel_games_0);17.7251;3.41874;17.1413;388324;933900 +3118/3917;Alpha: wasm_2_0_0 - refutation games winning strategies (parallel_games_1);20.7222;3.82002;18.0353;388328;1046448 +3119/3917;Mumbai: wasm_2_0_0 - refutation games winning strategies (parallel_games_1);20.155;3.77565;17.9071;388332;1046528 +3120/3917;Nairobi: wasm_2_0_0 - refutation games winning strategies (parallel_games_1);20.2742;3.65644;17.9772;388200;1046536 +3121/3917;Alpha: arith - recover bond of stakers;7.59782;1.424;8.78432;388200;613420 +3122/3917;Mumbai: arith - recover bond of stakers;7.55853;1.50657;8.8119;388580;611872 +3123/3917;Nairobi: arith - recover bond of stakers;7.5849;1.49579;8.82957;388324;612820 +3124/3917;Alpha: arith - boot_sector is correctly set;1.87708;0.340049;2.18498;388324;577964 +3125/3917;Mumbai: arith - boot_sector is correctly set;1.91669;0.338424;2.21906;388328;578404 +3126/3917;Nairobi: arith - boot_sector is correctly set;1.90417;0.326195;2.19719;388332;578884 +3127/3917;Alpha: arith - boot sector is evaluated;2.28052;0.424243;2.67105;388200;569916 +3128/3917;Mumbai: arith - boot sector is evaluated;2.35936;0.37271;2.69775;388196;569400 +3129/3917;Nairobi: arith - boot sector is evaluated;2.28351;0.425545;2.67488;388328;570468 +3130/3917;Alpha: arith - reveal data fails with wrong hash;1.90499;0.308453;2.16565;388196;639176 +3131/3917;Mumbai: arith - reveal data fails with wrong hash;1.86744;0.332004;2.15478;388196;639424 +3132/3917;Nairobi: arith - reveal data fails with wrong hash;1.85283;0.369967;2.17476;388068;639672 +3133/3917;Alpha: arith - reveal data fails with unknown hash;11.4073;2.31345;12.7307;374500;696848 +3134/3917;Nairobi: arith - reveal data fails with unknown hash;11.4536;2.33307;12.7698;388192;709412 +3135/3917;Alpha: arith - reveal 4kB of data;1.86336;0.389941;2.20383;388324;639088 +3136/3917;Mumbai: arith - reveal 4kB of data;1.92653;0.347022;2.22573;374508;625316 +3137/3917;Nairobi: arith - reveal 4kB of data;1.88905;0.36056;2.1991;388328;639148 +3138/3917;Alpha: arith - reveal more than 4kB of data;1.84501;0.349748;2.14751;388328;638576 +3139/3917;Mumbai: arith - reveal more than 4kB of data;1.84156;0.352697;2.14716;388452;639232 +3140/3917;Nairobi: arith - reveal more than 4kB of data;1.85232;0.380583;2.18442;388196;639640 +3141/3917;Alpha: wasm_2_0_0 - runs with kernel - no_parse_random (external);6.22286;1.41409;7.41959;388200;673292 +3142/3917;Mumbai: wasm_2_0_0 - runs with kernel - no_parse_random (external);6.36693;1.47086;7.61137;388328;674188 +3143/3917;Nairobi: wasm_2_0_0 - runs with kernel - no_parse_random (external);6.26351;1.45712;7.50318;388196;673416 +3144/3917;Alpha: wasm_2_0_0 - runs with kernel - no_parse_bad_fingerprint (external);6.34968;1.32437;7.44679;388328;674216 +3145/3917;Mumbai: wasm_2_0_0 - runs with kernel - no_parse_bad_fingerprint (external);6.51094;1.29834;7.58441;388328;675256 +3146/3917;Nairobi: wasm_2_0_0 - runs with kernel - no_parse_bad_fingerprint (external);6.28969;1.40556;7.47568;388332;674560 +3147/3917;Alpha: wasm_2_0_0 - refutation games winning strategies (pvm_proof_2+accuser);15.7253;3.16947;16.9306;374588;791220 +3148/3917;Mumbai: wasm_2_0_0 - refutation games winning strategies (pvm_proof_2+accuser);15.9624;2.99879;17.0165;388328;805356 +3149/3917;Nairobi: wasm_2_0_0 - refutation games winning strategies (pvm_proof_2+accuser);15.6561;3.33198;16.9978;388324;804976 +3150/3917;Alpha: arith - Injector discards repeatedly failing operations;14.9807;3.22978;16.8438;388316;721012 +3151/3917;Mumbai: arith - Injector discards repeatedly failing operations;15.3334;3.2109;17.1504;388452;721084 +3152/3917;Nairobi: arith - Injector discards repeatedly failing operations;15.0366;3.22067;16.9008;387968;719428 +3153/3917;Alpha: wasm_2_0_0 - origination of a SCORU executes without error;1.46692;0.283444;1.73526;388328;562992 +3154/3917;Mumbai: wasm_2_0_0 - origination of a SCORU executes without error;1.49632;0.260686;1.74019;388332;563840 +3155/3917;Nairobi: wasm_2_0_0 - origination of a SCORU executes without error;1.45431;0.272174;1.71054;388324;563616 +3156/3917;Alpha: wasm_2_0_0 - the smart contract rollup node runs on correct address;1.65051;0.342038;1.95376;388332;577596 +3157/3917;Mumbai: wasm_2_0_0 - the smart contract rollup node runs on correct address;1.64944;0.36746;1.97976;374504;563140 +3158/3917;Nairobi: wasm_2_0_0 - the smart contract rollup node runs on correct address;1.63212;0.359354;1.94943;388324;577208 +3159/3917;Alpha: wasm_2_0_0 - genesis info and last cemented are equal at origination;3.12557;0.649136;3.68797;388324;582948 +3160/3917;Mumbai: wasm_2_0_0 - genesis info and last cemented are equal at origination;3.25633;0.549071;3.71108;388328;581972 +3161/3917;Nairobi: wasm_2_0_0 - genesis info and last cemented are equal at origination;3.1404;0.668858;3.72498;388196;582236 +3162/3917;Alpha: wasm_2_0_0 - maintenance of inbox in the rollup node (basic);2.39727;0.44042;2.76402;388196;646220 +3163/3917;Mumbai: wasm_2_0_0 - maintenance of inbox in the rollup node (basic);2.37575;0.487501;2.78796;374628;633696 +3164/3917;Nairobi: wasm_2_0_0 - maintenance of inbox in the rollup node (basic);2.39884;0.454692;2.77635;388200;646932 +3165/3917;Alpha: wasm_2_0_0 - RPC API should work and be stable;5.83609;1.2295;6.65672;374376;672052 +3166/3917;Mumbai: wasm_2_0_0 - RPC API should work and be stable;5.94331;1.27047;6.81511;388196;685396 +3167/3917;Nairobi: wasm_2_0_0 - RPC API should work and be stable;5.78714;1.35852;6.72209;388204;685176 +3168/3917;Alpha: wasm_2_0_0 - maintenance of inbox in the rollup node (stops);2.96486;0.572064;3.44774;388332;647568 +3169/3917;Mumbai: wasm_2_0_0 - maintenance of inbox in the rollup node (stops);2.92271;0.642015;3.47586;388332;649240 +3170/3917;Nairobi: wasm_2_0_0 - maintenance of inbox in the rollup node (stops);2.96004;0.608782;3.47916;388196;649592 +3171/3917;Alpha: wasm_2_0_0 - maintenance of inbox in the rollup node (disconnects);3.26026;0.632709;8.67299;388332;644636 +3172/3917;Mumbai: wasm_2_0_0 - maintenance of inbox in the rollup node (disconnects);3.18453;0.687678;9.26717;388332;644632 +3173/3917;Nairobi: wasm_2_0_0 - maintenance of inbox in the rollup node (disconnects);3.23818;0.634366;10.9951;388192;645088 +3174/3917;Alpha: wasm_2_0_0 - maintenance of inbox in the rollup node (handles_chain_reorg);4.40923;0.810797;4.97633;388200;1013772 +3175/3917;Mumbai: wasm_2_0_0 - maintenance of inbox in the rollup node (handles_chain_reorg);4.3331;0.847796;4.95917;388328;1013480 +3176/3917;Nairobi: wasm_2_0_0 - maintenance of inbox in the rollup node (handles_chain_reorg);4.30301;0.868515;5.03043;388204;1028076 +3177/3917;Alpha: wasm_2_0_0 - maintenance of inbox in the rollup node (batcher);12.591;2.65377;14.0017;388200;729888 +3178/3917;Mumbai: wasm_2_0_0 - maintenance of inbox in the rollup node (batcher);13.1245;2.50116;14.3439;388584;731204 +3179/3917;Nairobi: wasm_2_0_0 - maintenance of inbox in the rollup node (batcher);12.686;2.70381;14.1535;388324;729188 +3180/3917;Alpha: wasm_2_0_0 - rollup node boots into the initial state;1.7605;0.357521;2.08815;388328;577916 +3181/3917;Mumbai: wasm_2_0_0 - rollup node boots into the initial state;1.79102;0.36892;2.12582;388320;578864 +3182/3917;Nairobi: wasm_2_0_0 - rollup node boots into the initial state;1.79801;0.3285;2.09464;388196;577876 +3183/3917;Alpha: wasm_2_0_0 - node advances PVM state with messages (external);6.38523;1.32384;7.48196;388200;676832 +3184/3917;Mumbai: wasm_2_0_0 - node advances PVM state with messages (external);6.40812;1.42774;7.61787;388324;676128 +3185/3917;Nairobi: wasm_2_0_0 - node advances PVM state with messages (external);6.41366;1.32395;7.51729;388196;676904 +3186/3917;Alpha: wasm_2_0_0 - node advances PVM state with messages (internal);6.6057;1.38408;7.7459;388200;679284 +3187/3917;Mumbai: wasm_2_0_0 - node advances PVM state with messages (internal);6.71919;1.41306;7.90771;388328;679376 +3188/3917;Nairobi: wasm_2_0_0 - node advances PVM state with messages (internal);6.56996;1.44464;7.79089;388200;679576 +3189/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (commitment_is_stored);21.1521;4.04503;23.1789;388328;750480 +3190/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (commitment_is_stored);21.2024;4.16057;23.2094;388452;750784 +3191/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (commitment_is_stored);20.9785;4.02884;23.0369;388456;750444 +3192/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (robust_to_failures);21.7221;4.23617;22.9724;388200;871988 +3193/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (robust_to_failures);21.5602;4.19828;22.9085;388200;871664 +3194/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (robust_to_failures);21.5224;4.2703;22.9317;388196;871224 +3195/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (observer_does_not_publish);41.5868;8.14109;43.6312;388328;1261680 +3196/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (observer_does_not_publish);41.972;7.68392;43.6658;388584;1263800 +3197/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (observer_does_not_publish);41.653;7.79038;43.6652;388200;1262184 +3198/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (maintenance_publishes);42.0001;8.07499;43.8827;388324;1268772 +3199/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (maintenance_publishes);41.5896;7.93751;43.5678;388332;1272540 +3200/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (maintenance_publishes);41.5461;8.02432;43.6808;388204;1269664 +3201/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (batcher_does_not_publish);41.7839;7.93306;43.6653;388200;1265892 +3202/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (batcher_does_not_publish);41.9728;8.12506;43.815;388204;1283668 +3203/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (batcher_does_not_publish);41.7537;8.18471;43.8138;388328;1282480 +3204/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (operator_publishes);41.9194;8.04688;43.6044;388460;1277952 +3205/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (operator_publishes);41.8423;8.05494;43.7097;388332;1280308 +3206/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (operator_publishes);41.7771;7.92238;43.5578;388324;1278012 +3207/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (node_use_proto_param);7.42928;1.44651;8.37989;388192;694004 +3208/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (node_use_proto_param);7.33117;1.57249;8.39149;388332;690604 +3209/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (node_use_proto_param);7.19231;1.48643;8.20287;388204;689416 +3210/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (non_final_level);19.9906;4.15376;22.3308;374376;742648 +3211/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (non_final_level);20.1495;4.08821;22.2753;388332;754796 +3212/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (non_final_level);19.8978;4.10808;22.18;388204;754496 +3213/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (messages_reset);30.6795;6.00913;33.3757;388196;754760 +3214/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (messages_reset);30.4628;6.20599;33.3567;388456;754716 +3215/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (messages_reset);30.712;6.10338;33.4254;388200;754744 +3216/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain_reorgs);14.5838;2.67622;15.5004;388324;1087068 +3217/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain_reorgs);14.625;2.83588;15.6149;388460;1101584 +3218/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain_reorgs);14.4228;2.86418;15.5871;388320;1101316 +3219/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain_reorgs_missing_blocks);2.84446;0.47521;8.06784;388200;1029820 +3220/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain_reorgs_missing_blocks);14.6263;2.72414;15.4024;388200;1085368 +3221/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain_reorgs_missing_blocks);14.3569;2.91412;15.4239;388328;1096576 +3222/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (no_commitment_publish_before_lcc);23.3822;4.8746;25.7402;388292;735036 +3223/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (no_commitment_publish_before_lcc);23.5715;4.88096;25.8244;388332;734044 +3224/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (no_commitment_publish_before_lcc);23.3467;4.88345;25.6461;388332;734944 +3225/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (first_published_at_level_global);12.5136;2.45374;13.7345;388328;725104 +3226/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (first_published_at_level_global);12.8103;2.66417;14.1884;388328;725660 +3227/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (first_published_at_level_global);12.4242;2.54974;13.7407;388328;725672 +3228/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (consecutive commitments);4.43169;0.824118;5.14683;388200;588676 +3229/3917;Mumbai: wasm_2_0_0 - rollup node - correct handling of commitments (consecutive commitments);4.38172;0.876887;5.14385;388448;588796 +3230/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (consecutive commitments);4.40496;0.833168;5.125;388196;588428 +3231/3917;Nairobi: wasm_2_0_0 - rollup node - correct handling of commitments (cement_ignore_commitment);3.3393;0.747948;3.85919;388328;652992 +3232/3917;Alpha: wasm_2_0_0 - rollup node - correct handling of commitments (cement_ignore_commitment);3.39653;0.654362;3.83737;388204;652520 +3233/3917;Alpha: wasm_2_0_0 - a late rollup should catch up;16.6349;3.15598;18.3943;388200;819256 +3234/3917;Mumbai: wasm_2_0_0 - a late rollup should catch up;16.5226;3.34706;18.372;388332;819032 +3235/3917;Nairobi: wasm_2_0_0 - a late rollup should catch up;16.5487;3.18811;18.3237;388460;818960 +3236/3917;Alpha: wasm_2_0_0 - a late alternative rollup should catch up;27.3451;5.35221;28.9762;388360;822364 +3237/3917;Mumbai: wasm_2_0_0 - a late alternative rollup should catch up;26.9351;5.59006;28.936;388456;824208 +3238/3917;Nairobi: wasm_2_0_0 - a late alternative rollup should catch up;26.8939;5.57878;28.9039;388328;822932 +3239/3917;Alpha: wasm_2_0_0 - a rollup should recover on interruption before first inbox;4.05527;0.7729;4.71891;388204;590476 +3240/3917;Mumbai: wasm_2_0_0 - a rollup should recover on interruption before first inbox;4.06585;0.817746;4.77395;388328;591000 +3241/3917;Nairobi: wasm_2_0_0 - a rollup should recover on interruption before first inbox;4.05138;0.81085;4.76951;388316;592960 +3242/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 0, intern, no_parameters_ty);4.91756;0.985026;5.50051;388324;676600 +3243/3917;Mumbai: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 0, intern, no_parameters_ty);4.94743;1.05086;5.54394;388332;677524 +3244/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 0, intern, no_parameters_ty);4.9728;0.933912;5.52288;388332;677984 +3245/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 0, intern, int);4.91824;1.00348;5.52559;388204;677580 +3246/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 0, intern, int);4.89603;1.02171;5.53525;388200;677080 +3247/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 0, intern, no_parameters_ty);4.80908;1.09806;5.52087;388204;677204 +3248/3917;Mumbai: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 0, intern, no_parameters_ty);4.97625;1.00315;5.52455;388192;677656 +3249/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 0, intern, no_parameters_ty);5.04657;0.905722;5.5536;388200;676684 +3250/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 0, intern, int);5.05907;0.890222;5.54722;388196;676956 +3251/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 0, intern, int);4.92389;1.03797;5.56769;388204;676728 +3252/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 5, intern, no_parameters_ty);3.71155;0.615377;4.10735;388196;658132 +3253/3917;Mumbai: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 5, intern, no_parameters_ty);3.54582;0.802766;4.10614;388324;658928 +3254/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 5, intern, no_parameters_ty);3.64686;0.728055;4.14082;374376;645656 +3255/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 5, intern, int);3.64875;0.694178;4.10854;388324;660936 +3256/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 5, intern, int);3.60581;0.730715;4.09787;388328;660784 +3257/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 5, intern, no_parameters_ty);3.64612;0.726027;4.13539;388204;658216 +3258/3917;Mumbai: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 5, intern, no_parameters_ty);3.6594;0.709807;4.13204;388328;658760 +3259/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 5, intern, no_parameters_ty);3.66084;0.688855;4.12261;388204;658648 +3260/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 5, intern, int);3.62186;0.743304;4.13579;388200;658352 +3261/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 5, intern, int);3.62397;0.734883;4.11966;388204;661820 +3262/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 0, extern, no_parameters_ty);5.16427;0.954132;5.69409;388332;678956 +3263/3917;Mumbai: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 0, extern, no_parameters_ty);5.13981;1.05563;5.69901;388332;679488 +3264/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 0, extern, no_parameters_ty);5.07503;1.04148;5.69923;388196;679436 +3265/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 0, extern, int);5.09885;1.06511;5.71941;388196;678928 +3266/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 0, extern, int);5.17616;0.951709;5.68692;374372;664632 +3267/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 0, extern, no_parameters_ty);5.2018;0.947577;5.70769;388200;679572 +3268/3917;Mumbai: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 0, extern, no_parameters_ty);5.23636;1.01428;5.74523;388324;680520 +3269/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 0, extern, no_parameters_ty);5.12657;1.00622;5.71401;388200;679764 +3270/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 0, extern, int);5.09198;1.01033;5.67948;388076;677740 +3271/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 0, extern, int);5.05043;1.04394;5.67877;388204;678844 +3272/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 5, extern, no_parameters_ty);3.78897;0.771688;4.29856;388200;660268 +3273/3917;Mumbai: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 5, extern, no_parameters_ty);3.78378;0.774848;4.29609;388324;660512 +3274/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 5, extern, no_parameters_ty);3.72828;0.882763;4.32194;388328;660928 +3275/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 5, extern, int);3.8585;0.704448;4.30256;388076;660160 +3276/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 5, extern, int);3.79407;0.741056;4.27642;388196;663296 +3277/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 5, extern, no_parameters_ty);3.78021;0.769072;4.30478;388196;660812 +3278/3917;Mumbai: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 5, extern, no_parameters_ty);3.85982;0.743839;4.31649;388320;660808 +3279/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 5, extern, no_parameters_ty);3.8231;0.752614;4.31655;388200;661024 +3280/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 5, extern, int);3.84203;0.704722;4.2851;388328;663800 +3281/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %aux, eager: 5, extern, int);3.82442;0.72053;4.28597;388200;662496 +3282/3917;Alpha: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 0, intern, string);4.68617;1.02505;5.34085;388324;675468 +3283/3917;Nairobi: wasm_2_0_0 - output exec (0, entrypoint: %default, eager: 0, intern, string);4.79313;0.902665;5.32274;388324;676160 +3284/3917;Alpha: wasm_2_0_0 - output exec ("word", entrypoint: %default, eager: 0, intern, int);4.8241;0.852506;5.30309;388200;676144 +3285/3917;Nairobi: wasm_2_0_0 - output exec ("word", entrypoint: %default, eager: 0, intern, int);4.71121;0.968015;5.32652;388204;676344 +3286/3917;Alpha: wasm_2_0_0 - checks messages processed during a commitment period;11.5378;2.37811;12.7467;388328;725740 +3287/3917;Mumbai: wasm_2_0_0 - checks messages processed during a commitment period;11.4721;2.36117;12.6445;388456;725168 +3288/3917;Nairobi: wasm_2_0_0 - checks messages processed during a commitment period;11.514;2.26064;12.646;388328;726156 +3289/3917;Alpha: wasm_2_0_0 - Rollup node uses argument boot sector file;1.99964;0.317516;2.15626;388328;638856 +3290/3917;Alpha: arith - origination of a SCORU executes without error;1.52795;0.223316;1.73354;388324;563508 +3291/3917;Mumbai: arith - origination of a SCORU executes without error;1.4817;0.282019;1.74603;388460;563836 +3292/3917;Nairobi: arith - origination of a SCORU executes without error;1.46022;0.274772;1.71786;388204;563592 +3293/3917;Alpha: arith - the smart contract rollup node runs on correct address;1.61917;0.350109;1.93212;388328;577408 +3294/3917;Mumbai: arith - the smart contract rollup node runs on correct address;1.62081;0.357259;1.94228;388328;577384 +3295/3917;Nairobi: arith - the smart contract rollup node runs on correct address;1.596;0.384433;1.94247;388200;576864 +3296/3917;Alpha: arith - genesis info and last cemented are equal at origination;3.20785;0.601548;3.71934;388200;583592 +3297/3917;Mumbai: arith - genesis info and last cemented are equal at origination;3.16344;0.650109;3.71715;388332;581088 +3298/3917;Nairobi: arith - genesis info and last cemented are equal at origination;3.16361;0.670182;3.73924;374276;569596 +3299/3917;Alpha: arith - maintenance of inbox in the rollup node (basic);2.29278;0.524677;2.75972;388200;640004 +3300/3917;Mumbai: arith - maintenance of inbox in the rollup node (basic);2.34036;0.501986;2.78875;388328;640476 +3301/3917;Nairobi: arith - maintenance of inbox in the rollup node (basic);2.4075;0.434102;2.787;388328;640192 +3302/3917;Alpha: arith - RPC API should work and be stable;5.6932;1.15889;6.45706;388344;678096 +3303/3917;Mumbai: arith - RPC API should work and be stable;5.68688;1.21604;6.51871;388328;679976 +3304/3917;Nairobi: arith - RPC API should work and be stable;5.65712;1.24248;6.50998;388200;679048 +3305/3917;Alpha: arith - maintenance of inbox in the rollup node (stops);2.9363;0.574703;3.42585;374376;631592 +3306/3917;Mumbai: arith - maintenance of inbox in the rollup node (stops);2.9867;0.554187;3.45547;388328;645232 +3307/3917;Nairobi: arith - maintenance of inbox in the rollup node (stops);2.95085;0.607754;3.46647;388328;645480 +3308/3917;Alpha: arith - maintenance of inbox in the rollup node (disconnects);3.08562;0.777386;7.769;388328;641676 +3309/3917;Mumbai: arith - maintenance of inbox in the rollup node (disconnects);3.1801;0.676155;9.14508;388332;642420 +3310/3917;Nairobi: arith - maintenance of inbox in the rollup node (disconnects);3.16682;0.663534;8.4574;388200;641988 +3311/3917;Alpha: arith - maintenance of inbox in the rollup node (handles_chain_reorg);4.33392;0.858433;4.96868;388320;1025464 +3312/3917;Mumbai: arith - maintenance of inbox in the rollup node (handles_chain_reorg);4.40747;0.818329;4.99136;388328;1027184 +3313/3917;Nairobi: arith - maintenance of inbox in the rollup node (handles_chain_reorg);4.3793;0.889488;5.02517;388196;1027672 +3314/3917;Alpha: arith - maintenance of inbox in the rollup node (batcher);12.9765;2.90712;14.6065;388456;752988 +3315/3917;Mumbai: arith - maintenance of inbox in the rollup node (batcher);13.3503;2.47979;14.6323;388456;752952 +3316/3917;Nairobi: arith - maintenance of inbox in the rollup node (batcher);13.1561;2.61392;14.5443;388204;755492 +3317/3917;Alpha: arith - rollup node boots into the initial state;1.77366;0.343849;2.09941;388076;576964 +3318/3917;Mumbai: arith - rollup node boots into the initial state;1.76946;0.386203;2.13453;388200;576736 +3319/3917;Nairobi: arith - rollup node boots into the initial state;1.72504;0.369196;2.0731;388192;576920 +3320/3917;Alpha: arith - node advances PVM state with messages (external);6.74973;1.43998;7.96011;388204;674604 +3321/3917;Mumbai: arith - node advances PVM state with messages (external);6.8646;1.47743;8.11479;388332;674232 +3322/3917;Nairobi: arith - node advances PVM state with messages (external);6.57616;1.59516;7.95508;388200;678432 +3323/3917;Alpha: arith - node advances PVM state with messages (internal);6.95375;1.53573;8.25887;388200;680344 +3324/3917;Mumbai: arith - node advances PVM state with messages (internal);7.2227;1.48266;8.47278;374508;665492 +3325/3917;Nairobi: arith - node advances PVM state with messages (internal);7.13714;1.39424;8.29948;388204;679516 +3326/3917;Alpha: arith - rollup node - correct handling of commitments (commitment_is_stored);20.7743;4.14374;23.262;388332;723480 +3327/3917;Mumbai: arith - rollup node - correct handling of commitments (commitment_is_stored);20.9382;3.96111;23.2935;374756;710288 +3328/3917;Nairobi: arith - rollup node - correct handling of commitments (commitment_is_stored);20.677;4.08438;23.2367;388196;723224 +3329/3917;Alpha: arith - rollup node - correct handling of commitments (robust_to_failures);20.927;4.07738;22.9825;388332;805756 +3330/3917;Mumbai: arith - rollup node - correct handling of commitments (robust_to_failures);20.6465;4.14866;22.896;388452;805544 +3331/3917;Nairobi: arith - rollup node - correct handling of commitments (robust_to_failures);20.6114;4.16374;22.934;388204;806172 +3332/3917;Alpha: arith - rollup node - correct handling of commitments (observer_does_not_publish);39.9417;7.76708;43.3225;388308;1186752 +3333/3917;Mumbai: arith - rollup node - correct handling of commitments (observer_does_not_publish);40.4041;7.72006;43.5234;388452;1187380 +3334/3917;Nairobi: arith - rollup node - correct handling of commitments (observer_does_not_publish);39.8539;7.92349;43.4184;388200;1172716 +3335/3917;Alpha: arith - rollup node - correct handling of commitments (maintenance_publishes);40.2855;7.79532;43.4478;388328;1190288 +3336/3917;Mumbai: arith - rollup node - correct handling of commitments (maintenance_publishes);40.2925;7.96998;43.4482;388452;1190648 +3337/3917;Nairobi: arith - rollup node - correct handling of commitments (maintenance_publishes);40.2895;7.64703;43.32;388328;1189064 +3338/3917;Alpha: arith - rollup node - correct handling of commitments (batcher_does_not_publish);40.0801;7.70209;43.3276;388324;1194848 +3339/3917;Mumbai: arith - rollup node - correct handling of commitments (batcher_does_not_publish);40.4002;7.53051;43.3628;388180;1182744 +3340/3917;Nairobi: arith - rollup node - correct handling of commitments (batcher_does_not_publish);40.0724;7.71878;43.3716;388204;1180948 +3341/3917;Alpha: arith - rollup node - correct handling of commitments (operator_publishes);40.1413;7.9453;43.4125;388332;1198020 +3342/3917;Mumbai: arith - rollup node - correct handling of commitments (operator_publishes);40.2593;8.07896;43.4958;388324;1185488 +3343/3917;Nairobi: arith - rollup node - correct handling of commitments (operator_publishes);39.9502;7.87079;43.1504;388456;1197844 +3344/3917;Alpha: arith - rollup node - correct handling of commitments (node_use_proto_param);7.15702;1.41838;8.15928;388332;682596 +3345/3917;Mumbai: arith - rollup node - correct handling of commitments (node_use_proto_param);7.40176;1.51097;8.44069;388332;684972 +3346/3917;Nairobi: arith - rollup node - correct handling of commitments (node_use_proto_param);7.12769;1.48644;8.19695;388200;682076 +3347/3917;Alpha: arith - rollup node - correct handling of commitments (non_final_level);19.5536;3.97988;22.1796;388332;724148 +3348/3917;Mumbai: arith - rollup node - correct handling of commitments (non_final_level);19.7026;3.91316;22.2201;388332;723112 +3349/3917;Nairobi: arith - rollup node - correct handling of commitments (non_final_level);19.4841;4.00727;22.188;388456;723776 +3350/3917;Alpha: arith - rollup node - correct handling of commitments (messages_reset);30.1548;6.1049;33.5148;388328;726404 +3351/3917;Mumbai: arith - rollup node - correct handling of commitments (messages_reset);30.1181;6.03391;33.4969;388324;726216 +3352/3917;Nairobi: arith - rollup node - correct handling of commitments (messages_reset);30.1002;5.986;33.4287;388324;726688 +3353/3917;Alpha: arith - rollup node - correct handling of commitments (handles_chain_reorgs);14.2556;2.90073;15.4772;388456;1093528 +3354/3917;Mumbai: arith - rollup node - correct handling of commitments (handles_chain_reorgs);14.3933;2.86147;15.514;388328;1094620 +3355/3917;Nairobi: arith - rollup node - correct handling of commitments (handles_chain_reorgs);14.3101;2.80132;15.4663;388304;1092976 +3356/3917;Alpha: arith - rollup node - correct handling of commitments (handles_chain_reorgs_missing_blocks);14.2151;2.84166;15.3637;388328;1092448 +3357/3917;Mumbai: arith - rollup node - correct handling of commitments (handles_chain_reorgs_missing_blocks);14.4548;2.83148;15.4453;388456;1093448 +3358/3917;Nairobi: arith - rollup node - correct handling of commitments (handles_chain_reorgs_missing_blocks);14.3255;2.75165;15.3915;388452;1092768 +3359/3917;Alpha: arith - rollup node - correct handling of commitments (no_commitment_publish_before_lcc);22.7383;4.8642;25.4498;388200;721040 +3360/3917;Mumbai: arith - rollup node - correct handling of commitments (no_commitment_publish_before_lcc);23.4554;4.56265;25.713;374756;705356 +3361/3917;Nairobi: arith - rollup node - correct handling of commitments (no_commitment_publish_before_lcc);23.1505;4.73821;25.6784;388196;719560 +3362/3917;Alpha: arith - rollup node - correct handling of commitments (first_published_at_level_global);12.3699;2.62991;13.892;388452;718240 +3363/3917;Mumbai: arith - rollup node - correct handling of commitments (first_published_at_level_global);12.8315;2.48716;14.1096;388460;716776 +3364/3917;Nairobi: arith - rollup node - correct handling of commitments (first_published_at_level_global);12.3097;2.69085;13.8954;388456;716720 +3365/3917;Alpha: arith - rollup node - correct handling of commitments (consecutive commitments);4.40177;0.818623;5.10807;388328;591636 +3366/3917;Mumbai: arith - rollup node - correct handling of commitments (consecutive commitments);4.41982;0.827677;5.13031;388324;591952 +3367/3917;Nairobi: arith - rollup node - correct handling of commitments (consecutive commitments);4.48851;0.794542;5.16644;388192;591724 +3368/3917;Nairobi: arith - rollup node - correct handling of commitments (cement_ignore_commitment);3.37834;0.661985;3.83992;374368;637148 +3369/3917;Alpha: arith - rollup node - correct handling of commitments (cement_ignore_commitment);3.40236;0.668207;3.87821;374504;637452 +3370/3917;Alpha: arith - a late rollup should catch up;16.3191;3.30231;18.3245;388456;791640 +3371/3917;Mumbai: arith - a late rollup should catch up;16.5105;3.18751;18.326;388328;793472 +3372/3917;Nairobi: arith - a late rollup should catch up;16.3932;3.26819;18.3289;388196;790996 +3373/3917;Alpha: arith - a late alternative rollup should catch up;26.4613;5.41559;28.6974;388320;803084 +3374/3917;Mumbai: arith - a late alternative rollup should catch up;26.9764;5.35159;28.9342;388452;801848 +3375/3917;Nairobi: arith - a late alternative rollup should catch up;26.6134;5.45824;28.8002;388228;802044 +3376/3917;Alpha: arith - a rollup should recover on interruption before first inbox;3.97479;0.829634;4.71338;388456;590884 +3377/3917;Mumbai: arith - a rollup should recover on interruption before first inbox;4.07548;0.783175;4.75873;388332;590972 +3378/3917;Nairobi: arith - a rollup should recover on interruption before first inbox;4.0815;0.755594;4.72855;388204;591360 +3379/3917;Alpha: arith - output exec (0, entrypoint: %default, eager: 0, intern, no_parameters_ty);4.82974;0.969395;5.44834;388180;673496 +3380/3917;Mumbai: arith - output exec (0, entrypoint: %default, eager: 0, intern, no_parameters_ty);4.89223;0.988978;5.48517;388328;673200 +3381/3917;Nairobi: arith - output exec (0, entrypoint: %default, eager: 0, intern, no_parameters_ty);4.96582;0.859306;5.46821;388132;673436 +3382/3917;Alpha: arith - output exec (0, entrypoint: %aux, eager: 0, intern, no_parameters_ty);4.81014;1.01141;5.47625;388196;672844 +3383/3917;Mumbai: arith - output exec (0, entrypoint: %aux, eager: 0, intern, no_parameters_ty);4.9735;0.977932;5.5193;374636;659604 +3384/3917;Nairobi: arith - output exec (0, entrypoint: %aux, eager: 0, intern, no_parameters_ty);4.75856;1.01123;5.41836;388324;673204 +3385/3917;Alpha: arith - output exec (0, entrypoint: %default, eager: 5, intern, no_parameters_ty);3.52666;0.769441;4.09036;388188;656448 +3386/3917;Mumbai: arith - output exec (0, entrypoint: %default, eager: 5, intern, no_parameters_ty);3.55136;0.740657;4.08763;388328;657428 +3387/3917;Nairobi: arith - output exec (0, entrypoint: %default, eager: 5, intern, no_parameters_ty);3.61617;0.706825;4.10401;374376;643444 +3388/3917;Alpha: arith - output exec (0, entrypoint: %aux, eager: 5, intern, no_parameters_ty);3.57035;0.713689;4.07932;388204;656756 +3389/3917;Mumbai: arith - output exec (0, entrypoint: %aux, eager: 5, intern, no_parameters_ty);3.59457;0.704694;4.08417;388456;656780 +3390/3917;Nairobi: arith - output exec (0, entrypoint: %aux, eager: 5, intern, no_parameters_ty);3.55097;0.697899;4.04005;388328;656916 +3391/3917;Alpha: arith - output exec (0, entrypoint: %default, eager: 0, extern, no_parameters_ty);5.04616;1.01909;5.68005;388200;674840 +3392/3917;Mumbai: arith - output exec (0, entrypoint: %default, eager: 0, extern, no_parameters_ty);5.04989;1.09964;5.66755;388192;675276 +3393/3917;Nairobi: arith - output exec (0, entrypoint: %default, eager: 0, extern, no_parameters_ty);4.94739;1.06049;5.63217;388200;673712 +3394/3917;Alpha: arith - output exec (0, entrypoint: %aux, eager: 0, extern, no_parameters_ty);5.03202;1.03145;5.6754;388200;673800 +3395/3917;Mumbai: arith - output exec (0, entrypoint: %aux, eager: 0, extern, no_parameters_ty);5.03733;1.0581;5.65009;388320;674956 +3396/3917;Nairobi: arith - output exec (0, entrypoint: %aux, eager: 0, extern, no_parameters_ty);5.06336;1.01791;5.67623;388460;674456 +3397/3917;Alpha: arith - output exec (0, entrypoint: %default, eager: 5, extern, no_parameters_ty);3.67197;0.769848;4.20772;388200;658732 +3398/3917;Mumbai: arith - output exec (0, entrypoint: %default, eager: 5, extern, no_parameters_ty);3.73564;0.749017;4.24453;388328;659032 +3399/3917;Nairobi: arith - output exec (0, entrypoint: %default, eager: 5, extern, no_parameters_ty);3.75625;0.716451;4.23949;388196;659064 +3400/3917;Alpha: arith - output exec (0, entrypoint: %aux, eager: 5, extern, no_parameters_ty);3.70718;0.780687;4.25201;388328;658780 +3401/3917;Mumbai: arith - output exec (0, entrypoint: %aux, eager: 5, extern, no_parameters_ty);3.74393;0.736984;4.23707;388196;658784 +3402/3917;Nairobi: arith - output exec (0, entrypoint: %aux, eager: 5, extern, no_parameters_ty);3.76414;0.704024;4.2304;388204;660072 +3403/3917;Alpha: arith - checks messages processed during a commitment period;11.3733;2.2907;12.684;388328;716372 +3404/3917;Mumbai: arith - checks messages processed during a commitment period;11.3912;2.3265;12.712;388456;715180 +3405/3917;Nairobi: arith - checks messages processed during a commitment period;11.5134;2.17658;12.7078;388196;715372 +3406/3917;Alpha: arith - Rollup node uses argument boot sector file;1.92154;0.391125;2.15103;388332;638604 +3407/3917;Alpha: Bootstrap smart rollups are listed;1.28833;0.239931;1.52868;388068;560396 +3408/3917;Alpha: Self address transfer;0.815543;0.179457;0.993569;198632;191452 +3409/3917;Mumbai: Self address transfer;0.82751;0.180086;1.00572;198628;191460 +3410/3917;Nairobi: Self address transfer;0.796661;0.192949;0.987567;198756;191736 +3411/3917;Alpha: signer test;2.14904;0.416169;3.3124;388200;584420 +3412/3917;Mumbai: signer test;2.1265;0.434581;2.91726;388072;584920 +3413/3917;Nairobi: signer test;2.09921;0.476678;2.9237;388200;584424 +3414/3917;Mumbai: BLS signer test;2.17594;0.403784;2.56453;388328;583240 +3415/3917;Alpha: BLS signer test;2.21752;0.403514;2.6075;388332;583248 +3416/3917;Alpha: storage reconstruction;45.672;9.28545;51.9032;388248;804064 +3417/3917;Mumbai: storage reconstruction;45.9634;9.07405;51.8643;388072;808392 +3418/3917;Nairobi: storage reconstruction;45.6826;9.26721;51.9584;388076;794796 +3419/3917;Alpha: storage snapshot export and import;27.761;4.99361;15.6606;387964;3000332 +3420/3917;Mumbai: storage snapshot export and import;28.2088;5.54879;16.0444;387684;3074096 +3421/3917;Nairobi: storage snapshot export and import;28.1134;5.68802;16.0712;388192;3080280 +3422/3917;Alpha: storage snapshot drag after rolling import;46.9242;9.41116;50.0268;389196;1398920 +3423/3917;Mumbai: storage snapshot drag after rolling import;47.5407;9.16726;50.1625;387668;1406208 +3424/3917;Nairobi: storage snapshot drag after rolling import;46.6876;9.54211;50.1349;387304;1376652 +3425/3917;Alpha: storage snapshot info command;2.70442;0.484014;3.13689;388064;583572 +3426/3917;Mumbai: storage snapshot info command;2.7039;0.471025;3.11443;388200;583524 +3427/3917;Nairobi: storage snapshot info command;2.66951;0.551524;3.16391;388204;583464 +3428/3917;Alpha: stresstest sources format;4.40992;0.816412;24.7483;374376;662496 +3429/3917;Mumbai: stresstest sources format;4.38353;0.801685;24.717;388072;676568 +3430/3917;Nairobi: stresstest sources format;4.29634;0.910258;24.731;374248;662920 +3431/3917;Alpha: stresstest explicit transfers argument;2.46491;0.489443;4.86234;388064;574300 +3432/3917;Mumbai: stresstest explicit transfers argument;2.4355;0.484098;4.83551;388200;570220 +3433/3917;Nairobi: stresstest explicit transfers argument;2.50846;0.452767;4.88103;388076;570048 +3434/3917;Alpha: stresstest multiple nodes;9.29472;1.73159;23.1657;387780;2056420 +3435/3917;Mumbai: stresstest multiple nodes;9.25807;1.71149;23.1036;387948;2071400 +3436/3917;Nairobi: stresstest multiple nodes;9.32574;1.70806;23.2218;387712;2056976 +3437/3917;Alpha: check synchronization state;8.07957;1.50542;4.08408;388204;2307616 +3438/3917;Mumbai: check synchronization state;8.2909;1.3901;4.18689;388072;2289520 +3439/3917;Nairobi: check synchronization state;8.11126;1.48355;4.13625;388072;2324256 +3440/3917;Alpha: bootstrap: test threshold zero;1.48966;0.253629;1.71162;388196;653044 +3441/3917;Mumbai: bootstrap: test threshold zero;1.46576;0.281024;1.71211;388204;654024 +3442/3917;Nairobi: bootstrap: test threshold zero;1.4985;0.266101;1.72156;388332;654088 +3443/3917;Alpha: bootstrap: test threshold one;2.5133;0.56092;2.92369;388076;1024012 +3444/3917;Mumbai: bootstrap: test threshold one;2.58397;0.508412;2.9464;388200;1024492 +3445/3917;Nairobi: bootstrap: test threshold one;2.5919;0.490238;2.92292;388328;1025356 +3446/3917;Alpha: bootstrap: test threshold two;5.26834;0.957008;6.3534;388196;1764740 +3447/3917;Mumbai: bootstrap: test threshold two;5.11982;1.00122;5.90172;388204;1778296 +3448/3917;Nairobi: bootstrap: test threshold two;5.06118;1.00138;5.90849;388204;1777784 +3449/3917;Alpha: bootstrap: test threshold stuck;3.92163;0.746074;13.0679;388196;1295264 +3450/3917;Mumbai: bootstrap: test threshold stuck;3.97365;0.746356;12.9346;388072;1295520 +3451/3917;Nairobi: bootstrap: test threshold stuck;3.93186;0.700131;12.8142;388076;1308948 +3452/3917;Alpha: bootstrap: test threshold split view;4.7546;0.922026;7.58172;388076;1410332 +3453/3917;Mumbai: bootstrap: test threshold split view;4.79448;1.00215;7.88709;388072;1411748 +3454/3917;Nairobi: bootstrap: test threshold split view;4.92616;0.888896;7.90721;388200;1410516 +3455/3917;Alpha: bootstrap: many nodes bootstrap;18.3489;3.22689;27.0517;388240;4037036 +3456/3917;Mumbai: bootstrap: many nodes bootstrap;18.2442;3.42515;27.1292;388204;4040940 +3457/3917;Nairobi: bootstrap: many nodes bootstrap;18.3616;3.23868;27.1945;388204;4038492 +3458/3917;Alpha: Check prevalidator start;3.8976;0.765789;59.5533;388196;1480408 +3459/3917;Mumbai: Check prevalidator start;3.83766;0.762158;58.9068;388200;1467736 +3460/3917;Nairobi: Check prevalidator start;3.9334;0.704979;58.9439;388204;1480968 +3461/3917;Alpha: Tenderbake transfer - baking 2;2.54906;0.547507;3.0464;388076;571648 +3462/3917;Mumbai: Tenderbake transfer - baking 2;2.63633;0.4924;3.07726;388328;571068 +3463/3917;Nairobi: Tenderbake transfer - baking 2;2.54201;0.543641;3.03527;388328;571452 +3464/3917;Alpha: Tenderbake low level commands;2.38514;0.539284;2.87398;388200;568588 +3465/3917;Mumbai: Tenderbake low level commands;2.44848;0.480729;2.88004;388328;569148 +3466/3917;Nairobi: Tenderbake low level commands;2.38567;0.549273;2.88561;388332;568892 +3467/3917;Alpha: Tenderbake manual bake;2.87354;0.600298;5.43884;388324;570984 +3468/3917;Mumbai: Tenderbake manual bake;2.8805;0.598917;5.44504;388324;570868 +3469/3917;Nairobi: Tenderbake manual bake;2.93361;0.562879;5.46172;388200;571032 +3470/3917;Alpha: Tenderbake manual bake null threshold;2.06148;0.445353;2.49353;374132;550688 +3471/3917;Mumbai: Tenderbake manual bake null threshold;2.1074;0.39749;2.48603;388204;564824 +3472/3917;Nairobi: Tenderbake manual bake null threshold;2.04882;0.464614;2.49839;388328;564900 +3473/3917;Alpha: Tenderbake low level repropose;2.07609;0.504387;7.54394;388204;567108 +3474/3917;Mumbai: Tenderbake low level repropose;2.1755;0.45645;7.59511;388328;567408 +3475/3917;Nairobi: Tenderbake low level repropose;2.1887;0.417517;7.57213;388332;567572 +3476/3917;Alpha: testnet dictator (mainnet, proposal);3.44047;0.638079;4.04353;388324;576068 +3477/3917;Mumbai: testnet dictator (mainnet, proposal);3.47573;0.705021;4.14454;388456;576612 +3478/3917;Nairobi: testnet dictator (mainnet, proposal);3.43585;0.72544;4.12211;388080;575664 +3479/3917;Alpha: testnet dictator (ghostnet, proposal);3.3512;0.788743;4.09868;388200;576052 +3480/3917;Mumbai: testnet dictator (ghostnet, proposal);3.45235;0.72741;4.1356;388584;577292 +3481/3917;Nairobi: testnet dictator (ghostnet, proposal);3.34094;0.792054;4.08932;388236;576248 +3482/3917;Alpha: testnet dictator (mainnet, exploration);4.69719;0.926406;5.55922;388328;589668 +3483/3917;Mumbai: testnet dictator (mainnet, exploration);4.82621;0.835321;5.58049;388204;589708 +3484/3917;Nairobi: testnet dictator (mainnet, exploration);4.7998;0.873104;5.59785;388200;589588 +3485/3917;Alpha: testnet dictator (ghostnet, exploration);4.66644;0.941624;5.53697;388200;589868 +3486/3917;Mumbai: testnet dictator (ghostnet, exploration);4.80262;0.843881;5.56352;388200;589916 +3487/3917;Nairobi: testnet dictator (ghostnet, exploration);4.73335;0.901764;5.56005;388328;589484 +3488/3917;Alpha: testnet dictator (mainnet, cooldown);6.4008;1.26565;7.55128;388196;596388 +3489/3917;Mumbai: testnet dictator (mainnet, cooldown);6.33044;1.29063;7.48759;388328;597460 +3490/3917;Nairobi: testnet dictator (mainnet, cooldown);6.27079;1.3698;7.51878;388324;597300 +3491/3917;Alpha: testnet dictator (ghostnet, cooldown);6.39757;1.24517;7.50597;388324;597064 +3492/3917;Mumbai: testnet dictator (ghostnet, cooldown);6.36021;1.34058;7.53268;388204;598176 +3493/3917;Nairobi: testnet dictator (ghostnet, cooldown);6.45419;1.21381;7.51434;388324;598132 +3494/3917;Alpha: testnet dictator (mainnet, promotion);7.39185;1.47502;8.70172;388320;601572 +3495/3917;Mumbai: testnet dictator (mainnet, promotion);7.35838;1.48858;8.67936;388456;602228 +3496/3917;Nairobi: testnet dictator (mainnet, promotion);7.38866;1.44111;8.65688;388204;602032 +3497/3917;Alpha: testnet dictator (ghostnet, promotion);7.44916;1.40577;8.6785;388328;602124 +3498/3917;Mumbai: testnet dictator (ghostnet, promotion);7.34398;1.58496;8.72814;374372;588576 +3499/3917;Nairobi: testnet dictator (ghostnet, promotion);7.40111;1.48755;8.69592;388204;602084 +3500/3917;Alpha: testnet dictator (mainnet, adoption);8.9667;1.88827;10.6328;388196;617188 +3501/3917;Mumbai: testnet dictator (mainnet, adoption);9.17474;1.76366;10.7051;374508;603724 +3502/3917;Nairobi: testnet dictator (mainnet, adoption);9.03228;1.82986;10.6339;388456;617024 +3503/3917;Alpha: testnet dictator (ghostnet, adoption);9.10279;1.77415;10.6479;388188;616724 +3504/3917;Mumbai: testnet dictator (ghostnet, adoption);9.01731;1.85292;10.6245;388452;617264 +3505/3917;Nairobi: testnet dictator (ghostnet, adoption);9.08132;1.79404;10.6353;388328;617020 +3506/3917;Alpha: Bls12_381 contract primitives, fr: store;1.98854;0.399716;2.38593;197880;192988 +3507/3917;Mumbai: Bls12_381 contract primitives, fr: store;1.99829;0.384099;2.37998;197928;193308 +3508/3917;Nairobi: Bls12_381 contract primitives, fr: store;1.96515;0.413843;2.37639;198008;193400 +3509/3917;Alpha: Bls12_381 contract primitives, fr: add;19.1552;4.32486;23.4469;226212;222072 +3510/3917;Mumbai: Bls12_381 contract primitives, fr: add;19.3564;4.27429;23.596;226044;221976 +3511/3917;Nairobi: Bls12_381 contract primitives, fr: add;19.0669;4.42379;23.4418;226088;222232 +3512/3917;Alpha: Bls12_381 contract primitives, fr: mul;19.4234;4.1028;23.4842;226132;222136 +3513/3917;Mumbai: Bls12_381 contract primitives, fr: mul;19.2416;4.34891;23.5482;226172;222188 +3514/3917;Nairobi: Bls12_381 contract primitives, fr: mul;19.2505;4.41558;23.6275;226468;222192 +3515/3917;Alpha: Bls12_381 contract primitives, fr: negate;2.03897;0.380636;2.41619;197884;192764 +3516/3917;Mumbai: Bls12_381 contract primitives, fr: negate;1.98647;0.417464;2.40125;198140;193536 +3517/3917;Nairobi: Bls12_381 contract primitives, fr: negate;2.01997;0.367416;2.3847;197988;193264 +3518/3917;Alpha: Bls12_381 contract primitives, g1: store;1.9791;0.421571;2.39666;197884;193060 +3519/3917;Mumbai: Bls12_381 contract primitives, g1: store;1.98548;0.421286;2.40134;198136;193172 +3520/3917;Nairobi: Bls12_381 contract primitives, g1: store;2.02164;0.384162;2.39831;198008;193680 +3521/3917;Alpha: Bls12_381 contract primitives, g1: add;19.0395;4.46671;23.4613;226128;222120 +3522/3917;Mumbai: Bls12_381 contract primitives, g1: add;19.0877;4.51009;23.554;226340;222204 +3523/3917;Nairobi: Bls12_381 contract primitives, g1: add;19.2701;4.42451;23.6501;226208;222232 +3524/3917;Alpha: Bls12_381 contract primitives, g1: mul;19.313;4.32984;23.6011;225960;222088 +3525/3917;Mumbai: Bls12_381 contract primitives, g1: mul;19.1465;4.532;23.637;226256;222356 +3526/3917;Nairobi: Bls12_381 contract primitives, g1: mul;19.2986;4.39679;23.6544;226172;222208 +3527/3917;Alpha: Bls12_381 contract primitives, g1: negate;1.99807;0.404326;2.40369;198012;193448 +3528/3917;Mumbai: Bls12_381 contract primitives, g1: negate;1.95958;0.442749;2.39779;197856;193376 +3529/3917;Nairobi: Bls12_381 contract primitives, g1: negate;1.97384;0.429359;2.39468;197984;193072 +3530/3917;Alpha: Bls12_381 contract primitives, g2: store;1.92051;0.466885;2.38459;197924;193512 +3531/3917;Mumbai: Bls12_381 contract primitives, g2: store;2.01034;0.403391;2.40985;197992;193240 +3532/3917;Nairobi: Bls12_381 contract primitives, g2: store;1.95911;0.443969;2.39866;198008;193356 +3533/3917;Alpha: Bls12_381 contract primitives, g2: add;19.1418;4.57698;23.6347;226212;222388 +3534/3917;Mumbai: Bls12_381 contract primitives, g2: add;19.2489;4.41189;23.5899;226296;222320 +3535/3917;Nairobi: Bls12_381 contract primitives, g2: add;19.1778;4.42464;23.5367;226080;222136 +3536/3917;Alpha: Bls12_381 contract primitives, g2: mul;19.1309;4.50647;23.5921;226208;222192 +3537/3917;Mumbai: Bls12_381 contract primitives, g2: mul;19.1985;4.46732;23.6158;226296;222200 +3538/3917;Nairobi: Bls12_381 contract primitives, g2: mul;19.3693;4.39621;23.7126;226084;222104 +3539/3917;Alpha: Bls12_381 contract primitives, g2: negate;1.98699;0.428069;2.41247;197920;193340 +3540/3917;Mumbai: Bls12_381 contract primitives, g2: negate;1.97654;0.440017;2.41249;197884;193136 +3541/3917;Nairobi: Bls12_381 contract primitives, g2: negate;2.00989;0.400129;2.40659;197992;192748 +3542/3917;Alpha: Bls12_381 contract primitives: pairing_check empty;0.536719;0.104101;0.640552;197732;187796 +3543/3917;Mumbai: Bls12_381 contract primitives: pairing_check empty;0.555361;0.087692;0.642577;197988;187596 +3544/3917;Nairobi: Bls12_381 contract primitives: pairing_check empty;0.553697;0.088454;0.641528;197988;187456 +3545/3917;Alpha: Bls12_381 contract primitives: pairing_check(pos, pos);19.4727;4.32628;23.7601;226168;222200 +3546/3917;Mumbai: Bls12_381 contract primitives: pairing_check(pos, pos);19.2783;4.4796;23.7219;226176;222124 +3547/3917;Nairobi: Bls12_381 contract primitives: pairing_check(pos, pos);19.2026;4.47687;23.6484;226088;222336 +3548/3917;Alpha: Bls12_381 contract primitives: pairing_check(neg, pos);19.4198;4.36346;23.7488;226172;221936 +3549/3917;Mumbai: Bls12_381 contract primitives: pairing_check(neg, pos);19.5727;4.27857;23.8161;226172;222260 +3550/3917;Nairobi: Bls12_381 contract primitives: pairing_check(neg, pos);19.2768;4.47543;23.7182;226340;222304 +3551/3917;Alpha: Bls12_381 contract primitives: pairing_check(pos, neg);19.2541;4.50666;23.7251;226048;222316 +3552/3917;Mumbai: Bls12_381 contract primitives: pairing_check(pos, neg);19.2001;4.63152;23.8012;226340;222064 +3553/3917;Nairobi: Bls12_381 contract primitives: pairing_check(pos, neg);19.2928;4.53386;23.7965;226168;222116 +3554/3917;Alpha: Bls12_381 contract primitives: signature_aggregation;3.12283;0.618928;3.73783;206316;201356 +3555/3917;Mumbai: Bls12_381 contract primitives: signature_aggregation;3.09679;0.648199;3.7409;205944;201720 +3556/3917;Nairobi: Bls12_381 contract primitives: signature_aggregation;3.02304;0.716846;3.73574;206164;201608 +3557/3917;Alpha: Bls12_381 contract primitives: test_groth16;0.568335;0.071869;0.645134;197864;187824 +3558/3917;Mumbai: Bls12_381 contract primitives: test_groth16;0.549221;0.096155;0.644709;197864;187836 +3559/3917;Nairobi: Bls12_381 contract primitives: test_groth16;0.593703;0.060604;0.653874;197984;188036 +3560/3917;Alpha: Bls12_381 contract primitives: fr bytes parameters more than 32 bytes;0.554016;0.087758;0.641329;197860;188640 +3561/3917;Mumbai: Bls12_381 contract primitives: fr bytes parameters more than 32 bytes;0.548376;0.095764;0.643332;197860;188288 +3562/3917;Nairobi: Bls12_381 contract primitives: fr bytes parameters more than 32 bytes;0.535057;0.112436;0.646867;198120;188212 +3563/3917;Alpha: Ticket updates in receipt;3.15133;0.725219;3.86588;207520;203692 +3564/3917;Mumbai: Ticket updates in receipt;3.18494;0.696512;3.87469;207396;202928 +3565/3917;Nairobi: Ticket updates in receipt;3.1741;0.705141;3.86928;207264;202888 +3566/3917;Alpha: Test Zero Transfer to Implicit Contract;0.550408;0.084699;0.634247;197988;188008 +3567/3917;Mumbai: Test Zero Transfer to Implicit Contract;0.550904;0.09596;0.64645;197864;188000 +3568/3917;Nairobi: Test Zero Transfer to Implicit Contract;0.52495;0.119555;0.643682;197992;188000 +3569/3917;Alpha: Test Zero Transfer to Nonexistent Contract;0.566055;0.083951;0.649546;197728;187956 +3570/3917;Mumbai: Test Zero Transfer to Nonexistent Contract;0.536774;0.100978;0.637398;197864;188252 +3571/3917;Nairobi: Test Zero Transfer to Nonexistent Contract;0.52467;0.116289;0.640336;197984;187856 +3572/3917;Alpha: Test invalid inputs when transferring from encrypted source account;2.01948;0.304876;2.3215;199928;196792 +3573/3917;Mumbai: Test invalid inputs when transferring from encrypted source account;1.98834;0.338103;2.32379;199672;196544 +3574/3917;Nairobi: Test invalid inputs when transferring from encrypted source account;2.02389;0.307895;2.32905;198756;195316 +3575/3917;Alpha: Create and remove tickets;1.14733;0.19607;1.34125;198760;192760 +3576/3917;Mumbai: Create and remove tickets;1.10987;0.226584;1.33401;198756;192540 +3577/3917;Nairobi: Create and remove tickets;1.13841;0.191518;1.32734;198756;191528 +3578/3917;Alpha: Send tickets in bigmap;0.86196;0.15538;1.01889;201576;194824 +3579/3917;Mumbai: Send tickets in bigmap;0.858011;0.173061;1.02729;201312;194384 +3580/3917;Nairobi: Send tickets in bigmap;0.86276;0.174625;1.03299;201448;194800 +3581/3917;Alpha: Send tickets from contracts to implicit accounts;0.8137;0.16025;0.972655;198632;190092 +3582/3917;Mumbai: Send tickets from contracts to implicit accounts;0.850342;0.127695;0.976639;198624;190456 +3583/3917;Nairobi: Send tickets from contracts to implicit accounts;0.864713;0.128526;0.991962;198756;190916 +3584/3917;Alpha: Send tickets from contracts to implicit accounts with some Tez along;1.09167;0.20873;1.29833;198632;192188 +3585/3917;Mumbai: Send tickets from contracts to implicit accounts with some Tez along;1.09489;0.208137;1.30013;198504;190924 +3586/3917;Nairobi: Send tickets from contracts to implicit accounts with some Tez along;1.06745;0.237642;1.30241;198756;191304 +3587/3917;Alpha: Send tickets from contracts to implicit accounts with the wrong type must fail;0.986023;0.171108;1.15574;198756;191860 +3588/3917;Mumbai: Send tickets from contracts to implicit accounts with the wrong type must fail;0.992666;0.182605;1.17303;198752;191872 +3589/3917;Nairobi: Send tickets from contracts to implicit accounts with the wrong type must fail;0.95324;0.214873;1.16592;198888;190948 +3590/3917;Alpha: Send tickets between originated contracts and implicit accounts;2.30338;0.498662;2.7966;200060;195384 +3591/3917;Mumbai: Send tickets between originated contracts and implicit accounts;2.21689;0.584123;2.79298;200184;195552 +3592/3917;Nairobi: Send tickets between originated contracts and implicit accounts;2.33981;0.458271;2.79273;199932;195308 +3593/3917;Alpha: Sending ticket from contract storage to implicit accounts;1.79757;0.331094;2.12213;198884;191672 +3594/3917;Mumbai: Sending ticket from contract storage to implicit accounts;1.74848;0.385222;2.12697;198760;191864 +3595/3917;Nairobi: Sending ticket from contract storage to implicit accounts;1.8092;0.328064;2.13049;198888;191928 +3596/3917;Alpha: Sending zero ticket from implicit accounts must be rejected;1.25121;0.232342;1.48065;198884;192272 +3597/3917;Mumbai: Sending zero ticket from implicit accounts must be rejected;1.22174;0.257116;1.47643;198628;192916 +3598/3917;Nairobi: Sending zero ticket from implicit accounts must be rejected;1.26296;0.224001;1.48455;198884;192444 +3599/3917;Alpha: Overdrafting ticket from implicit accounts must be rejected;1.09353;0.219956;1.30926;198760;191836 +3600/3917;Mumbai: Overdrafting ticket from implicit accounts must be rejected;1.11051;0.212133;1.31946;198500;191276 +3601/3917;Nairobi: Overdrafting ticket from implicit accounts must be rejected;1.11962;0.216408;1.3315;198880;192012 +3602/3917;Alpha: Sending ticket of wrong type from implicit accounts must be rejected;0.831717;0.151488;0.980612;198752;190348 +3603/3917;Mumbai: Sending ticket of wrong type from implicit accounts must be rejected;0.866111;0.123841;0.988131;198504;190496 +3604/3917;Nairobi: Sending ticket of wrong type from implicit accounts must be rejected;0.838778;0.153417;0.990321;198756;190304 +3605/3917;Alpha: Sending tickets to either implicit accounts or originated contracts accepting tickets with default entrypoint should equally work;0.985665;0.183221;1.16398;198756;191988 +3606/3917;Mumbai: Sending tickets to either implicit accounts or originated contracts accepting tickets with default entrypoint should equally work;1.00678;0.180002;1.18247;198628;192264 +3607/3917;Nairobi: Sending tickets to either implicit accounts or originated contracts accepting tickets with default entrypoint should equally work;0.998067;0.168378;1.16156;198880;191912 +3608/3917;Alpha: Minting then sending tickets to smart-contract rollup should succeed with appropriate ticket updates field in receipt.;1.98903;0.443448;2.40501;388300;566428 +3609/3917;Mumbai: Minting then sending tickets to smart-contract rollup should succeed with appropriate ticket updates field in receipt.;1.99593;0.426489;2.39267;388332;567508 +3610/3917;Nairobi: Minting then sending tickets to smart-contract rollup should succeed with appropriate ticket updates field in receipt.;2.05548;0.372787;2.4026;388124;567336 +3611/3917;Alpha: Sending tickets from storage to smart-contract rollup should succeed with appropriate ticket updates field in receipt.;2.35089;0.431298;2.74578;388332;568284 +3612/3917;Mumbai: Sending tickets from storage to smart-contract rollup should succeed with appropriate ticket updates field in receipt.;2.31793;0.459668;2.73543;388328;567804 +3613/3917;Nairobi: Sending tickets from storage to smart-contract rollup should succeed with appropriate ticket updates field in receipt.;2.3294;0.447341;2.73852;388200;568424 +3614/3917;Alpha: Run tzip4_view `tzip4_view_const`;0.682088;0.128049;0.809205;198628;189416 +3615/3917;Mumbai: Run tzip4_view `tzip4_view_const`;0.690225;0.123223;0.811411;198756;189188 +3616/3917;Nairobi: Run tzip4_view `tzip4_view_const`;0.680314;0.123764;0.802678;198628;189132 +3617/3917;Alpha: Run tzip4_view `tzip4_view_add`;0.6668;0.136332;0.802086;198624;189056 +3618/3917;Mumbai: Run tzip4_view `tzip4_view_add`;0.670028;0.132359;0.800761;198756;189368 +3619/3917;Nairobi: Run tzip4_view `tzip4_view_add`;0.689878;0.116288;0.805194;198624;189120 +3620/3917;Alpha: used and paid storage spaces;2.74152;0.546822;3.26835;388200;569800 +3621/3917;Mumbai: used and paid storage spaces;2.75631;0.53933;3.2748;388332;569964 +3622/3917;Nairobi: used and paid storage spaces;2.80997;0.538675;3.32929;388200;569856 +3623/3917;Alpha: VDF daemon;31.5906;5.71458;33.5718;374508;824700 +3624/3917;Mumbai: VDF daemon;31.9457;5.64547;33.7175;388200;839400 +3625/3917;Nairobi: VDF daemon;31.8925;5.68194;33.7639;388196;840000 +3626/3917;Alpha: Run views;1.0996;0.240644;1.33626;198888;192528 +3627/3917;Mumbai: Run views;1.16615;0.171922;1.33394;198760;191792 +3628/3917;Nairobi: Run views;1.07966;0.260139;1.33533;198760;191940 +3629/3917;Alpha: Test view runtimes - op_id - (Pair 0 0);0.98511;0.172619;1.15438;199012;191468 +3630/3917;Mumbai: Test view runtimes - op_id - (Pair 0 0);0.968988;0.184128;1.14942;198888;191852 +3631/3917;Nairobi: Test view runtimes - op_id - (Pair 0 0);0.94829;0.209204;1.15375;199008;191804 +3632/3917;Alpha: Test view runtimes - op_add - 42;0.99158;0.167891;1.15559;199012;191684 +3633/3917;Mumbai: Test view runtimes - op_add - 42;0.993474;0.170806;1.16042;198756;191540 +3634/3917;Nairobi: Test view runtimes - op_add - 42;0.969754;0.188392;1.1545;199016;191652 +3635/3917;Alpha: Test view runtimes - fib - 0;0.951847;0.221181;1.17036;199904;192536 +3636/3917;Mumbai: Test view runtimes - fib - 0;1.02;0.152048;1.16953;199776;192956 +3637/3917;Nairobi: Test view runtimes - fib - 0;1.02018;0.168234;1.18536;200292;193788 +3638/3917;Alpha: Test view runtimes - mutual_recursion - 0;0.987788;0.176836;1.16109;199012;191424 +3639/3917;Mumbai: Test view runtimes - mutual_recursion - 0;1.00699;0.1599;1.16339;198880;192112 +3640/3917;Nairobi: Test view runtimes - mutual_recursion - 0;1.00384;0.171923;1.17315;199012;191796 +3641/3917;Alpha: Test view runtimes - op_nonexistent_func - True;1.00261;0.168677;1.16718;199016;191304 +3642/3917;Mumbai: Test view runtimes - op_nonexistent_func - True;0.931653;0.227695;1.1558;198628;191788 +3643/3917;Nairobi: Test view runtimes - op_nonexistent_func - True;0.960205;0.207668;1.16405;199012;191444 +3644/3917;Alpha: Test view runtimes - op_nonexistent_addr - True;0.974348;0.192591;1.16396;199016;191664 +3645/3917;Mumbai: Test view runtimes - op_nonexistent_addr - True;0.957593;0.200796;1.15529;198760;191696 +3646/3917;Nairobi: Test view runtimes - op_nonexistent_addr - True;0.956462;0.199357;1.15308;198944;192076 +3647/3917;Alpha: Test view runtimes - op_toplevel_inconsistent_input_type - 5;0.936815;0.21604;1.14944;199012;191696 +3648/3917;Mumbai: Test view runtimes - op_toplevel_inconsistent_input_type - 5;0.965261;0.196695;1.15806;198888;192104 +3649/3917;Nairobi: Test view runtimes - op_toplevel_inconsistent_input_type - 5;0.973375;0.181286;1.15186;199140;191880 +3650/3917;Alpha: Test view runtimes - op_toplevel_inconsistent_output_type - True;1.00238;0.167983;1.16637;198828;191820 +3651/3917;Mumbai: Test view runtimes - op_toplevel_inconsistent_output_type - True;0.949916;0.204502;1.1506;198760;191588 +3652/3917;Nairobi: Test view runtimes - op_toplevel_inconsistent_output_type - True;0.992233;0.164084;1.1522;199012;191660 +3653/3917;Alpha: Create contract with view;1.21853;0.272609;1.48962;198756;191152 +3654/3917;Mumbai: Create contract with view;1.24625;0.239981;1.48301;198760;191808 +3655/3917;Nairobi: Create contract with view;1.24286;0.22878;1.46898;198884;192192 +3656/3917;Alpha: Step constants in view;0.997688;0.163767;1.15898;199012;192232 +3657/3917;Mumbai: Step constants in view;0.968205;0.200007;1.16588;198884;191956 +3658/3917;Nairobi: Step constants in view;0.972061;0.191767;1.16136;199008;191608 +3659/3917;Alpha: self after view - self_after_view;0.986522;0.171856;1.15571;199016;191808 +3660/3917;Mumbai: self after view - self_after_view;0.999705;0.164038;1.16067;198756;191752 +3661/3917;Nairobi: self after view - self_after_view;0.968425;0.195262;1.16109;199012;192036 +3662/3917;Alpha: self after view - self_after_fib_view;0.995028;0.172331;1.16513;199008;191480 +3663/3917;Mumbai: self after view - self_after_fib_view;0.993574;0.170728;1.16138;198756;191500 +3664/3917;Nairobi: self after view - self_after_fib_view;0.955984;0.203256;1.15664;199012;191768 +3665/3917;Alpha: self after view - self_after_nonexistent_view;0.971068;0.197873;1.16585;199016;192220 +3666/3917;Mumbai: self after view - self_after_nonexistent_view;0.988335;0.176215;1.16158;198756;191872 +3667/3917;Nairobi: self after view - self_after_nonexistent_view;1.00274;0.168727;1.16874;198884;191824 +3668/3917;Alpha: self address after view - self_address_after_view;0.979462;0.187372;1.16421;199140;191364 +3669/3917;Mumbai: self address after view - self_address_after_view;0.981848;0.187936;1.16679;198760;191892 +3670/3917;Nairobi: self address after view - self_address_after_view;0.973377;0.186959;1.15742;199016;191504 +3671/3917;Alpha: self address after view - self_address_after_fib_view;0.991425;0.167881;1.16219;199012;191876 +3672/3917;Mumbai: self address after view - self_address_after_fib_view;1.00874;0.164499;1.17008;198760;191752 +3673/3917;Nairobi: self address after view - self_address_after_fib_view;0.978133;0.191239;1.16643;199016;191648 +3674/3917;Alpha: self address after view - self_address_after_nonexistent_view;0.970175;0.195414;1.1634;199052;191980 +3675/3917;Mumbai: self address after view - self_address_after_nonexistent_view;0.96235;0.199376;1.15878;198756;192052 +3676/3917;Nairobi: self address after view - self_address_after_nonexistent_view;0.995752;0.167467;1.16032;199016;192088 +3677/3917;Alpha: sender after view - sender_after_view;0.991079;0.172396;1.16087;198888;192104 +3678/3917;Mumbai: sender after view - sender_after_view;0.998515;0.168272;1.16359;198756;191752 +3679/3917;Nairobi: sender after view - sender_after_view;0.961381;0.179459;1.1381;199012;191892 +3680/3917;Alpha: sender after view - sender_after_fib_view;0.978499;0.187115;1.16293;199012;191824 +3681/3917;Mumbai: sender after view - sender_after_fib_view;1.0169;0.155886;1.16976;198756;191984 +3682/3917;Nairobi: sender after view - sender_after_fib_view;1.01417;0.157514;1.16859;199140;191440 +3683/3917;Alpha: sender after view - sender_after_nonexistent_view;1.022;0.151627;1.1707;199008;192280 +3684/3917;Mumbai: sender after view - sender_after_nonexistent_view;0.966827;0.199502;1.16356;198628;192072 +3685/3917;Nairobi: sender after view - sender_after_nonexistent_view;0.967374;0.195477;1.1599;199008;192072 +3686/3917;Alpha: balance after view - balance_after_view;0.993983;0.172515;1.16375;199016;191780 +3687/3917;Mumbai: balance after view - balance_after_view;0.958206;0.212063;1.16723;198760;191972 +3688/3917;Nairobi: balance after view - balance_after_view;0.957685;0.211271;1.16584;198912;192292 +3689/3917;Alpha: balance after view - balance_after_fib_view;1.03309;0.140238;1.16934;199008;191480 +3690/3917;Mumbai: balance after view - balance_after_fib_view;0.96656;0.207742;1.17124;198756;192132 +3691/3917;Nairobi: balance after view - balance_after_fib_view;1.02307;0.148446;1.16841;199016;191984 +3692/3917;Alpha: balance after view - balance_after_nonexistent_view;1.00305;0.164439;1.16514;199012;192008 +3693/3917;Mumbai: balance after view - balance_after_nonexistent_view;1.02057;0.144494;1.16189;198736;191792 +3694/3917;Nairobi: balance after view - balance_after_nonexistent_view;0.981952;0.175599;1.15455;199012;191932 +3695/3917;Alpha: amount after view - amount_after_view;0.952698;0.22425;1.17444;199012;191612 +3696/3917;Mumbai: amount after view - amount_after_view;0.955709;0.204387;1.15687;198756;192012 +3697/3917;Nairobi: amount after view - amount_after_view;0.963143;0.200962;1.1616;199140;191732 +3698/3917;Alpha: amount after view - amount_after_fib_view;0.974286;0.192796;1.1642;199016;191932 +3699/3917;Mumbai: amount after view - amount_after_fib_view;0.979802;0.176693;1.15332;198756;191848 +3700/3917;Nairobi: amount after view - amount_after_fib_view;0.983361;0.193488;1.17398;199016;191832 +3701/3917;Alpha: amount after view - amount_after_nonexistent_view;1.00714;0.167787;1.17183;199012;191756 +3702/3917;Mumbai: amount after view - amount_after_nonexistent_view;1.00725;0.164366;1.16879;198760;191576 +3703/3917;Nairobi: amount after view - amount_after_nonexistent_view;0.97541;0.184092;1.1569;199008;191328 +3704/3917;Alpha: Recursive view;0.697986;0.119788;0.816409;198584;189344 +3705/3917;Mumbai: Recursive view;0.689258;0.128384;0.81519;198504;189608 +3706/3917;Nairobi: Recursive view;0.690096;0.12027;0.808992;198632;189368 +3707/3917;Alpha: Typecheck view - view_toplevel_bad_type;0.540919;0.10496;0.645571;197860;188404 +3708/3917;Mumbai: Typecheck view - view_toplevel_bad_type;0.55657;0.088336;0.644236;197860;188008 +3709/3917;Nairobi: Typecheck view - view_toplevel_bad_type;0.559607;0.091781;0.650637;197988;188540 +3710/3917;Alpha: Typecheck view - view_toplevel_bad_return_type;0.568111;0.083717;0.651129;197860;188168 +3711/3917;Mumbai: Typecheck view - view_toplevel_bad_return_type;0.562952;0.084072;0.646315;197856;187872 +3712/3917;Nairobi: Typecheck view - view_toplevel_bad_return_type;0.56655;0.08435;0.650166;197988;188152 +3713/3917;Alpha: Typecheck view - view_toplevel_bad_input_type;0.594192;0.056151;0.649853;197860;187656 +3714/3917;Mumbai: Typecheck view - view_toplevel_bad_input_type;0.567196;0.084047;0.650538;197812;187972 +3715/3917;Nairobi: Typecheck view - view_toplevel_bad_input_type;0.57095;0.071922;0.642307;197984;187648 +3716/3917;Alpha: Typecheck view - view_toplevel_invalid_arity;0.568484;0.067676;0.635777;197860;187940 +3717/3917;Mumbai: Typecheck view - view_toplevel_invalid_arity;0.553482;0.095625;0.64821;197860;187692 +3718/3917;Nairobi: Typecheck view - view_toplevel_invalid_arity;0.549459;0.095902;0.644486;197988;187844 +3719/3917;Alpha: Typecheck view - view_toplevel_bad_name_too_long;0.57502;0.079719;0.654491;197728;188124 +3720/3917;Mumbai: Typecheck view - view_toplevel_bad_name_too_long;0.556779;0.09206;0.647875;197860;188272 +3721/3917;Nairobi: Typecheck view - view_toplevel_bad_name_too_long;0.553486;0.09989;0.65268;197992;187896 +3722/3917;Alpha: Typecheck view - view_toplevel_bad_name_invalid_type;0.565099;0.076052;0.643245;197732;187516 +3723/3917;Mumbai: Typecheck view - view_toplevel_bad_name_invalid_type;0.540429;0.111879;0.651602;197860;187960 +3724/3917;Nairobi: Typecheck view - view_toplevel_bad_name_invalid_type;0.568368;0.080202;0.64785;197988;188052 +3725/3917;Alpha: Typecheck view - view_toplevel_bad_name_non_printable_char;0.514403;0.124147;0.637965;197728;187984 +3726/3917;Mumbai: Typecheck view - view_toplevel_bad_name_non_printable_char;0.564759;0.083779;0.647735;197860;188036 +3727/3917;Nairobi: Typecheck view - view_toplevel_bad_name_non_printable_char;0.560404;0.088474;0.647994;197988;188088 +3728/3917;Alpha: Typecheck view - view_toplevel_duplicated_name;0.558531;0.096409;0.654532;197988;187748 +3729/3917;Mumbai: Typecheck view - view_toplevel_duplicated_name;0.585281;0.072488;0.657074;197860;188060 +3730/3917;Nairobi: Typecheck view - view_toplevel_duplicated_name;0.569987;0.072368;0.64172;197992;187752 +3731/3917;Alpha: Typecheck view - view_toplevel_dupable_type_output;0.551111;0.095713;0.646427;197984;188052 +3732/3917;Mumbai: Typecheck view - view_toplevel_dupable_type_output;0.581518;0.064195;0.644994;197860;188004 +3733/3917;Nairobi: Typecheck view - view_toplevel_dupable_type_output;0.575014;0.075907;0.650302;197992;187856 +3734/3917;Alpha: Typecheck view - view_toplevel_dupable_type_input;0.555145;0.091743;0.646358;197864;187820 +3735/3917;Mumbai: Typecheck view - view_toplevel_dupable_type_input;0.540256;0.108284;0.647729;197988;188416 +3736/3917;Nairobi: Typecheck view - view_toplevel_dupable_type_input;0.554226;0.095851;0.649477;197984;187852 +3737/3917;Alpha: Typecheck view - view_toplevel_lazy_storage_input;0.548907;0.109195;0.657475;197856;188140 +3738/3917;Mumbai: Typecheck view - view_toplevel_lazy_storage_input;0.556196;0.088181;0.643698;197860;188064 +3739/3917;Nairobi: Typecheck view - view_toplevel_lazy_storage_input;0.549781;0.103075;0.650474;197984;188136 +3740/3917;Alpha: Typecheck view - view_toplevel_lazy_storage_output;0.549838;0.100315;0.649728;197864;187804 +3741/3917;Mumbai: Typecheck view - view_toplevel_lazy_storage_output;0.560321;0.084972;0.644372;197860;187604 +3742/3917;Nairobi: Typecheck view - view_toplevel_lazy_storage_output;0.564929;0.080119;0.644453;197988;187872 +3743/3917;Alpha: Typecheck view - view_op_invalid_arity;0.553952;0.096061;0.64964;197860;188676 +3744/3917;Mumbai: Typecheck view - view_op_invalid_arity;0.544547;0.104318;0.647884;197864;188252 +3745/3917;Nairobi: Typecheck view - view_op_invalid_arity;0.549366;0.091915;0.640356;197988;187716 +3746/3917;Alpha: Typecheck view - view_op_bad_name_invalid_type;0.552347;0.096094;0.647898;197860;188628 +3747/3917;Mumbai: Typecheck view - view_op_bad_name_invalid_type;0.530598;0.117454;0.647167;197856;187748 +3748/3917;Nairobi: Typecheck view - view_op_bad_name_invalid_type;0.57856;0.076272;0.654133;197988;188068 +3749/3917;Alpha: Typecheck view - view_op_bad_name_too_long;0.563835;0.088096;0.651213;197860;187940 +3750/3917;Mumbai: Typecheck view - view_op_bad_name_too_long;0.555725;0.087372;0.642416;197856;188196 +3751/3917;Nairobi: Typecheck view - view_op_bad_name_too_long;0.535158;0.108703;0.642969;197988;187956 +3752/3917;Alpha: Typecheck view - view_op_bad_name_non_printable_char;0.577486;0.071882;0.648607;197732;188124 +3753/3917;Mumbai: Typecheck view - view_op_bad_name_non_printable_char;0.549889;0.104386;0.653355;197988;188000 +3754/3917;Nairobi: Typecheck view - view_op_bad_name_non_printable_char;0.572589;0.07645;0.64828;197988;188264 +3755/3917;Alpha: Typecheck view - view_op_bad_name_invalid_char_set;0.572923;0.084119;0.656327;197732;187876 +3756/3917;Mumbai: Typecheck view - view_op_bad_name_invalid_char_set;0.521735;0.124593;0.645536;197692;188076 +3757/3917;Nairobi: Typecheck view - view_op_bad_name_invalid_char_set;0.560423;0.096257;0.655993;197992;187904 +3758/3917;Alpha: Typecheck view - view_op_bad_return_type;0.572697;0.076359;0.648578;197992;188632 +3759/3917;Mumbai: Typecheck view - view_op_bad_return_type;0.557382;0.091416;0.647947;197992;188076 +3760/3917;Nairobi: Typecheck view - view_op_bad_return_type;0.550693;0.108313;0.658128;197856;188296 +3761/3917;Alpha: Typecheck view - view_op_dupable_type;0.559629;0.092027;0.650949;197736;188652 +3762/3917;Mumbai: Typecheck view - view_op_dupable_type;0.577706;0.080785;0.657768;197864;187668 +3763/3917;Nairobi: Typecheck view - view_op_dupable_type;0.557382;0.092308;0.648921;197860;187764 +3764/3917;Alpha: Typecheck view - view_op_lazy_storage;0.565568;0.076275;0.641597;197860;188324 +3765/3917;Mumbai: Typecheck view - view_op_lazy_storage;0.573145;0.071982;0.644202;197860;187820 +3766/3917;Nairobi: Typecheck view - view_op_lazy_storage;0.557031;0.092413;0.648819;197992;187912 +3767/3917;Alpha: successful_test;5.18056;0.867462;5.94207;388204;594920 +3768/3917;Mumbai: successful_test;5.09229;0.979891;5.96972;388456;594816 +3769/3917;Nairobi: successful_test;5.14883;0.889721;5.94182;388208;595348 +3770/3917;Alpha: failing_origination;2.00441;0.381356;2.37248;388200;568320 +3771/3917;Mumbai: failing_origination;2.02937;0.376299;2.3898;388068;568056 +3772/3917;Nairobi: failing_origination;2.04113;0.374527;2.40159;388196;568832 +3773/3917;Alpha: failing_publish;2.06853;0.359306;2.4126;388064;568604 +3774/3917;Mumbai: failing_publish;2.09001;0.316615;2.39079;388200;567980 +3775/3917;Nairobi: failing_publish;2.07545;0.35687;2.41737;373996;553884 +3776/3917;Alpha: failing_update;2.08288;0.358512;2.42687;388068;568596 +3777/3917;Mumbai: failing_update;1.99305;0.384557;2.36238;388072;568596 +3778/3917;Nairobi: failing_update;1.97112;0.421714;2.37696;388204;567956 +3779/3917;Alpha: Testing DAL L1 integration (dal basic logic);11.1944;1.83732;12.935;377252;591264 +3780/3917;Alpha: Testing DAL L1 integration (slots attestation operation behavior);11.0023;2.15787;12.9951;377120;609364 +3781/3917;Alpha: Testing DAL L1 integration (slots attestation operation dal committee membership check);3.95134;0.708601;4.62643;377376;564452 +3782/3917;Alpha: Testing DAL L1 integration (feature_flag_is_disabled);4.15875;0.593903;4.73114;377100;565684 +3783/3917;Alpha: Testing DAL L1 integration (one_committee_per_epoch);2.26941;0.271794;2.53851;377100;553748 +3784/3917;Alpha: dal node startup;1.83506;0.393965;2.16563;388200;570796 +3785/3917;Alpha: Testing DAL node (dal node slot management);2.88658;0.2727;3.14807;377380;560004 +3786/3917;Alpha: Testing DAL node (dal node slot headers tracking);9.8315;1.65752;11.3811;377080;714108 +3787/3917;Alpha: Testing DAL node (dal node shard fetching and slot reconstruction);3.83919;0.454586;4.27156;377252;652320 +3788/3917;Alpha: Testing DAL node (dal node slots propagation);5.24567;0.427888;5.52502;372768;843728 +3789/3917;Alpha: Testing DAL node (dal node POST /commitments);2.8788;0.328806;3.28364;377120;556712 +3790/3917;Alpha: Testing DAL node (dal node PATCH /commitments);2.84116;0.334869;3.16864;377252;553588 +3791/3917;Alpha: Testing DAL node (dal node GET /commitments//slot);2.88128;0.304228;3.1773;377256;554436 +3792/3917;Alpha: Testing DAL node (dal node GET /commitments//proof);2.89974;0.280347;3.17368;377120;553968 +3793/3917;Alpha: Testing DAL node (dal node PATCH+GET /profiles);2.79265;0.309066;3.09182;377248;552012 +3794/3917;Alpha: Testing DAL node (dal node GET /profiles//attested_levels//assigned_shard_indices);2.83785;0.271793;3.10271;377252;551672 +3795/3917;Alpha: Testing DAL node (dal node GET /profiles//attested_levels//attestable_slots);4.63818;0.579235;5.17946;377060;667092 +3796/3917;Alpha: Testing DAL node (dal attestor with bake for);9.08904;1.45348;10.4226;377124;714748 +3797/3917;Alpha: Testing DAL node (dal attestor with baker daemon);8.9818;1.36198;16.8108;377256;714488 +3798/3917;Alpha: Testing DAL node (GS/P2P connection and disconnection);3.51133;0.294583;3.8054;377252;640600 +3799/3917;Alpha: Testing DAL node (GS join topic);2.9598;0.307108;3.25671;377128;642888 +3800/3917;Alpha: Testing DAL node (GS valid messages exchange);4.81218;0.512839;5.30789;377384;748364 +3801/3917;Alpha: Testing DAL node (GS invalid messages exchange);6.19209;0.711328;6.89855;377256;1113172 +3802/3917;Alpha: Testing DAL node (baker registers profiles with dal node);3.56626;0.401919;15.8321;377092;644924 +3803/3917;Alpha: Testing DAL rollup and node with L1 (rollup_node_downloads_slots);10.3691;1.88;11.8753;377384;784176 +3804/3917;Alpha: Testing DAL rollup and node with L1 (rollup_node_applies_dal_pages);11.336;1.96087;12.8092;373284;791152 +3805/3917;Alpha: Testing DAL rollup and node with L1 (testnet_lag-2_time-6_preinject-1_slots-2);7.83501;0.993922;49.5353;377384;1184888 +3806/3917;Alpha: Testing DAL rollup and node with L1 (testnet_lag-2_time-2_preinject-5_slots-5);10.9973;1.36073;34.8992;377248;1242164 +3807/3917;Alpha: Testing DAL rollup and node with L1 (mainnet_lag-2_time-15_preinject-1_slots-1);75.9589;1.09519;174.016;438764;1572516 +3808/3917;Alpha: Testing DAL rollup and node with L1 (mainnet_lag-3_time-5_preinject-10_slots-5);62.9523;1.70498;153.823;677084;1665124 +3809/3917;Alpha: Testing Full DAC infrastructure (dac_streaming_of_root_hashes);1.86391;0.439473;2.27842;372660;590992 +3810/3917;Alpha: Testing Full DAC infrastructure (dac_push_signature_as_member);2.0285;0.474072;2.48176;372660;549876 +3811/3917;Alpha: Testing Full DAC infrastructure (committee member downloads pages from coordinator);1.83112;0.369057;2.18028;372788;550216 +3812/3917;Alpha: Testing Full DAC infrastructure (dac_get_certificate);2.20403;0.469288;2.65534;372664;550292 +3813/3917;Alpha: Testing Full DAC infrastructure (dac_store_member_signature);2.76851;0.543793;3.29397;372652;598228 +3814/3917;Alpha: Testing Full DAC infrastructure (dac_coordinator_post_preimage_endpoint);1.72425;0.333823;2.04568;372792;551200 +3815/3917;Alpha: Testing Full DAC infrastructure (dac_observer_get_missing_page);2.57128;0.553762;3.0861;372656;642316 +3816/3917;Alpha: Testing DAC L1 integration (dac_observer_times_out_when_page_cannot_be_fetched);1.47081;0.355431;5.8108;372404;546232 +3817/3917;Alpha: Testing Full DAC infrastructure (committee members and observers download pages from coordinator);2.24506;0.409193;2.63034;372660;595100 +3818/3917;Alpha: Testing Full DAC infrastructure (certificates are updated in streaming endpoint);2.46909;0.561302;2.97971;372788;601604 +3819/3917;Alpha: Testing Full DAC infrastructure (test client commands (hex payload from CLI));2.56131;0.539007;3.06172;372660;631916 +3820/3917;Alpha: Testing Full DAC infrastructure (test client commands (binary payload from file));2.58174;0.563732;3.10621;372624;631704 +3821/3917;Alpha: Testing Full DAC infrastructure (test serialized certificate);2.55085;0.496587;3.01381;372664;630808 +3822/3917;Alpha: Testing Full DAC infrastructure (test committee member disconnects from Coordinator);2.16733;0.420088;4.4914;372920;550120 +3823/3917;Alpha: Testing Full DAC infrastructure (test DAC disconnects from L1);2.50282;0.60678;4.63567;372660;592960 +3824/3917;Alpha: Testing Full DAC infrastructure (kernel_e2e.dac_observer_synced_with_dac);1.93741;0.441273;2.36023;372660;550012 +3825/3917;Alpha: Testing Full DAC infrastructure (kernel_e2e.dac_observer_missing_pages);1.84853;0.378966;2.21471;372784;549676 +3826/3917;Alpha: Testing Full DAC infrastructure (test v1/get_pages);1.70509;0.351762;2.04165;372788;549796 +3827/3917;Alpha: Testing Full DAC infrastructure (test --allow_v1_api feature flag);1.76604;0.298973;2.04951;372784;550100 +3828/3917;Alpha: Testing Full DAC infrastructure (test Coordinator's post preimage);1.68675;0.389962;2.06002;372784;550144 +3829/3917;Alpha: Testing Full DAC infrastructure (test GET v0/preimage);1.72385;0.358574;2.06736;372788;550172 +3830/3917;Alpha: Testing Full DAC infrastructure (test PUT v0/dac_member_signature);2.26903;0.438121;2.69217;372660;549676 +3831/3917;Alpha: Testing Full DAC infrastructure (test GET v0/certificate);2.27607;0.430855;2.6926;372788;549316 +3832/3917;Alpha: Testing Full DAC infrastructure (test GET v0/missing_page);2.91374;0.63177;3.50191;372664;688528 +3833/3917;Alpha: Testing Full DAC infrastructure (test GET v0/monitor/root_hashes);1.70255;0.371975;2.05808;372792;549816 +3834/3917;Alpha: Testing Full DAC infrastructure (test GET v0/monitor/certificate);2.05388;0.468734;2.49385;372536;559924 +3835/3917;Mumbai: dac Legacy startup not ready with unsupported protocol;1.26914;0.256996;1.5376;388196;559760 +3836/3917;Mumbai: dac coordinator startup not ready with unsupported protocol;1.27087;0.260402;1.54329;388200;559672 +3837/3917;Mumbai: dac Observer startup not ready with unsupported protocol;1.26677;0.265775;1.5449;388200;559404 +3838/3917;Mumbai: dac Member startup not ready with unsupported protocol;1.26162;0.252677;1.52647;388076;559324 +3839/3917;Alpha: Originate EVM kernel with installer;1.17097;0.212932;1.38539;388076;559456 +3840/3917;Alpha: EVM proxy server connection;1.59053;0.315734;1.89043;388328;564720 +3841/3917;Alpha: RPC method eth_getBalance;1.13725;0.254856;1.39328;388188;559356 +3842/3917;Alpha: RPC method eth_getBlockByNumber;1.19639;0.176127;1.37407;388204;559328 +3843/3917;Alpha: RPC method eth_getTransactionCount;1.18434;0.203137;1.38947;388204;559224 +3844/3917;Alpha: RPC method eth_getTransactionCount in batch;1.15343;0.243232;1.39849;388200;559412 +3845/3917;Alpha: RPC batch requests;1.1726;0.212284;1.38643;388204;559264 +3846/3917;Alpha: Check L2 blocks progression;1.15759;0.217195;1.37689;388196;559532 +3847/3917;Alpha: Check L2 transfers are applied;1.12375;0.235874;1.36063;388200;559512 +3848/3917;Alpha: Check L2 chunked transfers are applied;1.1532;0.229841;1.38476;388204;559732 +3849/3917;Alpha: Check RPC txpool_content is available;0.291071;0.068199;0.377369;192424;106436 +3850/3917;Alpha: Check RPC web3_clientVersion;0.299157;0.075956;0.393216;193492;107992 +3851/3917;Alpha: A block can be simulated in the rollup node;1.14441;0.244835;1.39036;388204;559536 +3852/3917;Alpha: Check `evm_getBlockByNumber` with full blocks returns the correct informations;1.12712;0.243755;1.3721;388200;559700 +3853/3917;Alpha: Check `evm_getBlockByNumber` works correctly when asking for the `latest`;1.15697;0.214054;1.37205;388200;559388 +3854/3917;Alpha: Check `eth_call.to` input can be null;1.19386;0.177171;1.37361;388200;559540 +3855/3917;Alpha: Check L2 contract deployment;1.15066;0.260992;1.41308;388196;559064 +3856/3917;Alpha: Check L2 contract call;1.15685;0.219265;1.37713;388332;559892 +3857/3917;Alpha: Check L2 erc20 contract deployment;1.17888;0.229248;1.4105;388204;559304 +3858/3917;Alpha: Check blocks can contain more than 64 transactions;1.16425;0.203974;1.37135;388204;560004 +3859/3917;Alpha: Try to call a view (directly through proxy);1.1777;0.195428;1.37407;388196;559540 +3860/3917;Alpha: Try to call a view (directly through rollup node);1.16538;0.23888;1.40544;388200;559040 +3861/3917;Alpha: Try to call a view through an ethereum client;1.18062;0.20175;1.38323;388200;559312 +3862/3917;Alpha: Try to call with a large amount of data;1.1402;0.238025;1.38051;388200;559944 +3863/3917;Alpha: Creates a kernel with an initialized dictator key;1.20978;0.177733;1.38841;388204;559992 +3864/3917;Alpha: Deposit FA1.2 token;2.05464;0.428462;2.4552;388328;569484 +3865/3917;Alpha: Try to estimate gas for contract creation;1.17964;0.212916;1.39377;387956;560012 +3866/3917;Alpha: eth_estimateGas allows additional fields;1.15699;0.220139;1.37873;388200;559268 +3867/3917;Alpha: Ensures EVM kernel's upgrade integrity to a debug kernel;1.15382;0.216028;1.37085;388200;560144 +3868/3917;Alpha: Ensures EVM kernel's upgrade integrity to itself;1.19553;0.20641;1.40336;388200;559432 +3869/3917;Alpha: Ensures EVM kernel's upgrade fails with a wrong dictator key;1.18333;0.199652;1.38544;388200;559472 +3870/3917;Alpha: Ensures EVM kernel's upgrade fails with a wrong upgrade nonce;1.1906;0.212888;1.40452;388196;559152 +3871/3917;Alpha: Ensures EVM kernel's upgrade fails with a wrong rollup address;1.14702;0.220326;1.36965;388200;559412 +3872/3917;Alpha: Ensures EVM kernel's upgrade fails if there is no dictator;1.20888;0.176162;1.38577;388200;559840 +3873/3917;Alpha: wasm_2_0_0 - tx kernel should run e2e (kernel_e2e);1.15882;0.235392;1.39736;388196;559776 +3874/3917;Alpha: wasm_2_0_0 - bootstrapped tx kernel should run e2e (kernel_e2e);0.297591;0.031918;0.32953;191096;95704 +3875/3917;Alpha: Originate sequencer kernel & consume delayed inbox messages;1.18815;0.192725;1.38191;388328;559440 +3876/3917;Alpha: check of the cost function definitions;0.351289;0.035954;0.387177;191392;134908 +3877/3917;Alpha: Correct guess test on timelock;2.22126;0.488625;2.70628;201124;198896 +3878/3917;Alpha: Incorrect guess test on timelock;2.20477;0.499329;2.69917;200608;197956 +3879/3917;Alpha: Guess too late test on timelock;4.15131;0.750456;4.80248;388328;588952 +3880/3917;Alpha: Error opening test on timelock;2.12353;0.411955;2.53169;200960;198040 +3881/3917;Mumbai: Check a contract containing timelock operations is forbidden;0.52647;0.124655;0.650551;197860;187584 +3882/3917;kernel echo run (proof, v0);4.43761;0.040014;4.47804;252788;155616 +3883/3917;kernel echo run (proof, v1);4.38691;0.035991;4.42333;252688;155424 +3884/3917;kernel echo run (proof, v2);4.4103;0.055978;4.46787;252912;155620 +3885/3917;kernel echo run (hash, v0);0.340431;0.04005;0.382223;193184;95972 +3886/3917;kernel echo run (hash, v1);0.356106;0.032009;0.38981;193316;95972 +3887/3917;kernel echo run (hash, v2);0.361555;0.020086;0.383289;193312;95972 +3888/3917;kernel tx_no_verify run (proof, v0);33.2824;0.108007;33.3921;535856;440056 +3889/3917;kernel tx_no_verify run (proof, v1);33.3;0.116;33.4179;534836;439004 +3890/3917;kernel tx_no_verify run (proof, v2);33.1238;0.083999;33.2096;542432;446380 +3891/3917;kernel tx_no_verify run (hash, v0);34.8042;0.084;34.8907;491256;395188 +3892/3917;kernel tx_no_verify run (hash, v1);34.5888;0.084001;34.6736;491196;395232 +3893/3917;kernel tx_no_verify run (hash, v2);34.7998;0.068007;34.8699;482916;386788 +3894/3917;kernel link_store_create run (proof, v0);0.419056;0.032235;0.45289;205224;108004 +3895/3917;kernel link_store_create run (proof, v1);1.45908;0.031979;1.49262;230408;133432 +3896/3917;kernel link_store_create run (proof, v2);1.43948;0.043984;1.48501;230660;133344 +3897/3917;kernel link_store_create run (hash, v0);0.329528;0.020093;0.349928;193316;95972 +3898/3917;kernel link_store_create run (hash, v1);0.510536;0.019942;0.532181;195108;98020 +3899/3917;kernel link_store_create run (hash, v2);0.508195;0.024009;0.532622;195108;97760 +3900/3917;kernel link_store_delete_value run (proof, v0);0.429426;0.023857;0.454894;205728;108512 +3901/3917;kernel link_store_delete_value run (proof, v1);1.43245;0.040012;1.47285;230156;133348 +3902/3917;kernel link_store_delete_value run (proof, v2);1.47007;0.059921;1.53175;230420;133264 +3903/3917;kernel link_store_delete_value run (hash, v0);0.330498;0.027873;0.358733;193444;96228 +3904/3917;kernel link_store_delete_value run (hash, v1);0.515352;0.023969;0.541003;195104;98020 +3905/3917;kernel link_store_delete_value run (hash, v2);0.492852;0.040069;0.534641;194976;98020 +3906/3917;kernel link_store_get_hash run (proof, v0);0.430335;0.028152;0.460064;207396;110304 +3907/3917;kernel link_store_get_hash run (proof, v1);1.49823;0.031962;1.53184;230412;133088 +3908/3917;kernel link_store_get_hash run (proof, v2);1.47594;0.028074;1.50557;230116;132832 +3909/3917;kernel link_store_get_hash run (hash, v0);0.323292;0.027938;0.352733;193020;95972 +3910/3917;kernel link_store_get_hash run (hash, v1);0.501677;0.032107;0.535538;195364;98280 +3911/3917;kernel link_store_get_hash run (hash, v2);0.502339;0.02813;0.532191;195192;98020 +3912/3917;kernel link_store_exists run (proof, v0);0.407893;0.039989;0.449491;204412;107236 +3913/3917;kernel link_store_exists run (proof, v1);0.420423;0.02002;0.441987;204708;107492 +3914/3917;kernel link_store_exists run (proof, v2);1.46018;0.032091;1.49389;230420;133092 +3915/3917;kernel link_store_exists run (hash, v0);0.316508;0.032051;0.350079;193404;95976 +3916/3917;kernel link_store_exists run (hash, v1);0.317623;0.036185;0.355325;193060;95968 +3917/3917;kernel link_store_exists run (hash, v2);0.497548;0.032099;0.531532;195068;97768 diff --git a/tezt_cgmemtime_all.db b/tezt_cgmemtime_all.db new file mode 100644 index 0000000000000000000000000000000000000000..07852d81646c7d99ffbd8a3eb47458d1ca24301b GIT binary patch literal 1417216 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

c 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 V5ZfzA_wZEc2a)WP8xRDXh8 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

>!A#8ysai+s2 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

    O})=~+c73&BHoUmBHm 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 literal 0 HcmV?d00001 -- GitLab